Commit b38259d9 authored by glantau's avatar glantau

improved mpeg1/2 decoding speed


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@517 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e0321b98
......@@ -855,6 +855,8 @@ static int mpeg_decode_mb(MpegEncContext *s,
if (cbp & (1 << (5 - i))) {
if (mpeg2_decode_block_intra(s, block[i], i) < 0)
return -1;
} else {
s->block_last_index[i] = -1;
}
}
} else {
......@@ -862,6 +864,8 @@ static int mpeg_decode_mb(MpegEncContext *s,
if (cbp & (1 << (5 - i))) {
if (mpeg2_decode_block_non_intra(s, block[i], i) < 0)
return -1;
} else {
s->block_last_index[i] = -1;
}
}
}
......@@ -870,6 +874,8 @@ static int mpeg_decode_mb(MpegEncContext *s,
if (cbp & (1 << (5 - i))) {
if (mpeg1_decode_block(s, block[i], i) < 0)
return -1;
} else {
s->block_last_index[i] = -1;
}
}
}
......
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