mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-25 18:14:15 +00:00
applemedia: vtdec: fix compiler warning (uninitialized variable)
This commit is contained in:
parent
00392a6d16
commit
de60453a33
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ static gboolean
|
||||||
gst_vtdec_set_format (GstVideoDecoder * decoder, GstVideoCodecState * state)
|
gst_vtdec_set_format (GstVideoDecoder * decoder, GstVideoCodecState * state)
|
||||||
{
|
{
|
||||||
GstStructure *structure;
|
GstStructure *structure;
|
||||||
CMVideoCodecType cm_format;
|
CMVideoCodecType cm_format = 0;
|
||||||
CMFormatDescriptionRef format_description = NULL;
|
CMFormatDescriptionRef format_description = NULL;
|
||||||
const char *caps_name;
|
const char *caps_name;
|
||||||
GstVtdec *vtdec = GST_VTDEC (decoder);
|
GstVtdec *vtdec = GST_VTDEC (decoder);
|
||||||
|
|
Loading…
Reference in a new issue