diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-11-22 22:03:24 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-11-22 22:03:24 +0000 |
commit | 2fb21bf4ff0c47851bcc04adabec3b1801576c21 (patch) | |
tree | ed9ad0551a398ce15989b5ed29e76e71569f3aa5 /libavfilter/allfilters.c | |
parent | 819e2ab0d8d65cee0e95c89c0a4eb77aa8237c75 (diff) | |
download | ffmpeg-2fb21bf4ff0c47851bcc04adabec3b1801576c21.tar.gz |
Give more explicit/less confusing names to the filters dealing with
aspect ratio.
Originally committed as revision 25800 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index 0cac9ba266..9e3ba14359 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -40,7 +40,6 @@ void avfilter_register_all(void) REGISTER_FILTER (ANULLSINK, anullsink, asink); - REGISTER_FILTER (ASPECT, aspect, vf); REGISTER_FILTER (BLACKFRAME, blackframe, vf); REGISTER_FILTER (CROP, crop, vf); REGISTER_FILTER (CROPDETECT, cropdetect, vf); @@ -55,9 +54,10 @@ void avfilter_register_all(void) REGISTER_FILTER (OVERLAY, overlay, vf); REGISTER_FILTER (PAD, pad, vf); REGISTER_FILTER (PIXDESCTEST, pixdesctest, vf); - REGISTER_FILTER (PIXELASPECT, pixelaspect, vf); REGISTER_FILTER (SCALE, scale, vf); + REGISTER_FILTER (SETDAR, setdar, vf); REGISTER_FILTER (SETPTS, setpts, vf); + REGISTER_FILTER (SETSAR, setsar, vf); REGISTER_FILTER (SETTB, settb, vf); REGISTER_FILTER (SLICIFY, slicify, vf); REGISTER_FILTER (TRANSPOSE, transpose, vf); |