gstreamer_core/libs/gst/net/gstnetclientclock.c
branchRCL_3
changeset 29 567bb019e3e3
parent 0 0e761a78d257
child 30 7e817e7e631c
equal deleted inserted replaced
6:9b2c3c7a1a9c 29:567bb019e3e3
   141   gobject_class->set_property = gst_net_client_clock_set_property;
   141   gobject_class->set_property = gst_net_client_clock_set_property;
   142 
   142 
   143   g_object_class_install_property (gobject_class, PROP_ADDRESS,
   143   g_object_class_install_property (gobject_class, PROP_ADDRESS,
   144       g_param_spec_string ("address", "address",
   144       g_param_spec_string ("address", "address",
   145           "The address of the machine providing a time server, "
   145           "The address of the machine providing a time server, "
   146           "as a dotted quad (x.x.x.x)", DEFAULT_ADDRESS, G_PARAM_READWRITE));
   146           "as a dotted quad (x.x.x.x)", DEFAULT_ADDRESS,
       
   147           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
   147   g_object_class_install_property (gobject_class, PROP_PORT,
   148   g_object_class_install_property (gobject_class, PROP_PORT,
   148       g_param_spec_int ("port", "port",
   149       g_param_spec_int ("port", "port",
   149           "The port on which the remote server is listening", 0, G_MAXUINT16,
   150           "The port on which the remote server is listening", 0, G_MAXUINT16,
   150           DEFAULT_PORT, G_PARAM_READWRITE));
   151           DEFAULT_PORT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
   151 }
   152 }
   152 
   153 
   153 static void
   154 static void
   154 gst_net_client_clock_init (GstNetClientClock * self,
   155 gst_net_client_clock_init (GstNetClientClock * self,
   155     GstNetClientClockClass * g_class)
   156     GstNetClientClockClass * g_class)