diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2006-10-05 18:14:46 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2006-10-05 18:14:46 +0000 |
commit | c403790b6cb1c9af19a71064f71bf43ae12e77d2 (patch) | |
tree | 88e7813c09a5d1f7ea01e6acd449e6abf6bf90d2 /gst/spectrum | |
parent | 84807e3db3f4fbba66c2aab4401348606b43e922 (diff) | |
download | gst-plugins-bad-c403790b6cb1c9af19a71064f71bf43ae12e77d2.tar.gz gst-plugins-bad-c403790b6cb1c9af19a71064f71bf43ae12e77d2.tar.bz2 gst-plugins-bad-c403790b6cb1c9af19a71064f71bf43ae12e77d2.zip |
Another batch of printf format fixes.
Original commit message from CVS:
* ext/dts/gstdtsdec.c: (gst_dtsdec_chain):
* ext/musicbrainz/gsttrm.c: (gst_trm_setcaps):
* ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_sink_set_caps):
* gst/qtdemux/qtdemux.c: (gst_qtdemux_chain), (qtdemux_parse),
(qtdemux_parse_trak):
* gst/spectrum/gstspectrum.c: (gst_spectrum_transform_ip):
Another batch of printf format fixes.
Diffstat (limited to 'gst/spectrum')
-rw-r--r-- | gst/spectrum/gstspectrum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/spectrum/gstspectrum.c b/gst/spectrum/gstspectrum.c index cfb31e5e..7c1dacde 100644 --- a/gst/spectrum/gstspectrum.c +++ b/gst/spectrum/gstspectrum.c @@ -429,7 +429,7 @@ gst_spectrum_transform_ip (GstBaseTransform * trans, GstBuffer * in) GstClockTime blktime = GST_FRAMES_TO_CLOCK_TIME (spectrum->len, spectrum->rate); - GST_LOG ("transform : %ld bytes", GST_BUFFER_SIZE (in)); + GST_LOG ("input size: %d bytes", GST_BUFFER_SIZE (in)); gst_adapter_push (spectrum->adapter, gst_buffer_ref (in)); /* required number of bytes */ |