mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
gst/rtpmanager/gstrtpbin.c: Actually add the do-lost property to the object.
Original commit message from CVS: * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init): Actually add the do-lost property to the object.
This commit is contained in:
parent
4ab14e0849
commit
9fd3fa1063
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2008-05-13 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
|
* gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init):
|
||||||
|
Actually add the do-lost property to the object.
|
||||||
|
|
||||||
2008-05-12 Wim Taymans <wim.taymans@collabora.co.uk>
|
2008-05-12 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
* gst/rtpmanager/gstrtpjitterbuffer.c:
|
* gst/rtpmanager/gstrtpjitterbuffer.c:
|
||||||
|
|
|
@ -1302,6 +1302,11 @@ gst_rtp_bin_class_init (GstRtpBinClass * klass)
|
||||||
"The NOTE to put in SDES messages of this session",
|
"The NOTE to put in SDES messages of this session",
|
||||||
DEFAULT_SDES_NOTE, G_PARAM_READWRITE));
|
DEFAULT_SDES_NOTE, G_PARAM_READWRITE));
|
||||||
|
|
||||||
|
g_object_class_install_property (gobject_class, PROP_DO_LOST,
|
||||||
|
g_param_spec_boolean ("do-lost", "Do Lost",
|
||||||
|
"Send an event downstream when a packet is lost", DEFAULT_DO_LOST,
|
||||||
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
|
|
||||||
gstelement_class->provide_clock =
|
gstelement_class->provide_clock =
|
||||||
GST_DEBUG_FUNCPTR (gst_rtp_bin_provide_clock);
|
GST_DEBUG_FUNCPTR (gst_rtp_bin_provide_clock);
|
||||||
gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_rtp_bin_change_state);
|
gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_rtp_bin_change_state);
|
||||||
|
|
Loading…
Reference in a new issue