summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Schmidt <thaytan@noraisin.net>2009-11-04 15:52:09 +0000
committerJan Schmidt <thaytan@noraisin.net>2009-11-04 15:52:09 +0000
commit0cdfa3dcd203771f23b446338b604bdb30002b48 (patch)
tree71b534a3e856cdce5b12f66e0f1204f70c9ff03c
parentbe7f76388255e8597eaac9b304f22adfd6764fe8 (diff)
a52dec: Fix debug statement: Pass pos variable instead of time() function
-rw-r--r--ext/a52dec/gsta52dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/a52dec/gsta52dec.c b/ext/a52dec/gsta52dec.c
index 6cfb5de2..701d7cd9 100644
--- a/ext/a52dec/gsta52dec.c
+++ b/ext/a52dec/gsta52dec.c
@@ -490,7 +490,7 @@ gst_a52dec_sink_event (GstPad * pad, GstEvent * event)
GST_DEBUG_OBJECT (a52dec,
"Pushing newseg rate %g, applied rate %g, format %d, start %"
G_GINT64_FORMAT ", stop %" G_GINT64_FORMAT ", pos %"
- G_GINT64_FORMAT, rate, arate, fmt, start, end, time);
+ G_GINT64_FORMAT, rate, arate, fmt, start, end, pos);
ret = gst_pad_push_event (a52dec->srcpad, event);
}