mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
@@ -188,13 +188,6 @@ static struct ao *ao_create(bool probing, struct mpv_global *global,
|
||||
ao->device_buffer = ao->driver->get_space(ao);
|
||||
MP_VERBOSE(ao, "device buffer: %d samples.\n", ao->device_buffer);
|
||||
}
|
||||
|
||||
if (ao->device_buffer <= 0) {
|
||||
MP_FATAL(ao, "Couldn't probe device buffer size.\n");
|
||||
ao->driver->uninit(ao);
|
||||
goto error;
|
||||
}
|
||||
|
||||
ao->buffer = MPMAX(ao->device_buffer, ao->def_buffer * ao->samplerate);
|
||||
MP_VERBOSE(ao, "using soft-buffer of %d samples.\n", ao->buffer);
|
||||
|
||||
|
||||
@@ -394,6 +394,11 @@ static int init(struct ao *ao)
|
||||
pthread_cond_init(&p->wakeup_drain, NULL);
|
||||
mp_make_wakeup_pipe(p->wakeup_pipe);
|
||||
|
||||
if (ao->device_buffer <= 0) {
|
||||
MP_FATAL(ao, "Couldn't probe device buffer size.\n");
|
||||
goto err;
|
||||
}
|
||||
|
||||
p->buffer = mp_audio_buffer_create(ao);
|
||||
mp_audio_buffer_reinit_fmt(p->buffer, ao->format,
|
||||
&ao->channels, ao->samplerate);
|
||||
|
||||
Reference in New Issue
Block a user