mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
indentation
Originally committed as revision 9902 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
6b259e439c
commit
3c605485bb
@ -336,12 +336,12 @@ static int dnxhd_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
|
||||
avcodec_set_dimensions(avctx, ctx->width, ctx->height);
|
||||
|
||||
if (first_field) {
|
||||
if (ctx->picture.data[0])
|
||||
avctx->release_buffer(avctx, &ctx->picture);
|
||||
if (avctx->get_buffer(avctx, &ctx->picture) < 0) {
|
||||
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
|
||||
return -1;
|
||||
}
|
||||
if (ctx->picture.data[0])
|
||||
avctx->release_buffer(avctx, &ctx->picture);
|
||||
if (avctx->get_buffer(avctx, &ctx->picture) < 0) {
|
||||
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
dnxhd_decode_macroblocks(ctx, buf + 0x280, buf_size - 0x280);
|
||||
|
Loading…
Reference in New Issue
Block a user