mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 01:31:03 +00:00
encodebin: silence a maybe-unitialized warning
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7875>
This commit is contained in:
parent
741f935bbf
commit
bf22f282eb
1 changed files with 1 additions and 1 deletions
|
@ -1133,7 +1133,7 @@ static inline GstPad *
|
||||||
get_compatible_muxer_sink_pad (GstEncodeBaseBin * ebin,
|
get_compatible_muxer_sink_pad (GstEncodeBaseBin * ebin,
|
||||||
GstEncodingProfile * sprof, GstCaps * sinkcaps)
|
GstEncodingProfile * sprof, GstCaps * sinkcaps)
|
||||||
{
|
{
|
||||||
GstPad *sinkpad;
|
GstPad *sinkpad = NULL;
|
||||||
GList *padl, *compatible_templates = NULL;
|
GList *padl, *compatible_templates = NULL;
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (ebin, "Finding muxer pad for caps: %" GST_PTR_FORMAT,
|
GST_DEBUG_OBJECT (ebin, "Finding muxer pad for caps: %" GST_PTR_FORMAT,
|
||||||
|
|
Loading…
Reference in a new issue