mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
parent
c3678a5384
commit
4a7f899f6e
1 changed files with 5 additions and 1 deletions
|
@ -588,8 +588,12 @@ gst_flac_parse_frame_is_valid (GstFlacParse * flacparse, GstBuffer * buffer,
|
||||||
goto need_more;
|
goto need_more;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* mind unknown framesize */
|
||||||
search_start = MAX (2, flacparse->min_framesize);
|
search_start = MAX (2, flacparse->min_framesize);
|
||||||
search_end = MIN (size, flacparse->max_framesize + 9 + 2);
|
if (flacparse->max_framesize)
|
||||||
|
search_end = MIN (size, flacparse->max_framesize + 9 + 2);
|
||||||
|
else
|
||||||
|
search_end = size;
|
||||||
search_end -= 2;
|
search_end -= 2;
|
||||||
|
|
||||||
remaining = size;
|
remaining = size;
|
||||||
|
|
Loading…
Reference in a new issue