diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2012-06-29 11:43:46 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2012-06-29 11:43:46 +0100 |
commit | cc8b526c00cec5e0c4d7426012e6e95d9c9604cc (patch) | |
tree | 4a631faea116e28213b5eb953970be75d48ebb6a /sys | |
parent | df70b2d2ceecadabbf8c7cad514b899b7f0210cb (diff) |
ximagesink, xvimagesink: default to force-aspect-ratio=true
Diffstat (limited to 'sys')
-rw-r--r-- | sys/ximage/ximagesink.c | 2 | ||||
-rw-r--r-- | sys/xvimage/xvimagesink.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/ximage/ximagesink.c b/sys/ximage/ximagesink.c index f47e7d398..b02ccc1e5 100644 --- a/sys/ximage/ximagesink.c +++ b/sys/ximage/ximagesink.c @@ -1923,7 +1923,7 @@ gst_ximagesink_class_init (GstXImageSinkClass * klass) g_object_class_install_property (gobject_class, PROP_FORCE_ASPECT_RATIO, g_param_spec_boolean ("force-aspect-ratio", "Force aspect ratio", "When enabled, reverse caps negotiation (scaling) will respect " - "original aspect ratio", FALSE, + "original aspect ratio", TRUE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (gobject_class, PROP_PIXEL_ASPECT_RATIO, g_param_spec_string ("pixel-aspect-ratio", "Pixel Aspect Ratio", diff --git a/sys/xvimage/xvimagesink.c b/sys/xvimage/xvimagesink.c index ed2f10c94..196811579 100644 --- a/sys/xvimage/xvimagesink.c +++ b/sys/xvimage/xvimagesink.c @@ -2835,7 +2835,7 @@ gst_xvimagesink_class_init (GstXvImageSinkClass * klass) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (gobject_class, PROP_FORCE_ASPECT_RATIO, g_param_spec_boolean ("force-aspect-ratio", "Force aspect ratio", - "When enabled, scaling will respect original aspect ratio", FALSE, + "When enabled, scaling will respect original aspect ratio", TRUE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (gobject_class, PROP_HANDLE_EVENTS, g_param_spec_boolean ("handle-events", "Handle XEvents", |