mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-30 21:51:09 +00:00
gst/playback/gstplaybasebin.c (prepare_output): Fix format string doober.
Original commit message from CVS: 2005-11-10 Andy Wingo <wingo@pobox.com> * gst/playback/gstplaybasebin.c (prepare_output): Fix format string doober.
This commit is contained in:
parent
8f560885c2
commit
d6d7f17043
3 changed files with 11 additions and 16 deletions
14
ChangeLog
14
ChangeLog
|
@ -1,3 +1,8 @@
|
||||||
|
2005-11-10 Andy Wingo <wingo@pobox.com>
|
||||||
|
|
||||||
|
* gst/playback/gstplaybasebin.c (prepare_output): Fix format
|
||||||
|
string doober.
|
||||||
|
|
||||||
2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
|
2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
|
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
|
||||||
|
@ -38,10 +43,11 @@
|
||||||
|
|
||||||
2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
|
2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
|
* sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
|
||||||
Check if the caps have a fourcc field. Fixes crash for
|
a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
|
||||||
gst-launch-0.9 v4lsrc name=source autoprobe=false autoprobe-fps=false copy-mode=1 device=/dev/video0 ! ffmpegcolorspace !
|
name=source autoprobe=false autoprobe-fps=false copy-mode=1
|
||||||
"video/x-raw-yuv, format=(fourcc)I420" ! xvimagesink
|
device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
|
||||||
|
format=(fourcc)I420" ! xvimagesink
|
||||||
|
|
||||||
2005-11-10 Tim-Philipp Müller <tim at centricular dot net>
|
2005-11-10 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,11 @@ gstcolorbalance
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### SECTION See_Also ##### -->
|
<!-- ##### SECTION See_Also ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### SECTION Stability_Level ##### -->
|
<!-- ##### SECTION Stability_Level ##### -->
|
||||||
|
|
||||||
|
|
||||||
|
@ -25,15 +23,6 @@ gstcolorbalance
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstColorBalance::value-changed ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@gstcolorbalance: the object which received the signal.
|
|
||||||
@arg1:
|
|
||||||
@arg2:
|
|
||||||
|
|
||||||
<!-- ##### STRUCT GstColorBalanceClass ##### -->
|
<!-- ##### STRUCT GstColorBalanceClass ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
|
|
|
@ -1410,7 +1410,7 @@ prepare_output (GstPlayBaseBin * play_base_bin)
|
||||||
(_("You do not have a decoder installed to handle \"%s\". You might need to install the necessary plugins."), play_base_bin->uri), (NULL));
|
(_("You do not have a decoder installed to handle \"%s\". You might need to install the necessary plugins."), play_base_bin->uri), (NULL));
|
||||||
} else {
|
} else {
|
||||||
GST_ELEMENT_ERROR (play_base_bin, STREAM, WRONG_TYPE,
|
GST_ELEMENT_ERROR (play_base_bin, STREAM, WRONG_TYPE,
|
||||||
(_("\"%s\" is not a media file")), (NULL));
|
(_("\"%s\" is not a media file"), play_base_bin->uri), (NULL));
|
||||||
}
|
}
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue