mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
audiobuffersplit: Update output buffer size after each buffer to compensate for accumulated errors
https://bugzilla.gnome.org/show_bug.cgi?id=796981
This commit is contained in:
parent
ff952374b5
commit
186870d10a
1 changed files with 7 additions and 0 deletions
|
@ -385,6 +385,13 @@ gst_audio_buffer_split_output (GstAudioBufferSplit * self, gboolean force,
|
|||
ret = gst_pad_push (self->srcpad, buffer);
|
||||
if (ret != GST_FLOW_OK)
|
||||
break;
|
||||
|
||||
/* Update the size based on the accumulated error we have now after
|
||||
* taking out a buffer. Same code as above */
|
||||
size = samples_per_buffer * bpf;
|
||||
if (self->error_per_buffer + self->accumulated_error >=
|
||||
self->output_buffer_duration_d)
|
||||
size += bpf;
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
|
Loading…
Reference in a new issue