mirror of https://git.ffmpeg.org/ffmpeg.git
fix compilation with assert
Originally committed as revision 9619 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
d3ea5692b0
commit
5b83843f43
|
@ -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{
|
||||
|
|
Loading…
Reference in New Issue