diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-03 00:31:19 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-03 00:31:19 +0200 |
commit | e7692a9bac234112b3a9bf00d0cfce88a527588f (patch) | |
tree | 346b56c7b95d4386a5dd739de119f9241f5a7e38 /libavfilter | |
parent | e366aec0305299f8f3e2057cc5a856c737944bc5 (diff) | |
download | ffmpeg-e7692a9bac234112b3a9bf00d0cfce88a527588f.tar.gz |
lavfi/edgedetect: reindent after previous commit.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_edgedetect.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavfilter/vf_edgedetect.c b/libavfilter/vf_edgedetect.c index 16c6414211..fb137efa70 100644 --- a/libavfilter/vf_edgedetect.c +++ b/libavfilter/vf_edgedetect.c @@ -263,12 +263,12 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) direct = 1; out = in; } else { - out = ff_get_video_buffer(outlink, outlink->w, outlink->h); - if (!out) { - av_frame_free(&in); - return AVERROR(ENOMEM); - } - av_frame_copy_props(out, in); + out = ff_get_video_buffer(outlink, outlink->w, outlink->h); + if (!out) { + av_frame_free(&in); + return AVERROR(ENOMEM); + } + av_frame_copy_props(out, in); } /* gaussian filter to reduce noise */ |