mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 17:20:36 +00:00
ac3parse: Fix unitialized variable.
This commit is contained in:
parent
d461f7529b
commit
be9c6045d0
1 changed files with 1 additions and 1 deletions
|
@ -420,7 +420,7 @@ gst_ac3_parse_check_valid_frame (GstBaseParse * parse, GstBuffer * buf,
|
|||
drain = gst_base_parse_get_drain (parse);
|
||||
|
||||
if (!sync && !drain) {
|
||||
guint16 word;
|
||||
guint16 word = 0;
|
||||
|
||||
GST_DEBUG_OBJECT (ac3parse, "resyncing; checking next frame syncword");
|
||||
|
||||
|
|
Loading…
Reference in a new issue