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

lavf/avidec: Add blurb regarding the skipping of xxpc entries in the index

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent f4b30bea
......@@ -1581,6 +1581,8 @@ static int avi_read_idx1(AVFormatContext *s, int size)
st = s->streams[index];
ast = st->priv_data;
/* Skip 'xxpc' palette change entries in the index until a logic
* to process these is properly implemented. */
if ((tag >> 16 & 0xff) == 'p' && (tag >> 24 & 0xff) == 'c')
continue;
......
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