vdpau: Fix uninitialized variable compiler warning

This commit is contained in:
Sebastian Dröge 2011-04-09 13:40:37 +02:00
parent eaf01f9709
commit e30f89fdef

View file

@ -168,8 +168,7 @@ gst_vdp_h264_dec_calculate_poc (GstVdpH264Dec * h264_dec, GstH264Slice * slice)
{
GstH264Picture *pic;
GstH264Sequence *seq;
guint poc;
guint poc = 0;
pic = slice->picture;
seq = pic->sequence;