From f0365ebe225d0497681fe51e7fb928f6cff2991b Mon Sep 17 00:00:00 2001 From: David Schleef Date: Sat, 6 Mar 2004 04:51:15 +0000 Subject: [PATCH] ext/aalib/gstaasink.c: Add fixate function. (bug #131128) Original commit message from CVS: * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init): Add fixate function. (bug #131128) * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init), (gst_sdlvideosink_fixate): Add fixate function. * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link): Fix attempt to print a non-pointer using GST_PTR_FORMAT. * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix missing break that was causing ulaw to be interpreted as raw int. --- ChangeLog | 12 ++++++++++++ gst/audioconvert/gstaudioconvert.c | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index cb88082..007d831 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,17 @@ 2004-03-05 David Schleef + * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init): + Add fixate function. (bug #131128) + * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init), + (gst_sdlvideosink_fixate): Add fixate function. + * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link): + Fix attempt to print a non-pointer using GST_PTR_FORMAT. + * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): + Fix missing break that was causing ulaw to be interpreted as + raw int. + +2004-03-05 David Schleef + * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): Fix code that ignores return value of gst_buffer_merge(). (bug #114560) diff --git a/gst/audioconvert/gstaudioconvert.c b/gst/audioconvert/gstaudioconvert.c index 81a7109..30a26f9 100644 --- a/gst/audioconvert/gstaudioconvert.c +++ b/gst/audioconvert/gstaudioconvert.c @@ -534,8 +534,8 @@ gst_audio_convert_link (GstPad *pad, const GstCaps *caps) this->sinkcaps = other_ac_caps; } - GST_DEBUG ("negotiated sink to %" GST_PTR_FORMAT, this->sinkcaps); - GST_DEBUG ("negotiated src to %" GST_PTR_FORMAT, this->srccaps); + GST_DEBUG ("negotiated pad to %" GST_PTR_FORMAT, caps); + GST_DEBUG ("negotiated otherpad to %" GST_PTR_FORMAT, othercaps); return GST_PAD_LINK_OK; } -- 2.7.4