mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 03:29:50 +00:00
segment: Remove leftover debug g_print()
This commit is contained in:
parent
6ff8fdfc47
commit
9402f9786d
1 changed files with 1 additions and 6 deletions
|
@ -943,13 +943,8 @@ gst_segment_position_from_running_time (const GstSegment * segment,
|
||||||
gst_segment_position_from_running_time_full (segment, format,
|
gst_segment_position_from_running_time_full (segment, format,
|
||||||
running_time, &position);
|
running_time, &position);
|
||||||
|
|
||||||
if (res != 1) {
|
if (res != 1)
|
||||||
g_print
|
|
||||||
("here with start %lu stop %lu base %lu rate %f offset %lu running_time %lu position %lu\n",
|
|
||||||
segment->start, segment->stop, segment->base, segment->rate,
|
|
||||||
segment->offset, running_time, position);
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
|
||||||
|
|
||||||
/* before the segment boundary */
|
/* before the segment boundary */
|
||||||
if (G_UNLIKELY (position < segment->start)) {
|
if (G_UNLIKELY (position < segment->start)) {
|
||||||
|
|
Loading…
Reference in a new issue