Commit 5fcd0a80 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'ceec6e79'

* commit 'ceec6e79':
  avi: directly resync on DV in AVI read failure
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents dd0429e1 ceec6e79
......@@ -1162,6 +1162,8 @@ static int avi_read_packet(AVFormatContext *s, AVPacket *pkt)
int size = avpriv_dv_get_packet(avi->dv_demux, pkt);
if (size >= 0)
return size;
else
goto resync;
}
if (avi->non_interleaved) {
......
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