]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/colorthres.c
Removes trailing spaces. Removes tabs.
[vlc] / modules / video_filter / colorthres.c
index 174ef19a3f84a25d79e3f7f1797b53b0941d4b03..8ee41f9b1a6ba82e991155f035e4d6d53f90f180 100644 (file)
@@ -25,8 +25,6 @@
  * Preamble
  *****************************************************************************/
 #include <errno.h>
-#include <stdlib.h>                                      /* malloc(), free() */
-#include <string.h>
 #include <math.h>
 
 #include <vlc/vlc.h>
@@ -68,10 +66,10 @@ vlc_module_begin();
     add_integer( CFG_PREFIX "color", 0x00FF0000, NULL, COLOR_TEXT,
                  COLOR_LONGTEXT, VLC_FALSE );
         change_integer_list( pi_color_values, ppsz_color_descriptions, 0 );
-    add_integer( CFG_PREFIX "saturationthres", 20, NULL, "saturaton threshold",
-                 "", VLC_FALSE );
-    add_integer( CFG_PREFIX "similaritythres", 15, NULL, "similarity threshold",
-                 "", VLC_FALSE );
+    add_integer( CFG_PREFIX "saturationthres", 20, NULL,
+                 _("Saturaton threshold"), "", VLC_FALSE );
+    add_integer( CFG_PREFIX "similaritythres", 15, NULL,
+                 _("Similarity threshold"), "", VLC_FALSE );
     set_callbacks( Create, Destroy );
 vlc_module_end();