From 8c0a922780136877a26519c6f1596cdb2ab1e5f9 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Thu, 26 Jun 2008 10:40:03 +0000 Subject: [PATCH] gst/mpegaudioparse/gstmpegaudioparse.c: Fix build on macosx. Original commit message from CVS: * gst/mpegaudioparse/gstmpegaudioparse.c: (head_check): Fix build on macosx. --- ChangeLog | 5 +++++ common | 2 +- gst/mpegaudioparse/gstmpegaudioparse.c | 12 ++++++------ 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6067ecce0c..db99138372 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-06-26 Edward Hervey + + * gst/mpegaudioparse/gstmpegaudioparse.c: (head_check): + Fix build on macosx. + 2008-06-13 Stefan Kost * docs/plugins/gst-plugins-ugly-plugins-docs.sgml: diff --git a/common b/common index 46ec7dfc1c..d9cd98b46a 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 46ec7dfc1c09ff550ed6b7a4e0d3f2b2ac7d3ee8 +Subproject commit d9cd98b46aebaf143dc43d8563a3bff650be6a7e diff --git a/gst/mpegaudioparse/gstmpegaudioparse.c b/gst/mpegaudioparse/gstmpegaudioparse.c index fe17208580..efb30c5f51 100644 --- a/gst/mpegaudioparse/gstmpegaudioparse.c +++ b/gst/mpegaudioparse/gstmpegaudioparse.c @@ -1406,28 +1406,28 @@ head_check (GstMPEGAudioParse * mp3parse, unsigned long head) } /* if it's an invalid MPEG version */ if (((head >> 19) & 3) == 0x1) { - GST_WARNING_OBJECT (mp3parse, "invalid MPEG version: 0x%x", + GST_WARNING_OBJECT (mp3parse, "invalid MPEG version: 0x%lx", (head >> 19) & 3); return FALSE; } /* if it's an invalid layer */ if (!((head >> 17) & 3)) { - GST_WARNING_OBJECT (mp3parse, "invalid layer: 0x%x", (head >> 17) & 3); + GST_WARNING_OBJECT (mp3parse, "invalid layer: 0x%lx", (head >> 17) & 3); return FALSE; } /* if it's an invalid bitrate */ if (((head >> 12) & 0xf) == 0x0) { - GST_WARNING_OBJECT (mp3parse, "invalid bitrate: 0x%x." + GST_WARNING_OBJECT (mp3parse, "invalid bitrate: 0x%lx." "Free format files are not supported yet", (head >> 12) & 0xf); return FALSE; } if (((head >> 12) & 0xf) == 0xf) { - GST_WARNING_OBJECT (mp3parse, "invalid bitrate: 0x%x", (head >> 12) & 0xf); + GST_WARNING_OBJECT (mp3parse, "invalid bitrate: 0x%lx", (head >> 12) & 0xf); return FALSE; } /* if it's an invalid samplerate */ if (((head >> 10) & 0x3) == 0x3) { - GST_WARNING_OBJECT (mp3parse, "invalid samplerate: 0x%x", + GST_WARNING_OBJECT (mp3parse, "invalid samplerate: 0x%lx", (head >> 10) & 0x3); return FALSE; } @@ -1435,7 +1435,7 @@ head_check (GstMPEGAudioParse * mp3parse, unsigned long head) if ((head & 0x3) == 0x2) { /* Ignore this as there are some files with emphasis 0x2 that can * be played fine. See BGO #537235 */ - GST_WARNING_OBJECT (mp3parse, "invalid emphasis: 0x%x", head & 0x3); + GST_WARNING_OBJECT (mp3parse, "invalid emphasis: 0x%lx", head & 0x3); } return TRUE;