]> git.sesse.net Git - vlc/commitdiff
Add the "X" deinterlace mode to the list displayed in guis. (We should certainly...
authorBenjamin Pracht <bigben@videolan.org>
Sun, 10 Jul 2005 15:45:02 +0000 (15:45 +0000)
committerBenjamin Pracht <bigben@videolan.org>
Sun, 10 Jul 2005 15:45:02 +0000 (15:45 +0000)
src/video_output/video_output.c

index 5cd073cd93de74e8eee87343b35ad12c4abbd599..f64ac6eb69db67d8ccdba16e91cc707c097f715b 100644 (file)
@@ -423,6 +423,9 @@ vout_thread_t * __vout_Create( vlc_object_t *p_parent, video_format_t *p_fmt )
     var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
     val.psz_string = "linear"; text.psz_string = _("Linear");
     var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
+    val.psz_string = "x"; text.psz_string = "X";
+    var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
+
     if( var_Get( p_vout, "deinterlace-mode", &val ) == VLC_SUCCESS )
     {
         var_Set( p_vout, "deinterlace", val );