diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-31 03:55:23 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-31 03:55:23 +0000 |
commit | ffdbada6c1ce7402a36186abbee78290412e6bfd (patch) | |
tree | 2f306e5db6fcab959ad8ca3215d463566691f664 /libavformat/mpegts.c | |
parent | e6eb74d84c5e9d2e374a8ff470850b8ed1d2d793 (diff) | |
download | ffmpeg-ffdbada6c1ce7402a36186abbee78290412e6bfd.tar.gz |
add streams even if they are not present in PMT, fix #1092 and #835
Originally committed as revision 19011 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpegts.c')
-rw-r--r-- | libavformat/mpegts.c | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 90a41e4b23..0698721d26 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -540,7 +540,7 @@ static void mpegts_find_stream_type(AVStream *st, } } -static AVStream *new_pes_av_stream(PESContext *pes, uint32_t prog_reg_desc) +static AVStream *new_pes_av_stream(PESContext *pes, uint32_t prog_reg_desc, uint32_t code) { AVStream *st = av_new_stream(pes->stream, pes->pid); @@ -564,6 +564,17 @@ static AVStream *new_pes_av_stream(PESContext *pes, uint32_t prog_reg_desc) if (st->codec->codec_id == CODEC_ID_PROBE) mpegts_find_stream_type(st, pes->stream_type, MISC_types); + /* stream was not present in PMT, guess based on PES start code */ + if (st->codec->codec_id == CODEC_ID_PROBE) { + if (code >= 0x1c0 && code <= 0x1df) { + st->codec->codec_type = CODEC_TYPE_AUDIO; + st->codec->codec_id = CODEC_ID_MP2; + } else if (code == 0x1bd) { + st->codec->codec_type = CODEC_TYPE_AUDIO; + st->codec->codec_id = CODEC_ID_AC3; + } + } + return st; } @@ -642,7 +653,7 @@ static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len if (ts->pids[pid]) mpegts_close_filter(ts, ts->pids[pid]); //wrongly added sdt filter probably pes = add_pes_stream(ts, pid, pcr_pid, stream_type); if (pes) - st = new_pes_av_stream(pes, prog_reg_desc); + st = new_pes_av_stream(pes, prog_reg_desc, 0); } if (!st) @@ -910,7 +921,14 @@ static int mpegts_push_data(MpegTSFilter *filter, pes->header[2] == 0x01) { /* it must be an mpeg2 PES stream */ code = pes->header[3] | 0x100; - if (!pes->st || pes->st->discard == AVDISCARD_ALL || + + /* stream not present in PMT */ + if (!pes->st) + pes->st = new_pes_av_stream(pes, 0, code); + if (!pes->st) + return AVERROR(ENOMEM); + + if (pes->st->discard == AVDISCARD_ALL || !((code >= 0x1c0 && code <= 0x1df) || (code >= 0x1e0 && code <= 0x1ef) || (code == 0x1bd) || (code == 0x1fd))) |