diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-04-04 16:19:56 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-04-04 16:22:01 +0200 |
commit | 2941a937f23fcad39c4829157213c2a21d5b4ba5 (patch) | |
tree | f5989bb0e7a04cb5d4c29691cdb7e0ad14cdbb2c | |
parent | 5d9cfd872615d906eab2ebc3b89ccd7ff41374e4 (diff) | |
download | ffmpeg-2941a937f23fcad39c4829157213c2a21d5b4ba5.tar.gz |
vf_idet: fix indention
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/vf_idet.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libavfilter/vf_idet.c b/libavfilter/vf_idet.c index 6cdaab06a0..d0682b4b5c 100644 --- a/libavfilter/vf_idet.c +++ b/libavfilter/vf_idet.c @@ -255,16 +255,16 @@ AVFilter avfilter_vf_idet = { .query_formats = query_formats, .inputs = (const AVFilterPad[]) {{ .name = "default", - .type = AVMEDIA_TYPE_VIDEO, - .start_frame = start_frame, - .draw_slice = null_draw_slice, - .end_frame = end_frame, - .rej_perms = AV_PERM_REUSE2, }, - { .name = NULL}}, + .type = AVMEDIA_TYPE_VIDEO, + .start_frame = start_frame, + .draw_slice = null_draw_slice, + .end_frame = end_frame, + .rej_perms = AV_PERM_REUSE2, }, + { .name = NULL}}, .outputs = (const AVFilterPad[]) {{ .name = "default", - .type = AVMEDIA_TYPE_VIDEO, - .poll_frame = poll_frame, - .request_frame = request_frame, }, - { .name = NULL}}, + .type = AVMEDIA_TYPE_VIDEO, + .poll_frame = poll_frame, + .request_frame = request_frame, }, + { .name = NULL}}, }; |