diff options
author | Bobby Bingham <uhmmmm@gmail.com> | 2010-03-17 04:37:43 +0000 |
---|---|---|
committer | Bobby Bingham <uhmmmm@gmail.com> | 2010-03-17 04:37:43 +0000 |
commit | e88c9dac07f71c981cba5fa6bfa2d0c977aa7c5a (patch) | |
tree | 54694a2d7383dc6d2d61154cb369bed0f872af13 | |
parent | c0bc2fed8ebe6de232639de2f2a221e5ea067183 (diff) | |
download | ffmpeg-e88c9dac07f71c981cba5fa6bfa2d0c977aa7c5a.tar.gz |
Cosmetics: vertical align
Originally committed as revision 22578 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavfilter/allfilters.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index 899f38d591..fccd1f5154 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -34,17 +34,17 @@ void avfilter_register_all(void) return; initialized = 1; - REGISTER_FILTER (ASPECT, aspect, vf); - REGISTER_FILTER (CROP, crop, vf); - REGISTER_FILTER (FORMAT, format, vf); - REGISTER_FILTER (NOFORMAT, noformat, vf); - REGISTER_FILTER (NULL, null, vf); + REGISTER_FILTER (ASPECT, aspect, vf); + REGISTER_FILTER (CROP, crop, vf); + REGISTER_FILTER (FORMAT, format, vf); + REGISTER_FILTER (NOFORMAT, noformat, vf); + REGISTER_FILTER (NULL, null, vf); REGISTER_FILTER (PIXELASPECT, pixelaspect, vf); - REGISTER_FILTER (SCALE, scale, vf); - REGISTER_FILTER (SLICIFY, slicify, vf); - REGISTER_FILTER (VFLIP, vflip, vf); + REGISTER_FILTER (SCALE, scale, vf); + REGISTER_FILTER (SLICIFY, slicify, vf); + REGISTER_FILTER (VFLIP, vflip, vf); - REGISTER_FILTER (NULLSRC, nullsrc, vsrc); + REGISTER_FILTER (NULLSRC, nullsrc, vsrc); - REGISTER_FILTER (NULLSINK, nullsink, vsink); + REGISTER_FILTER (NULLSINK, nullsink, vsink); } |