diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-12-23 17:24:19 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-12-23 17:24:19 +0000 |
commit | cf69ad35c5a7aab9cf056f957bfea484e849527c (patch) | |
tree | 711f479e70204e90a2fbdd4c1446e24d60627f88 /libavfilter/allfilters.c | |
parent | 8399d235177f323b2d349a47d174f446ae209652 (diff) | |
download | ffmpeg-cf69ad35c5a7aab9cf056f957bfea484e849527c.tar.gz |
Redesign the libopencv wrapper to make it more generic. Accept both
FILTERNAME=ARGS and FILTERNAME:ARGS syntax.
The same filter class will be used for managing all the libopencv
filtering functions.
Originally committed as revision 26079 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index 7f7e46d448..886a50a677 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -52,7 +52,7 @@ void avfilter_register_all(void) REGISTER_FILTER (HQDN3D, hqdn3d, vf); REGISTER_FILTER (NOFORMAT, noformat, vf); REGISTER_FILTER (NULL, null, vf); - REGISTER_FILTER (OCV_SMOOTH, ocv_smooth, vf); + REGISTER_FILTER (OCV, ocv, vf); REGISTER_FILTER (OVERLAY, overlay, vf); REGISTER_FILTER (PAD, pad, vf); REGISTER_FILTER (PIXDESCTEST, pixdesctest, vf); |