mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
Rename the keep-aspect-ratio property to force-aspect-ratio to make it consistent with xvimagesink and ximagesink.
Original commit message from CVS: * docs/plugins/gst-plugins-bad-plugins.args: * sys/directdraw/gstdirectdrawsink.c: (gst_directdraw_sink_class_init): Rename the keep-aspect-ratio property to force-aspect-ratio to make it consistent with xvimagesink and ximagesink.
This commit is contained in:
parent
d3d46ebb12
commit
5210165feb
3 changed files with 14 additions and 5 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2007-06-08 Jan Schmidt <thaytan@mad.scientist.com>
|
||||||
|
|
||||||
|
* docs/plugins/gst-plugins-bad-plugins.args:
|
||||||
|
* sys/directdraw/gstdirectdrawsink.c:
|
||||||
|
(gst_directdraw_sink_class_init):
|
||||||
|
Rename the keep-aspect-ratio property to force-aspect-ratio to make
|
||||||
|
it consistent with xvimagesink and ximagesink.
|
||||||
|
|
||||||
2007-06-08 Tim-Philipp Müller <tim at centricular dot net>
|
2007-06-08 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* tests/icles/videocrop-test.c: (main):
|
* tests/icles/videocrop-test.c: (main):
|
||||||
|
|
|
@ -17086,12 +17086,12 @@
|
||||||
</ARG>
|
</ARG>
|
||||||
|
|
||||||
<ARG>
|
<ARG>
|
||||||
<NAME>GstDirectDrawSink::keep-aspect-ratio</NAME>
|
<NAME>GstDirectDrawSink::force-aspect-ratio</NAME>
|
||||||
<TYPE>gboolean</TYPE>
|
<TYPE>gboolean</TYPE>
|
||||||
<RANGE></RANGE>
|
<RANGE></RANGE>
|
||||||
<FLAGS>rw</FLAGS>
|
<FLAGS>rw</FLAGS>
|
||||||
<NICK>keep-aspect-ratio</NICK>
|
<NICK>Force aspect ratio</NICK>
|
||||||
<BLURB>keep the aspect ratio or not</BLURB>
|
<BLURB>When enabled, scaling will respect original aspect ratio.</BLURB>
|
||||||
<DEFAULT>FALSE</DEFAULT>
|
<DEFAULT>FALSE</DEFAULT>
|
||||||
</ARG>
|
</ARG>
|
||||||
|
|
||||||
|
|
|
@ -342,8 +342,9 @@ gst_directdraw_sink_class_init (GstDirectDrawSinkClass * klass)
|
||||||
/* install properties */
|
/* install properties */
|
||||||
/* setup aspect ratio mode */
|
/* setup aspect ratio mode */
|
||||||
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
||||||
PROP_KEEP_ASPECT_RATIO, g_param_spec_boolean ("keep-aspect-ratio",
|
PROP_KEEP_ASPECT_RATIO, g_param_spec_boolean ("force-aspect-ratio",
|
||||||
"keep-aspect-ratio", "keep the aspect ratio or not", FALSE,
|
"Force aspect ratio",
|
||||||
|
"When enabled, scaling will respect original aspect ratio", FALSE,
|
||||||
G_PARAM_READWRITE));
|
G_PARAM_READWRITE));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue