Browse Source

get rid of MAX_STREAMS limit in mpegts

Originally committed as revision 24753 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Aurelien Jacobs 15 years ago
parent
commit
6b2b337657
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      libavformat/mpegts.c

+ 6
- 2
libavformat/mpegts.c View File

@@ -682,11 +682,15 @@ static int mpegts_push_data(MpegTSFilter *filter,
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);


Loading…
Cancel
Save