pipewire/src/gst/gstpipewireclock.c

94 lines
2.7 KiB
C
Raw Normal View History

/* GStreamer
* Copyright (C) 2016 Wim Taymans <wim.taymans@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Suite 500,
* Boston, MA 02110-1335, USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <gst/gst.h>
2017-05-23 19:15:33 +02:00
#include "gstpipewireclock.h"
2017-05-23 19:15:33 +02:00
GST_DEBUG_CATEGORY_STATIC (gst_pipewire_clock_debug_category);
#define GST_CAT_DEFAULT gst_pipewire_clock_debug_category
2017-05-23 19:15:33 +02:00
G_DEFINE_TYPE (GstPipeWireClock, gst_pipewire_clock, GST_TYPE_SYSTEM_CLOCK);
GstClock *
gst_pipewire_clock_new (struct pw_stream *stream, GstClockTime last_time)
{
2017-05-23 19:15:33 +02:00
GstPipeWireClock *clock;
2017-05-23 19:15:33 +02:00
clock = g_object_new (GST_TYPE_PIPEWIRE_CLOCK, NULL);
clock->stream = stream;
clock->last_time = last_time;
return GST_CLOCK_CAST (clock);
}
static GstClockTime
2017-05-23 19:15:33 +02:00
gst_pipewire_clock_get_internal_time (GstClock * clock)
{
2017-05-23 19:15:33 +02:00
GstPipeWireClock *pclock = (GstPipeWireClock *) clock;
GstClockTime result;
2017-05-23 19:15:33 +02:00
struct pw_time t;
if (pclock->stream == NULL ||
pw_stream_get_time (pclock->stream, &t) < 0 ||
t.rate.denom == 0)
return pclock->last_time;
result = gst_util_uint64_scale_int (t.ticks, GST_SECOND * t.rate.num, t.rate.denom);
2017-03-27 15:20:01 +02:00
GST_DEBUG ("%"PRId64", %d/%d %"PRId64, t.ticks, t.rate.num, t.rate.denom, result);
return result;
}
static void
2017-05-23 19:15:33 +02:00
gst_pipewire_clock_finalize (GObject * object)
{
2017-05-23 19:15:33 +02:00
GstPipeWireClock *clock = GST_PIPEWIRE_CLOCK (object);
GST_DEBUG_OBJECT (clock, "finalize");
2017-05-23 19:15:33 +02:00
G_OBJECT_CLASS (gst_pipewire_clock_parent_class)->finalize (object);
}
static void
2017-05-23 19:15:33 +02:00
gst_pipewire_clock_class_init (GstPipeWireClockClass * klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
GstClockClass *gstclock_class = GST_CLOCK_CLASS (klass);
2017-05-23 19:15:33 +02:00
gobject_class->finalize = gst_pipewire_clock_finalize;
2017-05-23 19:15:33 +02:00
gstclock_class->get_internal_time = gst_pipewire_clock_get_internal_time;
2017-05-23 19:15:33 +02:00
GST_DEBUG_CATEGORY_INIT (gst_pipewire_clock_debug_category, "pipewireclock", 0,
"debug category for pipewireclock object");
}
static void
2017-05-23 19:15:33 +02:00
gst_pipewire_clock_init (GstPipeWireClock * clock)
{
GST_OBJECT_FLAG_SET (clock, GST_CLOCK_FLAG_CAN_SET_MASTER);
}