mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
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.
This commit is contained in:
parent
16860a5c42
commit
f0365ebe22
2 changed files with 14 additions and 2 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
||||||
|
2004-03-05 David Schleef <ds@schleef.org>
|
||||||
|
|
||||||
|
* 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 <ds@schleef.org>
|
2004-03-05 David Schleef <ds@schleef.org>
|
||||||
|
|
||||||
* gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
|
* gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
|
||||||
|
|
|
@ -534,8 +534,8 @@ gst_audio_convert_link (GstPad *pad, const GstCaps *caps)
|
||||||
this->sinkcaps = other_ac_caps;
|
this->sinkcaps = other_ac_caps;
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_DEBUG ("negotiated sink to %" GST_PTR_FORMAT, this->sinkcaps);
|
GST_DEBUG ("negotiated pad to %" GST_PTR_FORMAT, caps);
|
||||||
GST_DEBUG ("negotiated src to %" GST_PTR_FORMAT, this->srccaps);
|
GST_DEBUG ("negotiated otherpad to %" GST_PTR_FORMAT, othercaps);
|
||||||
return GST_PAD_LINK_OK;
|
return GST_PAD_LINK_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue