Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
George Kiagiadakis
gst-plugins-base
Commits
ab24d9d6
Commit
ab24d9d6
authored
Apr 15, 2009
by
Stefan Kost
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
log: use G_GUINT64_FORMAT instead of llu
parent
71ab1873
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
gst-libs/gst/audio/gstbaseaudiosink.c
gst-libs/gst/audio/gstbaseaudiosink.c
+5
-4
No files found.
gst-libs/gst/audio/gstbaseaudiosink.c
View file @
ab24d9d6
...
...
@@ -455,8 +455,9 @@ gst_base_audio_sink_get_time (GstClock * clock, GstBaseAudioSink * sink)
sink
->
ringbuffer
->
spec
.
rate
);
GST_DEBUG_OBJECT
(
sink
,
"processed samples: raw %llu, delay %u, real %llu, time %"
GST_TIME_FORMAT
,
raw
,
delay
,
samples
,
GST_TIME_ARGS
(
result
));
"processed samples: raw %"
G_GUINT64_FORMAT
", delay %u, real %"
G_GUINT64_FORMAT
", time %"
GST_TIME_FORMAT
,
raw
,
delay
,
samples
,
GST_TIME_ARGS
(
result
));
return
result
;
}
...
...
@@ -1244,8 +1245,8 @@ gst_base_audio_sink_render (GstBaseSink * bsink, GstBuffer * buf)
time
=
GST_BUFFER_TIMESTAMP
(
buf
);
GST_DEBUG_OBJECT
(
sink
,
"time %"
GST_TIME_FORMAT
", offset %
llu, start %"
GST_TIME_FORMAT
", samples %u"
,
GST_TIME_ARGS
(
time
),
in_offset
,
"time %"
GST_TIME_FORMAT
", offset %
"
G_GUINT64_FORMAT
", start %"
GST_TIME_FORMAT
", samples %u"
,
GST_TIME_ARGS
(
time
),
in_offset
,
GST_TIME_ARGS
(
bsink
->
segment
.
start
),
samples
);
data
=
GST_BUFFER_DATA
(
buf
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment