[FFmpeg-devel] [PATCH 13/15] lavfi/vf_w3fdif: reindent after last commit.

2015-10-02 Thread Nicolas George
Signed-off-by: Nicolas George 
---
 libavfilter/vf_w3fdif.c | 30 ++
 1 file changed, 14 insertions(+), 16 deletions(-)

diff --git a/libavfilter/vf_w3fdif.c b/libavfilter/vf_w3fdif.c
index e394d55..5b105f1 100644
--- a/libavfilter/vf_w3fdif.c
+++ b/libavfilter/vf_w3fdif.c
@@ -353,25 +353,23 @@ static int request_frame(AVFilterLink *outlink)
 {
 AVFilterContext *ctx = outlink->src;
 W3FDIFContext *s = ctx->priv;
+int ret;
 
-/* TODO reindent */
-int ret;
-
-if (s->eof)
-return AVERROR_EOF;
+if (s->eof)
+return AVERROR_EOF;
 
-ret = ff_request_frame(ctx->inputs[0]);
+ret = ff_request_frame(ctx->inputs[0]);
 
-if (ret == AVERROR_EOF && s->cur) {
-AVFrame *next = av_frame_clone(s->next);
-if (!next)
-return AVERROR(ENOMEM);
-next->pts = s->next->pts * 2 - s->cur->pts;
-filter_frame(ctx->inputs[0], next);
-s->eof = 1;
-} else if (ret < 0) {
-return ret;
-}
+if (ret == AVERROR_EOF && s->cur) {
+AVFrame *next = av_frame_clone(s->next);
+if (!next)
+return AVERROR(ENOMEM);
+next->pts = s->next->pts * 2 - s->cur->pts;
+filter_frame(ctx->inputs[0], next);
+s->eof = 1;
+} else if (ret < 0) {
+return ret;
+}
 
 return 0;
 }
-- 
2.5.3

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


Re: [FFmpeg-devel] [PATCH 13/15] lavfi/vf_w3fdif: reindent after last commit.

2015-10-02 Thread Paul B Mahol
On 10/2/15, Nicolas George  wrote:
> Signed-off-by: Nicolas George 
> ---
>  libavfilter/vf_w3fdif.c | 30 ++
>  1 file changed, 14 insertions(+), 16 deletions(-)
>

lgtm
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel