20 #include <QtCore/QTime>
21 #include <gst/gstclock.h>
22 #include <gst/gstsystemclock.h>
26 ClockPtr Clock::systemClock()
31 ClockTime Clock::clockTime()
const
33 GstClockTime t = gst_clock_get_time(object<GstClock>());
37 ClockTime Clock::resolution()
const
39 GstClockTime t = gst_clock_get_resolution(object<GstClock>());
43 QTime Clock::time()
const
45 return clockTime().
toTime();