123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /*
- * dvb_dr.h -- header for descriptor tag for 13818 and ETSI EN 300 468
- *
- * Copyright (C) 2006 SunMedia Co, chengdu
- * Author anlzhao@sunmedia.com.cn
- *
- * The source code in this file is written by anlzhao referring to
- * 13818 and ETSI EN 300 468 and owned by SunMedia Coporation.
- *
- * BUGS:
- *
- */
- #ifndef _DR_H_
- #define _DR_H_
- #include <types.h>
- typedef enum
- {
- DVB_SPECIAL_SPEC_NONE = 0,
- DVB_SPECIAL_SPEC_DTG,
- DVB_SPECIAL_SPEC_ZBOOK,
- DVB_SPECIAL_SPEC_NORDIG,
- DVB_SPECIAL_SPEC_EBOOK,
- DVB_SPECIAL_SPEC_BASEON_PDSD, // junluo 20110721 add for DVB-C, detail as follow:
- /*
- ** In the DVB-C, don't depend on the country setting.
- ** ¢ÙIf there is no Logical channel descriptor(descriptor tag: 0x83),
- ** assign the ch number from "1".
- ** ¢ÚIf there is Logical channel descriptor(descriptor tag: 0x83),
- ** ¢Ú-1: If there is no PDSD(Private Data Specifier Descriptor), please assign the ch number as the PDSD=EACEM<E-Book>.
- ** ¢Ú-2: If there is PDSD, please assign the ch number as per the contents of PDSD(EACEM<E-Book> or NorDig).
- */
- DVB_SPECIAL_SPEC_THAI,
- #ifdef DVB_S
- DVB_SPECAIL_SPEC_DVBS_TEST,//yuaki 110104 added for mantis 0120215
- #endif
- #ifdef CONFIG_SUPPORT_FAST_SCANNING
- DVB_SPECIAL_SPEC_M7_FASTSCAN,
- #endif
- DVB_SPECIAL_SPEC_DEMO_DEFAULT,
- } dvbsi_special_spec;
- #endif /* #ifndef _DR_H_ */
|