| gstnetclientclock.h | gstnetclientclock.h | |||
|---|---|---|---|---|
| skipping to change at line 65 | skipping to change at line 65 | |||
| (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_NET_CLIENT_CLOCK)) | (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_NET_CLIENT_CLOCK)) | |||
| #define GST_IS_NET_CLIENT_CLOCK_CLASS(klass) \ | #define GST_IS_NET_CLIENT_CLOCK_CLASS(klass) \ | |||
| (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_NET_CLIENT_CLOCK)) | (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_NET_CLIENT_CLOCK)) | |||
| typedef struct _GstNetClientClock GstNetClientClock; | typedef struct _GstNetClientClock GstNetClientClock; | |||
| typedef struct _GstNetClientClockClass GstNetClientClockClass; | typedef struct _GstNetClientClockClass GstNetClientClockClass; | |||
| typedef struct _GstNetClientClockPrivate GstNetClientClockPrivate; | typedef struct _GstNetClientClockPrivate GstNetClientClockPrivate; | |||
| /** | /** | |||
| * GstNetClientClock: | * GstNetClientClock: | |||
| * @clock: the parent clock structure. | ||||
| * | * | |||
| * Opaque #GstNetClientClock structure. | * Opaque #GstNetClientClock structure. | |||
| */ | */ | |||
| struct _GstNetClientClock { | struct _GstNetClientClock { | |||
| GstSystemClock clock; | GstSystemClock clock; | |||
| /*< protected >*/ | /*< protected >*/ | |||
| gchar *address; | gchar *address; | |||
| gint port; | gint port; | |||
| /*< private >*/ | /*< private >*/ | |||
| int sock; | int sock; | |||
| int control_sock[2]; | int control_sock[2]; | |||
| GstClockTime current_timeout; | GstClockTime current_timeout; | |||
| struct sockaddr_id *servaddr; | struct sockaddr_in *servaddr; | |||
| GThread *thread; | GThread *thread; | |||
| /*< private >*/ | /*< private >*/ | |||
| GstNetClientClockPrivate *priv; | GstNetClientClockPrivate *priv; | |||
| gpointer _gst_reserved[GST_PADDING - 1]; | gpointer _gst_reserved[GST_PADDING - 1]; | |||
| }; | }; | |||
| struct _GstNetClientClockClass { | struct _GstNetClientClockClass { | |||
| End of changes. 2 change blocks. | ||||
| 2 lines changed or deleted | 1 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ | ||||