diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2007-07-13 00:49:40 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2007-07-13 00:49:40 +0000 |
commit | 5b83843f43dd9c1f89481287ef67598600891941 (patch) | |
tree | da2714be39c04c8962ef4f154e2818caf7d3f980 /libavformat | |
parent | d3ea5692b05ec69ae87d0ff496db73824e6c9511 (diff) | |
download | ffmpeg-5b83843f43dd9c1f89481287ef67598600891941.tar.gz |
fix compilation with assert
Originally committed as revision 9619 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mpegts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 406e5bfb52..b4d46aa11e 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -538,7 +538,7 @@ static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len case STREAM_TYPE_AUDIO_DTS: case STREAM_TYPE_SUBTITLE_DVB: if(ts->pids[pid]){ - assert(ts->pids[pid].type == MPEGTS_PES); + assert(ts->pids[pid]->type == MPEGTS_PES); pes= ts->pids[pid]->u.pes_filter.opaque; st= pes->st; }else{ |