summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2004-03-06 00:42:19 +0000
committerDavid Schleef <ds@schleef.org>2004-03-06 00:42:19 +0000
commit9331801a627de7006d19eb1cf3313dd32f6fb3e0 (patch)
tree23b7e6e24ca530049a04e0d58b6af623214db2b0
parent16d27de34e7e83c948364309dc1f03ce23535fe7 (diff)
ext/faad/gstfaad.c: Fix negotiation.
Original commit message from CVS: * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps), (gst_faad_chain): Fix negotiation. * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add key and button events. * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this dung heap of code. * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf depends on gconf * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same * gst-libs/gst/play/play.c: (gst_play_pipeline_setup), (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate function to encourage better negotiation, particularly between audioconvert and osssink. * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain): * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak): Make some debugging more important. * gst/typefind/gsttypefindfunctions.c: Fix mistake in flash typefinding. * gst/vbidec/vbiscreen.c: Add glib header * pkgconfig/gstreamer-play.pc.in: Depends on gst-interfaces.
-rw-r--r--ChangeLog23
-rw-r--r--gst/qtdemux/qtdemux.c7
2 files changed, 28 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2a44d768..4c0a2cf1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,26 @@
+2004-03-05 David Schleef <ds@schleef.org>
+
+ * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
+ (gst_faad_chain): Fix negotiation.
+ * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
+ key and button events.
+ * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
+ dung heap of code.
+ * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
+ depends on gconf
+ * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
+ * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
+ (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
+ function to encourage better negotiation, particularly between
+ audioconvert and osssink.
+ * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
+ * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak): Make some debugging
+ more important.
+ * gst/typefind/gsttypefindfunctions.c: Fix mistake in flash
+ typefinding.
+ * gst/vbidec/vbiscreen.c: Add glib header
+ * pkgconfig/gstreamer-play.pc.in: Depends on gst-interfaces.
+
2004-03-06 Christophe Fergeau <teuf@users.sourceforge.net>
* ext/mad/gstmad.c: Fix detection of Xing headers
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c
index d33d18ee..5ce3807b 100644
--- a/gst/qtdemux/qtdemux.c
+++ b/gst/qtdemux/qtdemux.c
@@ -1445,7 +1445,9 @@ static void qtdemux_parse_trak(GstQTDemux *qtdemux, GNode *trak)
stream->caps = qtdemux_video_caps(qtdemux,
QTDEMUX_FOURCC_GET(stsd->data+offset+4), stsd->data);
- GST_LOG("caps %s\n",gst_caps_to_string(stream->caps));
+ GST_INFO("type " GST_FOURCC_FORMAT " caps %" GST_PTR_FORMAT "\n",
+ GST_FOURCC_ARGS (QTDEMUX_FOURCC_GET(stsd->data+offset+4)),
+ stream->caps);
}else if(stream->subtype == FOURCC_soun){
int version;
@@ -1480,7 +1482,8 @@ static void qtdemux_parse_trak(GstQTDemux *qtdemux, GNode *trak)
stream->caps = qtdemux_audio_caps(qtdemux,
QTDEMUX_FOURCC_GET(stsd->data+16+4), (QTDEMUX_GUINT32_GET(stsd->data) > offset) ? stsd->data + offset : NULL);
- GST_LOG("caps %s\n",gst_caps_to_string(stream->caps));
+ GST_INFO("type " GST_FOURCC_FORMAT " caps %" GST_PTR_FORMAT "\n",
+ GST_FOURCC_ARGS(QTDEMUX_FOURCC_GET(stsd->data+16+4)), stream->caps);
}else{
GST_LOG("unknown subtype\n");
return;