summaryrefslogtreecommitdiffstats
path: root/ext/mplex/lpcmstrm_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/lpcmstrm_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/lpcmstrm_in.cc')
-rw-r--r--ext/mplex/lpcmstrm_in.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mplex/lpcmstrm_in.cc b/ext/mplex/lpcmstrm_in.cc
index 448094ed..a7e0c32d 100644
--- a/ext/mplex/lpcmstrm_in.cc
+++ b/ext/mplex/lpcmstrm_in.cc
@@ -165,7 +165,7 @@ LPCMStream::Close ()
{
stream_length = AU_start / 8;
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 ("Frames : %8u ", num_frames[0]);
bs.close ();
}