1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-03 05:22:23 +00:00

af_rubberband: actually fix deadlock

371e5d0 missed this one
This commit is contained in:
Martin Herkt 2015-02-12 10:12:29 +01:00
parent 371e5d0665
commit a17ea73636

View File

@ -105,7 +105,7 @@ static int filter_out(struct af_instance *af)
{
struct priv *p = af->priv;
while (!rubberband_available(p->rubber)) {
while (rubberband_available(p->rubber) <= 0) {
const float *dummy[MP_NUM_CHANNELS] = {0};
const float **in_data = dummy;
size_t in_samples = 0;