]> git.sesse.net Git - vlc/commitdiff
we need 16:10 cropping as well, there are monitors with this
authorMarian Durkovic <md@videolan.org>
Mon, 31 Oct 2005 13:17:28 +0000 (13:17 +0000)
committerMarian Durkovic <md@videolan.org>
Mon, 31 Oct 2005 13:17:28 +0000 (13:17 +0000)
aspect ratio (e.g. 1280x800, 1920x1200)

src/video_output/vout_intf.c

index 5efca5deac8ca5ca1173f7d071c5d461de265308..367f89c832def3ab6c75e5f4da6227bb3665a4b6 100644 (file)
@@ -235,6 +235,8 @@ void vout_IntfInit( vout_thread_t *p_vout )
     var_Change( p_vout, "crop", VLC_VAR_ADDCHOICE, &val, &text );
     val.psz_string = "004:3"; text.psz_string = _("4:3");
     var_Change( p_vout, "crop", VLC_VAR_ADDCHOICE, &val, &text );
+    val.psz_string = "16:10"; text.psz_string = _("16:10");
+    var_Change( p_vout, "crop", VLC_VAR_ADDCHOICE, &val, &text );
     val.psz_string = "16:9"; text.psz_string = _("16:9");
     var_Change( p_vout, "crop", VLC_VAR_ADDCHOICE, &val, &text );
     val.psz_string = "221:100"; text.psz_string = _("221:100");