summaryrefslogtreecommitdiffstats
path: root/ext/mplex/videostrm_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/videostrm_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/videostrm_in.cc')
-rw-r--r--ext/mplex/videostrm_in.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/mplex/videostrm_in.cc b/ext/mplex/videostrm_in.cc
index 91e6bb36..df9578a8 100644
--- a/ext/mplex/videostrm_in.cc
+++ b/ext/mplex/videostrm_in.cc
@@ -32,8 +32,8 @@ static void
marker_bit (IBitStream & bs, unsigned int what)
{
if (what != bs.get1bit ()) {
- mjpeg_error ("Illegal MPEG stream at offset (bits) %lld: supposed marker bit not found.",
- bs.bitcount ());
+ mjpeg_error ("Illegal MPEG stream at offset (bits) %d: supposed marker bit not found.",
+ (int)bs.bitcount ());
exit (1);
}
}
@@ -312,7 +312,7 @@ VideoStream::Close ()
/* Peak bit rate in 50B/sec units... */
peak_bit_rate = ((max_bits_persec / 8) / 50);
mjpeg_info ("VIDEO_STATISTICS: %02x", stream_id);
- mjpeg_info ("Video Stream length: %11llu bytes", stream_length / 8);
+ mjpeg_info ("Video Stream length: %11u bytes", (int)stream_length / 8);
mjpeg_info ("Sequence headers: %8u", num_sequence);
mjpeg_info ("Sequence ends : %8u", num_seq_end);
mjpeg_info ("No. Pictures : %8u", num_pictures);