mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
gst/gstclock.h: Fix up broken GST_CLOCK_FLAGS macro and GstClock docs. The flags field has moved to GstObject.
Original commit message from CVS: * gst/gstclock.h: Fix up broken GST_CLOCK_FLAGS macro and GstClock docs. The flags field has moved to GstObject.
This commit is contained in:
parent
d39d3debfc
commit
50521a14dc
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2007-10-03 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/gstclock.h:
|
||||
Fix up broken GST_CLOCK_FLAGS macro and GstClock docs. The flags
|
||||
field has moved to GstObject.
|
||||
|
||||
2007-10-02 Wim Taymans <wim.taymans@gmail.com>
|
||||
|
||||
* libs/gst/base/gstbasesrc.c: (gst_base_src_do_sync),
|
||||
|
|
|
@ -338,7 +338,7 @@ typedef enum {
|
|||
*
|
||||
* Gets the #GstClockFlags clock flags.
|
||||
*/
|
||||
#define GST_CLOCK_FLAGS(clock) (GST_CLOCK(clock)->flags)
|
||||
#define GST_CLOCK_FLAGS(clock) GST_OBJECT_FLAGS(clock)
|
||||
|
||||
/**
|
||||
* GST_CLOCK_COND:
|
||||
|
@ -374,7 +374,6 @@ typedef enum {
|
|||
|
||||
/**
|
||||
* GstClock:
|
||||
* @flags: The flags specifying the capabilities of the clock.
|
||||
*
|
||||
* GstClock base structure. The values of this structure are
|
||||
* protected for subclasses, use the methods to use the #GstClock.
|
||||
|
|
Loading…
Reference in a new issue