mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
vdpau: Fix uninitialized variable compiler warning
This commit is contained in:
parent
eaf01f9709
commit
e30f89fdef
1 changed files with 1 additions and 2 deletions
|
@ -168,8 +168,7 @@ gst_vdp_h264_dec_calculate_poc (GstVdpH264Dec * h264_dec, GstH264Slice * slice)
|
||||||
{
|
{
|
||||||
GstH264Picture *pic;
|
GstH264Picture *pic;
|
||||||
GstH264Sequence *seq;
|
GstH264Sequence *seq;
|
||||||
|
guint poc = 0;
|
||||||
guint poc;
|
|
||||||
|
|
||||||
pic = slice->picture;
|
pic = slice->picture;
|
||||||
seq = pic->sequence;
|
seq = pic->sequence;
|
||||||
|
|
Loading…
Reference in a new issue