vdpau: Fix a compiler warning about uninitialised variable use.

This commit is contained in:
Jan Schmidt 2009-07-15 16:17:35 +01:00
parent fac1dbab6e
commit aba7cfa064

View File

@ -172,7 +172,8 @@ gst_vdp_mpeg_dec_set_caps (GstPad * pad, GstCaps * caps)
gboolean res; gboolean res;
const GValue *value; const GValue *value;
VdpDecoderProfile profile; /* Default to MPEG1 until we find otherwise */
VdpDecoderProfile profile = VDP_DECODER_PROFILE_MPEG1;
GstVdpDevice *device; GstVdpDevice *device;
VdpStatus status; VdpStatus status;
@ -210,8 +211,6 @@ gst_vdp_mpeg_dec_set_caps (GstPad * pad, GstCaps * caps)
/* parse caps to setup decoder */ /* parse caps to setup decoder */
gst_structure_get_int (structure, "mpegversion", &mpeg_dec->version); gst_structure_get_int (structure, "mpegversion", &mpeg_dec->version);
if (mpeg_dec->version == 1)
profile = VDP_DECODER_PROFILE_MPEG1;
value = gst_structure_get_value (structure, "codec_data"); value = gst_structure_get_value (structure, "codec_data");
if (value) { if (value) {