Commit 16a8dbd4 authored by alex's avatar alex

fix compilation with assert

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9619 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f61a1822
......@@ -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{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment