/* * 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 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. ** ¢Ú-2: If there is PDSD, please assign the ch number as per the contents of PDSD(EACEM 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_ */