diff options
| author | Wim Taymans <wim.taymans@gmail.com> | 2008-09-23 17:31:22 +0000 | 
|---|---|---|
| committer | Wim Taymans <wim.taymans@gmail.com> | 2008-09-23 17:31:22 +0000 | 
| commit | 34a8fa06f98690d716dc3cf94248de7be93f1508 (patch) | |
| tree | 7edf5a5de4f11e0173597109769a032754e48b88 | |
| parent | 53a576bb6fca5cfd619071835e201887177270c5 (diff) | |
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.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | gst/udp/gstmultiudpsink.c | 2 | 
2 files changed, 6 insertions, 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), diff --git a/gst/udp/gstmultiudpsink.c b/gst/udp/gstmultiudpsink.c index e08613ea..2044c83b 100644 --- a/gst/udp/gstmultiudpsink.c +++ b/gst/udp/gstmultiudpsink.c @@ -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:  | 
