Commit caeed047 authored by Mats Peterson's avatar Mats Peterson Committed by Michael Niedermayer

lavf/avidec: Skip xxpc entries in index; fixes trac #5311

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 285fda09
......@@ -1581,6 +1581,9 @@ static int avi_read_idx1(AVFormatContext *s, int size)
st = s->streams[index];
ast = st->priv_data;
if ((tag >> 16 & 0xff) == 'p' && (tag >> 24 & 0xff) == 'c')
continue;
if (first_packet && first_packet_pos) {
if (avi->movi_list + 4 != pos || pos + 500 > first_packet_pos)
data_offset = first_packet_pos - pos;
......
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