mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
applemedia: vtdec: fix uninitialized variable warning
This commit is contained in:
parent
1491d02c4e
commit
8a171754e5
1 changed files with 1 additions and 1 deletions
|
@ -444,7 +444,7 @@ gst_vtdec_create_session (GstVtdec * vtdec, GstVideoFormat format)
|
|||
VTDecompressionOutputCallbackRecord callback;
|
||||
CFMutableDictionaryRef videoDecoderSpecification;
|
||||
OSStatus status;
|
||||
guint32 cv_format;
|
||||
guint32 cv_format = 0;
|
||||
|
||||
switch (format) {
|
||||
case GST_VIDEO_FORMAT_NV12:
|
||||
|
|
Loading…
Reference in a new issue