mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
gst/udp/gstmultiudpsink.c: Fix setting the qos.
Original commit message from CVS: * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_set_property): Fix setting the qos.
This commit is contained in:
parent
53a576bb6f
commit
34a8fa06f9
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-09-23 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* gst/udp/gstmultiudpsink.c: (gst_multiudpsink_set_property):
|
||||
Fix setting the qos.
|
||||
|
||||
2008-09-17 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||
|
||||
* gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_header),
|
||||
|
|
|
@ -547,7 +547,7 @@ gst_multiudpsink_set_property (GObject * object, guint prop_id,
|
|||
udpsink->loop = g_value_get_boolean (value);
|
||||
break;
|
||||
case PROP_QOS_DSCP:
|
||||
udpsink->qos_dscp = g_value_get_uint (value);
|
||||
udpsink->qos_dscp = g_value_get_int (value);
|
||||
gst_multiudpsink_setup_qos_dscp (udpsink);
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue