mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-30 04:00:37 +00:00
ac3parse: Fix unitialized variable.
This commit is contained in:
parent
87bfdef683
commit
83c7b38a10
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);
|
drain = gst_base_parse_get_drain (parse);
|
||||||
|
|
||||||
if (!sync && !drain) {
|
if (!sync && !drain) {
|
||||||
guint16 word;
|
guint16 word = 0;
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (ac3parse, "resyncing; checking next frame syncword");
|
GST_DEBUG_OBJECT (ac3parse, "resyncing; checking next frame syncword");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue