mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-24 23:16:30 +00:00
alsaspdifsink: printf format fixes
This commit is contained in:
parent
2d043ef744
commit
cf481210e8
1 changed files with 3 additions and 3 deletions
|
@ -312,9 +312,9 @@ alsaspdifsink_get_time (GstClock * clock, gpointer user_data)
|
||||||
samples = 0;
|
samples = 0;
|
||||||
|
|
||||||
result = gst_util_uint64_scale_int (samples, GST_SECOND, sink->rate);
|
result = gst_util_uint64_scale_int (samples, GST_SECOND, sink->rate);
|
||||||
GST_LOG_OBJECT (sink,
|
GST_LOG_OBJECT (sink, "Samples raw: %d, delay: %d, real: %d, "
|
||||||
"Samples raw: %d, delay: %d, real: %d, Time: %" GST_TIME_FORMAT, raw,
|
"Time: %" GST_TIME_FORMAT, (int) raw, (int) delay, (int) samples,
|
||||||
delay, samples, GST_TIME_ARGS (result));
|
GST_TIME_ARGS (result));
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue