xvimagesink: remove unneded !=NULL checks
We check for matching_attr!=NULL right before already.
This commit is contained in:
parent
8da23e9d0b
commit
3f642f3635
@ -1894,8 +1894,8 @@ gst_xvimagesink_xcontext_get (GstXvImageSink * xvimagesink)
|
|||||||
|
|
||||||
channel = g_object_new (GST_TYPE_COLOR_BALANCE_CHANNEL, NULL);
|
channel = g_object_new (GST_TYPE_COLOR_BALANCE_CHANNEL, NULL);
|
||||||
channel->label = g_strdup (channels[i]);
|
channel->label = g_strdup (channels[i]);
|
||||||
channel->min_value = matching_attr ? matching_attr->min_value : -1000;
|
channel->min_value = matching_attr->min_value;
|
||||||
channel->max_value = matching_attr ? matching_attr->max_value : 1000;
|
channel->max_value = matching_attr->max_value;
|
||||||
|
|
||||||
xcontext->channels_list = g_list_append (xcontext->channels_list,
|
xcontext->channels_list = g_list_append (xcontext->channels_list,
|
||||||
channel);
|
channel);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user