diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-07-17 00:28:12 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-07-17 00:28:12 +0000 |
commit | c6ec28b18cd1eb7d39e6163137367f2d1c62aa7c (patch) | |
tree | a0055aeb706ad0230cf7bc7cc8b48d582057f9d8 /libavformat/mpegts.h | |
parent | 6e5c1877b2a93dd63610a1504e95bddc891424f3 (diff) | |
download | ffmpeg-c6ec28b18cd1eb7d39e6163137367f2d1c62aa7c.tar.gz |
DVB subtitle decoder by (Ian Caulfield: imc25, cam ac uk)
Originally committed as revision 4448 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpegts.h')
-rw-r--r-- | libavformat/mpegts.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/mpegts.h b/libavformat/mpegts.h index 5dfa7b20cc..848ecdb27a 100644 --- a/libavformat/mpegts.h +++ b/libavformat/mpegts.h @@ -31,6 +31,9 @@ #define PMT_TID 0x02 #define SDT_TID 0x42 +/* descriptor ids */ +#define DVB_SUBT_DESCID 0x59 + #define STREAM_TYPE_VIDEO_MPEG1 0x01 #define STREAM_TYPE_VIDEO_MPEG2 0x02 #define STREAM_TYPE_AUDIO_MPEG1 0x03 @@ -44,6 +47,8 @@ #define STREAM_TYPE_AUDIO_AC3 0x81 #define STREAM_TYPE_AUDIO_DTS 0x8a +#define STREAM_TYPE_SUBTITLE_DVB 0x100 + unsigned int mpegts_crc32(const uint8_t *data, int len); extern AVOutputFormat mpegts_mux; |