mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-30 11:08:34 +00:00
ac3parse: fix scanning for next syncword
This commit is contained in:
parent
fd848904f9
commit
d283a44302
1 changed files with 1 additions and 1 deletions
|
@ -397,7 +397,7 @@ gst_ac3_parse_check_valid_frame (GstBaseParse * parse, GstBuffer * buf,
|
||||||
|
|
||||||
/* didn't find anything that looks like a sync word, skip */
|
/* didn't find anything that looks like a sync word, skip */
|
||||||
if (off < 0) {
|
if (off < 0) {
|
||||||
*skipsize = GST_BUFFER_SIZE (buf) - 2;
|
*skipsize = GST_BUFFER_SIZE (buf) - 3;
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue