Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Bouron <matthieu.bouron@gmail.com>2017-01-03 19:46:24 +0300
committerMatthieu Bouron <mbouron@gopro.com>2017-01-12 12:22:52 +0300
commitb1ed7957b835eed84fa151487d9014814daefa3d (patch)
treebed7d31e95f03f96caa78b5a7bb0e0bec48ec823 /libavfilter/framepool.c
parente2d336cf6499923691baf53b10d193aefa77fa89 (diff)
lavfi/framepool: cosmetic style fixes
Diffstat (limited to 'libavfilter/framepool.c')
-rw-r--r--libavfilter/framepool.c6
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;