From 1791799d71be847674a99cda7adfc4157cad2989 Mon Sep 17 00:00:00 2001 From: Vincent Penquerc'h Date: Thu, 10 Apr 2014 16:08:29 +0100 Subject: [PATCH] oggstream: use G_GUINT64_CONSTANT instead of ll suffix Thanks slomo for pointing out it's not standard. --- ext/ogg/gstoggstream.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/ogg/gstoggstream.c b/ext/ogg/gstoggstream.c index 83a2ce50f8..a199ffe79b 100644 --- a/ext/ogg/gstoggstream.c +++ b/ext/ogg/gstoggstream.c @@ -498,7 +498,7 @@ is_granulepos_keyframe_theora (GstOggStream * pad, gint64 granulepos) if (granulepos == (gint64) - 1) return FALSE; - frame_mask = (1ll << pad->granuleshift) - 1; + frame_mask = (G_GUINT64_CONSTANT (1) << pad->granuleshift) - 1; return ((granulepos & frame_mask) == 0); } @@ -1105,7 +1105,7 @@ packet_duration_flac (GstOggStream * pad, ogg_packet * packet) return 576 << (block_size_index - 2); } if (block_size_index >= 8) { - return 256ll << (block_size_index - 8); + return G_GUINT64_CONSTANT (256) << (block_size_index - 8); } if (block_size_index == 6 || block_size_index == 7) { guint len, bytes = (block_size_index - 6) + 1; @@ -2195,7 +2195,7 @@ is_granulepos_keyframe_daala (GstOggStream * pad, gint64 granulepos) if (granulepos == (gint64) - 1) return FALSE; - frame_mask = (1ll << pad->granuleshift) - 1; + frame_mask = (G_GUINT64_CONSTANT (1) << pad->granuleshift) - 1; return ((granulepos & frame_mask) == 0); }