non blocking diseqc and sec stuff
[enigma2.git] / lib / dvb_si / service_type.h
1 /*
2  * $Id: service_type.h,v 1.1 2003-10-17 15:36:38 tmbinc Exp $
3  *
4  * (C) 2002-2003 Andreas Oberritter <obi@saftware.de>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  *
20  */
21
22 #ifndef __dvb_id_service_type_h__
23 #define __dvb_id_service_type_h__
24
25 enum ServiceType {
26         /* 0x00 - 0x10: ETSI EN 300 468 V1.5.1 (2003-01) */
27         ST_RESERVED                     = 0x00,
28         ST_DIGITAL_TELEVISION_SERVICE   = 0x01,
29         ST_DIGITAL_RADIO_SOUND_SERVICE  = 0x02,
30         ST_TELETEXT_SERVICE             = 0x03,
31         ST_NVOD_REFERENCE_SERVICE       = 0x04,
32         ST_NVOD_TIME_SHIFTED_SERVICE    = 0x05,
33         ST_MOSAIC_SERVICE               = 0x06,
34         ST_PAL_CODED_SIGNAL             = 0x07,
35         ST_SECAM_CODED_SIGNAL           = 0x08,
36         ST_D_D2_MAC                     = 0x09,
37         ST_FM_RADIO                     = 0x0A,
38         ST_NTSC_CODED_SIGNAL            = 0x0B,
39         ST_DATA_BROADCAST_SERVICE       = 0x0C,
40         ST_COMMON_INTERFACE_RESERVED    = 0x0D,
41         ST_RCS_MAP                      = 0x0E,
42         ST_RCS_FLS                      = 0x0F,
43         ST_DVB_MHP_SERVICE              = 0x10,
44         /* 0x11 - 0x7F: reserved for future use */
45         ST_MULTIFEED                    = 0x69
46         /* 0x80 - 0xFE: user defined */
47         /* 0xFF: reserved for future use */
48 };
49
50 #endif /* __dvb_id_service_type_h__ */