mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
multifdsink: fix error in sync-method
Multifdsink did not handle sync-method=latest-keyframe correctly when the soft-limit is set to -1 (unlimited). Fixes #578583.
This commit is contained in:
parent
251f152c20
commit
1beabc48e8
1 changed files with 4 additions and 3 deletions
|
@ -2309,11 +2309,12 @@ restart:
|
|||
GstBuffer *buf;
|
||||
|
||||
/* no point in searching beyond the soft-max if any. */
|
||||
if (soft_max_buffers) {
|
||||
if (soft_max_buffers > 0) {
|
||||
limit = MIN (limit, soft_max_buffers);
|
||||
}
|
||||
GST_LOG_OBJECT (sink, "extending queue to include sync point, now at %d",
|
||||
max_buffer_usage);
|
||||
GST_LOG_OBJECT (sink,
|
||||
"extending queue to include sync point, now at %d, limit is %d",
|
||||
max_buffer_usage, limit);
|
||||
for (i = 0; i < limit; i++) {
|
||||
buf = g_array_index (sink->bufqueue, GstBuffer *, i);
|
||||
if (is_sync_frame (sink, buf)) {
|
||||
|
|
Loading…
Reference in a new issue