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:
authorClément Bœsch <ubitux@gmail.com>2013-04-03 02:31:19 +0400
committerClément Bœsch <ubitux@gmail.com>2013-04-03 02:31:19 +0400
commite7692a9bac234112b3a9bf00d0cfce88a527588f (patch)
tree346b56c7b95d4386a5dd739de119f9241f5a7e38 /libavfilter/vf_edgedetect.c
parente366aec0305299f8f3e2057cc5a856c737944bc5 (diff)
lavfi/edgedetect: reindent after previous commit.
Diffstat (limited to 'libavfilter/vf_edgedetect.c')
-rw-r--r--libavfilter/vf_edgedetect.c12
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 */