avformat/avidec: fix handling dv in avi

Fixes Ticket4086

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-11-21 03:08:20 +01:00
parent ab922f9ef1
commit f0ae0354d3

View File

@ -1150,7 +1150,7 @@ start_sync:
goto start_sync; goto start_sync;
} }
n = avi->dv_demux ? 0 : get_stream_idx(d); n = get_stream_idx(d);
if (!((i - avi->last_pkt_pos) & 1) && if (!((i - avi->last_pkt_pos) & 1) &&
get_stream_idx(d + 1) < s->nb_streams) get_stream_idx(d + 1) < s->nb_streams)
@ -1162,6 +1162,9 @@ start_sync:
goto start_sync; goto start_sync;
} }
if (avi->dv_demux && n != 0)
continue;
// parse ##dc/##wb // parse ##dc/##wb
if (n < s->nb_streams) { if (n < s->nb_streams) {
AVStream *st; AVStream *st;