Mercurial > libavformat.hg
changeset 4986:b9c3d05b3267 libavformat
add streams even if they are not present in PMT, fix #1092 and #835
author | bcoudurier |
---|---|
date | Sun, 31 May 2009 03:55:23 +0000 |
parents | 59bf27420396 |
children | 62bf51efe6ec |
files | mpegts.c |
diffstat | 1 files changed, 21 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/mpegts.c Sun May 31 03:46:24 2009 +0000 +++ b/mpegts.c Sun May 31 03:55:23 2009 +0000 @@ -540,7 +540,7 @@ } } -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 @@ 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 @@ 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 @@ 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)))