]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/gaussianblur.c
Add a bunch of help strings. Feel free to correct them, and add more
[vlc] / modules / video_filter / gaussianblur.c
index 995b9290c5b7250770b7b453eb7d68f641b2eaef..735090202a8ef91696854db780c5e247d1d80ccf 100644 (file)
@@ -49,11 +49,14 @@ static void Destroy   ( vlc_object_t * );
     "Gaussian's standard deviation. The bluring will take " \
     "into account pixels up to 3*sigma away in any direction.")
 
+#define GAUSSIAN_HELP N_("Add a blurring effect")
+
 #define FILTER_PREFIX "gaussianblur-"
 
 vlc_module_begin ()
     set_description( N_("Gaussian blur video filter") )
     set_shortname( N_( "Gaussian Blur" ))
+    set_help(GAUSSIAN_HELP)
     set_capability( "video filter2", 0 )
     set_category( CAT_VIDEO )
     set_subcategory( SUBCAT_VIDEO_VFILTER )