- fix action return codes across c++ and python
[enigma2.git] / lib / dvb_si / stream_type.h
1 /*
2  * $Id: stream_type.h,v 1.1 2003-10-17 15:36:38 tmbinc Exp $
3  *
4  * (C) 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_stream_type_h__
23 #define __dvb_id_stream_type_h__
24
25 enum StreamType {
26         STT_RESERVED            = 0x00,
27         STT_MPEG1_VIDEO         = 0x01,
28         STT_MPEG2_VIDEO         = 0x02,
29         STT_MPEG1_AUDIO         = 0x03,
30         STT_MPEG2_AUDIO         = 0x04,
31         STT_MPEG2_SECTIONS      = 0x05,
32         STT_MPEG2_PES           = 0x06,
33         STT_MHEG                = 0x07,
34         STT_DSM_CC              = 0x08,
35         STT_TREC_H_222_1        = 0x09,
36         STT_13818_6_A           = 0x0A,
37         STT_13818_6_B           = 0x0B,
38         STT_13818_6_C           = 0x0C,
39         STT_13818_6_D           = 0x0D,
40         STT_AUXILIARY           = 0x0E,
41         STT_ADTS_AUDIO          = 0x0F,
42         STT_MPEG4_VIDEO         = 0x10,
43         STT_MPEG4_AUDIO         = 0x11,
44         STT_MPEG4_PES           = 0x12,
45         STT_MPEG4_SECTIONS      = 0x13,
46         STT_SYNC_DOWNLOAD_PROT  = 0x14
47         /* 0x15 - 0x7F: ITU-T Rec. H.222.0 | ISO/IEC 13818-1 Reserved */
48         /* 0x80 - 0xFF: User Private */
49 };
50
51 #endif /* __dvb_id_stream_type_h__ */