From 514c4547702a01adb6f9e6274c40a77c7c511339 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 15 Nov 2013 21:25:05 +0100 Subject: audio: drop "_NE"/"ne" suffix from audio formats You get the native format by not appending any suffix to the format. This change includes user-facing names, e.g. for the --format option. --- audio/filter/af_hrtf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'audio/filter/af_hrtf.c') diff --git a/audio/filter/af_hrtf.c b/audio/filter/af_hrtf.c index ed51351750..bfb619b040 100644 --- a/audio/filter/af_hrtf.c +++ b/audio/filter/af_hrtf.c @@ -311,7 +311,7 @@ static int control(struct af_instance *af, int cmd, void* arg) } else if (af->data->nch < 5) mp_audio_set_channels_old(af->data, 5); - mp_audio_set_format(af->data, AF_FORMAT_S16_NE); + mp_audio_set_format(af->data, AF_FORMAT_S16); test_output_res = af_test_output(af, (struct mp_audio*)arg); // after testing input set the real output format mp_audio_set_num_channels(af->data, 2); -- cgit v1.2.3