mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +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;
|
||||
|
||||
result = gst_util_uint64_scale_int (samples, GST_SECOND, sink->rate);
|
||||
GST_LOG_OBJECT (sink,
|
||||
"Samples raw: %d, delay: %d, real: %d, Time: %" GST_TIME_FORMAT, raw,
|
||||
delay, samples, GST_TIME_ARGS (result));
|
||||
GST_LOG_OBJECT (sink, "Samples raw: %d, delay: %d, real: %d, "
|
||||
"Time: %" GST_TIME_FORMAT, (int) raw, (int) delay, (int) samples,
|
||||
GST_TIME_ARGS (result));
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue