1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

lavc/vp56: Re-indent functions affected by threading refactor

All whitespace plus a curly brace.

Signed-off-by: Ben Jackson <ben@ben.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Ben Jackson 2012-09-15 10:32:44 -07:00 committed by Michael Niedermayer
parent 39a3894ad5
commit 374c17c8fc

View File

@ -539,11 +539,12 @@ int ff_vp56_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
return -1;
}
if (res == 2)
if (res == 2) {
if (vp56_size_changed(s)) {
avctx->release_buffer(avctx, p);
return -1;
}
}
if (s->has_alpha) {
buf += alpha_offset;