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:
Andy Wingo 2005-11-10 19:05:38 +00:00
parent 8f560885c2
commit d6d7f17043
3 changed files with 11 additions and 16 deletions

View file

@ -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>
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
@ -38,10 +43,11 @@
2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
* sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
Check if the caps have a fourcc field. Fixes crash for
gst-launch-0.9 v4lsrc name=source autoprobe=false autoprobe-fps=false copy-mode=1 device=/dev/video0 ! ffmpegcolorspace !
"video/x-raw-yuv, format=(fourcc)I420" ! xvimagesink
* sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
name=source autoprobe=false autoprobe-fps=false copy-mode=1
device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
format=(fourcc)I420" ! xvimagesink
2005-11-10 Tim-Philipp Müller <tim at centricular dot net>

View file

@ -9,13 +9,11 @@ gstcolorbalance
</para>
<!-- ##### SECTION See_Also ##### -->
<para>
</para>
<!-- ##### SECTION Stability_Level ##### -->
@ -25,15 +23,6 @@ gstcolorbalance
</para>
<!-- ##### SIGNAL GstColorBalance::value-changed ##### -->
<para>
</para>
@gstcolorbalance: the object which received the signal.
@arg1:
@arg2:
<!-- ##### STRUCT GstColorBalanceClass ##### -->
<para>

View file

@ -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));
} else {
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;
}