From aabe73387ae8f8ee2aee87496e54136e20e3f7dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 15 Apr 2010 21:38:54 +0200 Subject: [PATCH] vdpau: Initialize possibly uninitialized variable --- sys/vdpau/gstvdpvideopostprocess.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/vdpau/gstvdpvideopostprocess.c b/sys/vdpau/gstvdpvideopostprocess.c index b2cace4847..9f762ca965 100644 --- a/sys/vdpau/gstvdpvideopostprocess.c +++ b/sys/vdpau/gstvdpvideopostprocess.c @@ -175,7 +175,7 @@ static VdpVideoMixerFeature gst_vdp_feature_from_deinterlace_method (GstVdpDeinterlaceMethods method) { gint i; - VdpVideoMixerFeature feature; + VdpVideoMixerFeature feature = 0; typedef struct { @@ -183,7 +183,7 @@ gst_vdp_feature_from_deinterlace_method (GstVdpDeinterlaceMethods method) VdpVideoMixerFeature feature; } VdpDeinterlaceMethod; - VdpDeinterlaceMethod deinterlace_methods[2] = { + static const VdpDeinterlaceMethod deinterlace_methods[] = { {GST_VDP_DEINTERLACE_METHOD_TEMPORAL, VDP_VIDEO_MIXER_FEATURE_DEINTERLACE_TEMPORAL}, {GST_VDP_DEINTERLACE_METHOD_TEMPORAL_SPATIAL,