flacparse: ignore bad headers if we have a valid STREAMINFO header

If we run into any header parsing issues and we have a valid
STREAMINFO header already, don't error out, but just stop
header parsing and try to find some audio frames.

https://bugzilla.gnome.org/show_bug.cgi?id=684701
This commit is contained in:
Tim-Philipp Müller 2012-10-23 13:45:17 +01:00
parent 49cc719809
commit 7c41f42eec

View file

@ -1551,7 +1551,13 @@ gst_flac_parse_parse_frame (GstBaseParse * parse, GstBaseParseFrame * frame,
GST_MEMDUMP_OBJECT (parse, "bad header data", map.data, size);
gst_buffer_unref (sbuffer);
/* error out unless we have a STREAMINFO header */
if (flacparse->samplerate == 0 || flacparse->bps == 0)
goto header_parsing_error;
/* .. in which case just stop header parsing and try to find audio */
is_last = TRUE;
}
if (is_last) {