mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
audio/videodecoder: Minor cleanup of last commit
https://bugzilla.gnome.org/show_bug.cgi?id=761218
This commit is contained in:
parent
15df3c812b
commit
dfa2f49523
2 changed files with 6 additions and 10 deletions
|
@ -1960,13 +1960,11 @@ gst_audio_decoder_negotiate_default_caps (GstAudioDecoder * dec)
|
|||
|
||||
templcaps = gst_pad_get_pad_template_caps (dec->srcpad);
|
||||
caps = gst_pad_peer_query_caps (dec->srcpad, templcaps);
|
||||
if (caps) {
|
||||
if (caps)
|
||||
gst_caps_unref (templcaps);
|
||||
templcaps = NULL;
|
||||
} else {
|
||||
else
|
||||
caps = templcaps;
|
||||
templcaps = NULL;
|
||||
}
|
||||
templcaps = NULL;
|
||||
|
||||
if (!caps || gst_caps_is_empty (caps) || gst_caps_is_any (caps))
|
||||
goto caps_error;
|
||||
|
|
|
@ -1098,13 +1098,11 @@ gst_video_decoder_negotiate_default_caps (GstVideoDecoder * decoder)
|
|||
|
||||
templcaps = gst_pad_get_pad_template_caps (decoder->srcpad);
|
||||
caps = gst_pad_peer_query_caps (decoder->srcpad, templcaps);
|
||||
if (caps) {
|
||||
if (caps)
|
||||
gst_caps_unref (templcaps);
|
||||
templcaps = NULL;
|
||||
} else {
|
||||
else
|
||||
caps = templcaps;
|
||||
templcaps = NULL;
|
||||
}
|
||||
templcaps = NULL;
|
||||
|
||||
if (!caps || gst_caps_is_empty (caps) || gst_caps_is_any (caps))
|
||||
goto caps_error;
|
||||
|
|
Loading…
Reference in a new issue