Commit f498a818 authored by Jean-Paul Saman's avatar Jean-Paul Saman

croppadd: use correct shortname 'croppadd'

The shortname was 'cropadd' while the module was compiled as 'croppadd' (notice the extra 'p').
The module was correctly build, but was not loadable
parent 81abb063
...@@ -75,7 +75,7 @@ static picture_t *Filter( filter_t *, picture_t * ); ...@@ -75,7 +75,7 @@ static picture_t *Filter( filter_t *, picture_t * );
* Module descriptor * Module descriptor
*****************************************************************************/ *****************************************************************************/
vlc_module_begin () vlc_module_begin ()
set_shortname( N_("Cropadd") ) set_shortname( N_("Croppadd") )
set_description( N_("Video cropping filter") ) set_description( N_("Video cropping filter") )
set_capability( "video filter2", 0 ) set_capability( "video filter2", 0 )
set_callbacks( OpenFilter, CloseFilter ) set_callbacks( OpenFilter, CloseFilter )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment