[FFmpeg-devel] [PATCH 4/5] lavfi/framepool: cosmetic style fixes

Matthieu Bouron matthieu.bouron at gmail.com
Thu Jan 5 13:11:35 EET 2017


---
 libavfilter/framepool.c | 6 ++----
 1 file 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;
-- 
2.11.0



More information about the ffmpeg-devel mailing list