xvimagesink: remove unneded !=NULL checks

We check for matching_attr!=NULL right before already.
This commit is contained in:
Stefan Kost 2011-05-25 12:29:21 +03:00
parent 8da23e9d0b
commit 3f642f3635

View file

@ -1894,8 +1894,8 @@ gst_xvimagesink_xcontext_get (GstXvImageSink * xvimagesink)
channel = g_object_new (GST_TYPE_COLOR_BALANCE_CHANNEL, NULL);
channel->label = g_strdup (channels[i]);
channel->min_value = matching_attr ? matching_attr->min_value : -1000;
channel->max_value = matching_attr ? matching_attr->max_value : 1000;
channel->min_value = matching_attr->min_value;
channel->max_value = matching_attr->max_value;
xcontext->channels_list = g_list_append (xcontext->channels_list,
channel);