ac3parse: Fix unitialized variable.

This commit is contained in:
Edward Hervey 2009-12-18 13:01:17 +01:00 committed by Tim-Philipp Müller
parent d461f7529b
commit be9c6045d0

View file

@ -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");