diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2006-10-05 16:37:33 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2006-10-05 16:37:33 +0000 |
commit | 82f5a3508c4f7be17a2dd55b78acc8c9c5221665 (patch) | |
tree | 95fc8e66b0c7fec00982253fc5145e746df30b26 /gst/auparse | |
parent | a4221727ded9a2501c8b1a96289e7b21130cd25d (diff) |
Printf format fixes.
Original commit message from CVS:
* ext/cairo/gsttimeoverlay.c:
(gst_cairo_time_overlay_update_font_height):
* ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_transform_caps):
* ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_parse_image_data):
* ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
* ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
* ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
* ext/libpng/gstpngdec.c: (user_endrow_callback):
* gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
* gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
(gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
(gst_avi_demux_stream_data):
* gst/cutter/gstcutter.c: (gst_cutter_chain):
* gst/debug/efence.c: (gst_efence_buffer_alloc),
(gst_fenced_buffer_copy):
* gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
* gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
* gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
* gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
(gst_rtspsrc_handle_message):
* gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
* sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
Printf format fixes.
Diffstat (limited to 'gst/auparse')
-rw-r--r-- | gst/auparse/gstauparse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/auparse/gstauparse.c b/gst/auparse/gstauparse.c index 1450efb10..406e5454a 100644 --- a/gst/auparse/gstauparse.c +++ b/gst/auparse/gstauparse.c @@ -268,8 +268,8 @@ gst_au_parse_parse_header (GstAuParse * auparse) auparse->samplerate = GST_READ_UINT32_BE (head + 16); auparse->channels = GST_READ_UINT32_BE (head + 20); - GST_DEBUG_OBJECT (auparse, "offset %ld, size %u, encoding %u, " - "frequency %u, channels %u", auparse->offset, size, + GST_DEBUG_OBJECT (auparse, "offset %" G_GINT64_FORMAT ", size %u, " + "encoding %u, frequency %u, channels %u", auparse->offset, size, auparse->encoding, auparse->samplerate, auparse->channels); /* Docs: @@ -389,7 +389,7 @@ gst_au_parse_parse_header (GstAuParse * auparse) if (!gst_au_parse_add_srcpad (auparse, tempcaps)) goto add_pad_failed; - GST_DEBUG_OBJECT (auparse, "offset=%ld", auparse->offset); + GST_DEBUG_OBJECT (auparse, "offset=%" G_GINT64_FORMAT, auparse->offset); gst_adapter_flush (auparse->adapter, auparse->offset); gst_caps_unref (tempcaps); |