Commit 2a19df4c authored by Francois Cartegnie's avatar Francois Cartegnie

video_filter: fps: add missing variable text

parent 8d860e29
...@@ -38,6 +38,8 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_picture); ...@@ -38,6 +38,8 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_picture);
#define CFG_PREFIX "fps-" #define CFG_PREFIX "fps-"
#define FPS_TEXT N_( "Frame rate" )
vlc_module_begin () vlc_module_begin ()
set_description( N_("FPS conversion video filter") ) set_description( N_("FPS conversion video filter") )
set_shortname( N_("FPS Converter" )) set_shortname( N_("FPS Converter" ))
...@@ -46,8 +48,7 @@ vlc_module_begin () ...@@ -46,8 +48,7 @@ vlc_module_begin ()
set_subcategory( SUBCAT_VIDEO_VFILTER ) set_subcategory( SUBCAT_VIDEO_VFILTER )
add_shortcut( "fps" ) add_shortcut( "fps" )
add_string( CFG_PREFIX "fps", NULL, NULL, add_string( CFG_PREFIX "fps", NULL, FPS_TEXT, FPS_TEXT, false )
NULL, false )
set_callbacks( Open, Close ) set_callbacks( Open, Close )
vlc_module_end () vlc_module_end ()
......
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