# HG changeset patch # User aurel # Date 1281396068 0 # Node ID 61e469c032b715bcbfb9c953a35b1b60832ccd9b # Parent b7ee8424b7e6834c84abbd158d3119ce87ea76c7 get ride of MAX_STREAMS limit in mpegts diff -r b7ee8424b7e6 -r 61e469c032b7 mpegts.c --- a/mpegts.c Mon Aug 09 23:00:13 2010 +0000 +++ b/mpegts.c Mon Aug 09 23:21:08 2010 +0000 @@ -682,11 +682,15 @@ code = pes->header[3] | 0x100; dprintf(pes->stream, "pid=%x pes_code=%#x\n", pes->pid, code); - if ((!pes->st && pes->stream->nb_streams == MAX_STREAMS) || - (pes->st && pes->st->discard == AVDISCARD_ALL) || + if ((pes->st && pes->st->discard == AVDISCARD_ALL) || code == 0x1be) /* padding_stream */ goto skip; +#if LIBAVFORMAT_VERSION_MAJOR < 53 + if (!pes->st && pes->stream->nb_streams == MAX_STREAMS) + goto skip; +#endif + /* stream not present in PMT */ if (!pes->st) { pes->st = av_new_stream(ts->stream, pes->pid);