diff options
author | Matthieu Bouron <matthieu.bouron@gmail.com> | 2017-01-03 17:46:24 +0100 |
---|---|---|
committer | Matthieu Bouron <mbouron@gopro.com> | 2017-01-12 10:22:52 +0100 |
commit | b1ed7957b835eed84fa151487d9014814daefa3d (patch) | |
tree | bed7d31e95f03f96caa78b5a7bb0e0bec48ec823 /libavfilter/framepool.c | |
parent | e2d336cf6499923691baf53b10d193aefa77fa89 (diff) | |
download | ffmpeg-b1ed7957b835eed84fa151487d9014814daefa3d.tar.gz |
lavfi/framepool: cosmetic style fixes
Diffstat (limited to 'libavfilter/framepool.c')
-rw-r--r-- | libavfilter/framepool.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libavfilter/framepool.c b/libavfilter/framepool.c index 74235d4886..e1f1e2cc41 100644 --- a/libavfilter/framepool.c +++ b/libavfilter/framepool.c @@ -220,9 +220,8 @@ AVFrame *ff_frame_pool_get(FFFramePool *pool) break; frame->buf[i] = av_buffer_pool_get(pool->pools[i]); - if (!frame->buf[i]) { + if (!frame->buf[i]) goto fail; - } frame->data[i] = frame->buf[i]->data; } @@ -233,9 +232,8 @@ AVFrame *ff_frame_pool_get(FFFramePool *pool) pool->format == AV_PIX_FMT_PAL8 ? AV_PIX_FMT_BGR8 : pool->format; av_assert0(frame->data[1] != NULL); - if (avpriv_set_systematic_pal2((uint32_t *)frame->data[1], format) < 0) { + if (avpriv_set_systematic_pal2((uint32_t *)frame->data[1], format) < 0) goto fail; - } } frame->extended_data = frame->data; |