[FFmpeg-cvslog] lavfi/edgedetect: reindent after previous commit.
Clément Bœsch
git at videolan.org
Wed Apr 3 00:34:43 CEST 2013
ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Wed Apr 3 00:31:19 2013 +0200| [e7692a9bac234112b3a9bf00d0cfce88a527588f] | committer: Clément Bœsch
lavfi/edgedetect: reindent after previous commit.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e7692a9bac234112b3a9bf00d0cfce88a527588f
---
libavfilter/vf_edgedetect.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/libavfilter/vf_edgedetect.c b/libavfilter/vf_edgedetect.c
index 16c6414..fb137ef 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 */
More information about the ffmpeg-cvslog
mailing list