This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
vp5: don't try decoding a P frame before any I frame was parsed
fix issue802 Originally committed as revision 16813 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Aurelien Jacobs
17 years ago
parent
7a42067176
commit
73c87551e5
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
libavcodec/vp5.c
+ 2
- 1
libavcodec/vp5.c
View File
@@ -64,7 +64,8 @@ static int vp5_parse_header(VP56Context *s, const uint8_t *buf, int buf_size,
avcodec_set_dimensions(s->avctx, 16*cols, 16*rows);
return 2;
}
}
} else if (!s->macroblocks)
return 0;
return 1;
}
Write
Preview
Loading…
Cancel
Save