diff options
author | Clément Bœsch <clement@stupeflix.com> | 2015-01-15 11:39:41 +0100 |
---|---|---|
committer | Clément Bœsch <clement@stupeflix.com> | 2015-01-15 11:39:41 +0100 |
commit | 3b3229aef322f2348c8e9e389a22d7b7fd7ef7f4 (patch) | |
tree | 56eeb63063a7977b20feaa505dfba7acf5d801b6 /libavfilter/vf_edgedetect.c | |
parent | 3779973a9b8e473718cbd8490f277e589b27a9f6 (diff) | |
download | ffmpeg-3b3229aef322f2348c8e9e389a22d7b7fd7ef7f4.tar.gz |
avfilter/edgedetect: fix indent
Diffstat (limited to 'libavfilter/vf_edgedetect.c')
-rw-r--r-- | libavfilter/vf_edgedetect.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavfilter/vf_edgedetect.c b/libavfilter/vf_edgedetect.c index 7316412edd..a4e8d18e5a 100644 --- a/libavfilter/vf_edgedetect.c +++ b/libavfilter/vf_edgedetect.c @@ -368,16 +368,16 @@ static const AVFilterPad edgedetect_inputs[] = { .type = AVMEDIA_TYPE_VIDEO, .config_props = config_props, .filter_frame = filter_frame, - }, - { NULL } + }, + { NULL } }; static const AVFilterPad edgedetect_outputs[] = { - { - .name = "default", - .type = AVMEDIA_TYPE_VIDEO, - }, - { NULL } + { + .name = "default", + .type = AVMEDIA_TYPE_VIDEO, + }, + { NULL } }; AVFilter ff_vf_edgedetect = { |