mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
[MOVED FROM GST-P-FARSIGHT] Use log for message thats on every buffer
This commit is contained in:
parent
e7da8d9ac6
commit
4b33d319fc
1 changed files with 4 additions and 3 deletions
|
@ -1315,9 +1315,10 @@ gst_live_adder_loop (gpointer data)
|
|||
if (newseg_event)
|
||||
gst_pad_push_event (adder->srcpad, newseg_event);
|
||||
|
||||
GST_DEBUG ("About to push buffer time:%"GST_TIME_FORMAT" duration:%"GST_TIME_FORMAT,
|
||||
GST_TIME_ARGS(GST_BUFFER_TIMESTAMP(buffer)),
|
||||
GST_TIME_ARGS(GST_BUFFER_DURATION(buffer)));
|
||||
GST_LOG_OBJECT (adder, "About to push buffer time:%" GST_TIME_FORMAT
|
||||
" duration:%"GST_TIME_FORMAT,
|
||||
GST_TIME_ARGS(GST_BUFFER_TIMESTAMP(buffer)),
|
||||
GST_TIME_ARGS(GST_BUFFER_DURATION(buffer)));
|
||||
|
||||
result = gst_pad_push (adder->srcpad, buffer);
|
||||
if (result != GST_FLOW_OK)
|
||||
|
|
Loading…
Reference in a new issue