mirror of
https://github.com/mpv-player/mpv
synced 2025-04-04 23:40:47 +00:00
audio/filter: actually set fmt_in/fmt_out fields
This commit is contained in:
parent
f6a0a1554c
commit
9c974b2a1b
@ -531,6 +531,7 @@ static int af_reinit(struct af_stream *s)
|
|||||||
if (!mp_audio_config_valid(&in))
|
if (!mp_audio_config_valid(&in))
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
|
af->fmt_in = in;
|
||||||
int rv = af->control(af, AF_CONTROL_REINIT, &in);
|
int rv = af->control(af, AF_CONTROL_REINIT, &in);
|
||||||
if (rv == AF_OK && !mp_audio_config_equals(&in, af->prev->data))
|
if (rv == AF_OK && !mp_audio_config_equals(&in, af->prev->data))
|
||||||
rv = AF_FALSE; // conversion filter needed
|
rv = AF_FALSE; // conversion filter needed
|
||||||
@ -538,6 +539,7 @@ static int af_reinit(struct af_stream *s)
|
|||||||
case AF_OK:
|
case AF_OK:
|
||||||
if (!mp_audio_config_valid(af->data))
|
if (!mp_audio_config_valid(af->data))
|
||||||
goto error;
|
goto error;
|
||||||
|
af->fmt_out = *af->data;
|
||||||
af = af->next;
|
af = af->next;
|
||||||
break;
|
break;
|
||||||
case AF_FALSE: { // Configuration filter is needed
|
case AF_FALSE: { // Configuration filter is needed
|
||||||
|
Loading…
Reference in New Issue
Block a user