summaryrefslogtreecommitdiffstats
path: root/audio/filter/af_channels.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio/filter/af_channels.c')
-rw-r--r--audio/filter/af_channels.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/filter/af_channels.c b/audio/filter/af_channels.c
index f77807a1af..d544e4d9c0 100644
--- a/audio/filter/af_channels.c
+++ b/audio/filter/af_channels.c
@@ -201,11 +201,11 @@ static int control(struct af_instance* af, int cmd, void* arg)
struct mp_chmap chmap;
mp_chmap_from_channels(&chmap, nch);
- if (AF_OK != af->control(af, AF_CONTROL_CHANNELS | AF_CONTROL_SET, &chmap))
+ if (AF_OK != af->control(af, AF_CONTROL_SET_CHANNELS, &chmap))
return AF_ERROR;
return AF_OK;
}
- case AF_CONTROL_CHANNELS | AF_CONTROL_SET:
+ case AF_CONTROL_SET_CHANNELS:
// Reinit must be called after this function has been called
mp_audio_set_channels(af->data, (struct mp_chmap *)arg);