Mercurial > libavformat.hg
diff mpegts.c @ 496:112057e05179 libavformat
libdts support by (Benjamin Zores <ben at geexbox dot org>)
| author | michael |
|---|---|
| date | Wed, 14 Jul 2004 01:32:14 +0000 |
| parents | 2846bb67dd8f |
| children | 0a997108f384 |
line wrap: on
line diff
--- a/mpegts.c Wed Jul 14 00:10:06 2004 +0000 +++ b/mpegts.c Wed Jul 14 01:32:14 2004 +0000 @@ -431,6 +431,7 @@ case STREAM_TYPE_VIDEO_H264: case STREAM_TYPE_AUDIO_AAC: case STREAM_TYPE_AUDIO_AC3: + case STREAM_TYPE_AUDIO_DTS: add_pes_stream(ts, pid, stream_type); break; default: @@ -753,6 +754,10 @@ codec_type = CODEC_TYPE_AUDIO; codec_id = CODEC_ID_AC3; break; + case STREAM_TYPE_AUDIO_DTS: + codec_type = CODEC_TYPE_AUDIO; + codec_id = CODEC_ID_DTS; + break; default: if (code >= 0x1c0 && code <= 0x1df) { codec_type = CODEC_TYPE_AUDIO;
