Commit 47c8d1e1 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'b2290bf1'

* commit 'b2290bf1':
  i263: skip dummy frames
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 08c5859f b2290bf1
......@@ -26,6 +26,10 @@ int ff_intel_h263_decode_picture_header(MpegEncContext *s)
{
int format;
if (get_bits_left(&s->gb) == 64) { /* special dummy frames */
return FRAME_SKIPPED;
}
/* picture header */
if (get_bits_long(&s->gb, 22) != 0x20) {
av_log(s->avctx, AV_LOG_ERROR, "Bad picture start code\n");
......
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