summaryrefslogtreecommitdiffstats
path: root/ext/mplex/mpastrm_in.cc
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2003-07-25 19:44:32 +0000
committerDavid Schleef <ds@schleef.org>2003-07-25 19:44:32 +0000
commit9f42b5fa14b03750583a8e3ae8da3fcf181b596d (patch)
treeed6a488e8940be2166b2b7cf6f2fafd73d1d5e7e /ext/mplex/mpastrm_in.cc
parentdd67a01ad201c24958e8d3c265c0373b0818e2ef (diff)
downloadgst-plugins-bad-9f42b5fa14b03750583a8e3ae8da3fcf181b596d.tar.gz
gst-plugins-bad-9f42b5fa14b03750583a8e3ae8da3fcf181b596d.tar.bz2
gst-plugins-bad-9f42b5fa14b03750583a8e3ae8da3fcf181b596d.zip
Compilation fixes on 64-bit architectures
Original commit message from CVS: Compilation fixes on 64-bit architectures
Diffstat (limited to 'ext/mplex/mpastrm_in.cc')
-rw-r--r--ext/mplex/mpastrm_in.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/mplex/mpastrm_in.cc b/ext/mplex/mpastrm_in.cc
index ea7c32fb..0d085b87 100644
--- a/ext/mplex/mpastrm_in.cc
+++ b/ext/mplex/mpastrm_in.cc
@@ -214,8 +214,8 @@ MPAStream::FillAUbuffer (unsigned int frames_to_buffer)
AU_start = bs.bitcount () - 11;
syncword = syncword | next;
if (syncword != AUDIO_SYNCWORD) {
- mjpeg_warn ("Failed to find start of next stream at %lld prev %lld !", AU_start / 8,
- prev_offset / 8);
+ mjpeg_warn ("Failed to find start of next stream at %d prev %d !", (int) AU_start / 8,
+ (int)prev_offset / 8);
break;
}
} else
@@ -267,7 +267,7 @@ MPAStream::Close ()
{
stream_length = AU_start >> 3;
mjpeg_info ("AUDIO_STATISTICS: %02x", stream_id);
- mjpeg_info ("Audio stream length %lld bytes.", stream_length);
+ mjpeg_info ("Audio stream length %d bytes.", (int)stream_length);
mjpeg_info ("Syncwords : %8u", num_syncword);
mjpeg_info ("Frames : %8u padded", num_frames[0]);
mjpeg_info ("Frames : %8u unpadded", num_frames[1]);