summaryrefslogtreecommitdiffstats
path: root/gst/liveadder
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-02-23 15:25:03 +0100
committerEdward Hervey <bilboed@bilboed.com>2009-02-23 15:25:03 +0100
commitc2c1941ffc80af60ece77d23ff428031742436f9 (patch)
treebe7f1974db138c8f2c75912207a5ccbc919b4cfc /gst/liveadder
parentbde8707b659319dc29fe9d748ea6b3d9492d3703 (diff)
downloadgst-plugins-bad-c2c1941ffc80af60ece77d23ff428031742436f9.tar.gz
gst-plugins-bad-c2c1941ffc80af60ece77d23ff428031742436f9.tar.bz2
gst-plugins-bad-c2c1941ffc80af60ece77d23ff428031742436f9.zip
liveadder: Fix build on macosx
Diffstat (limited to 'gst/liveadder')
-rw-r--r--gst/liveadder/liveadder.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/liveadder/liveadder.c b/gst/liveadder/liveadder.c
index bb4cf305..d10f54f0 100644
--- a/gst/liveadder/liveadder.c
+++ b/gst/liveadder/liveadder.c
@@ -959,7 +959,8 @@ gst_live_live_adder_chain (GstPad * pad, GstBuffer * buffer)
GST_LOG_OBJECT (adder,
"Timestamp discontinuity without the DISCONT flag set"
" (expected %" GST_TIME_FORMAT ", got %" GST_TIME_FORMAT
- " drift:%ldms)", GST_TIME_ARGS (padprivate->expected_timestamp),
+ " drift:%" G_GINT64_FORMAT "ms)",
+ GST_TIME_ARGS (padprivate->expected_timestamp),
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buffer)), drift / GST_MSECOND);
/* We accept drifts of 10ms */