summaryrefslogtreecommitdiffstats
path: root/audio/fmt-conversion.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-11-15 21:25:05 +0100
committerwm4 <wm4@nowhere>2013-11-15 21:25:05 +0100
commit514c4547702a01adb6f9e6274c40a77c7c511339 (patch)
treec307d2d60094521cee703cbe9510f0ff9037e96b /audio/fmt-conversion.c
parent2289a479b174efa062fab84a66075b49f27c804d (diff)
downloadmpv-514c4547702a01adb6f9e6274c40a77c7c511339.tar.bz2
mpv-514c4547702a01adb6f9e6274c40a77c7c511339.tar.xz
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.
Diffstat (limited to 'audio/fmt-conversion.c')
-rw-r--r--audio/fmt-conversion.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/audio/fmt-conversion.c b/audio/fmt-conversion.c
index 93fda3eaa0..da770a8eda 100644
--- a/audio/fmt-conversion.c
+++ b/audio/fmt-conversion.c
@@ -27,10 +27,10 @@ static const struct {
int fmt;
} audio_conversion_map[] = {
{AV_SAMPLE_FMT_U8, AF_FORMAT_U8},
- {AV_SAMPLE_FMT_S16, AF_FORMAT_S16_NE},
- {AV_SAMPLE_FMT_S32, AF_FORMAT_S32_NE},
- {AV_SAMPLE_FMT_FLT, AF_FORMAT_FLOAT_NE},
- {AV_SAMPLE_FMT_DBL, AF_FORMAT_DOUBLE_NE},
+ {AV_SAMPLE_FMT_S16, AF_FORMAT_S16},
+ {AV_SAMPLE_FMT_S32, AF_FORMAT_S32},
+ {AV_SAMPLE_FMT_FLT, AF_FORMAT_FLOAT},
+ {AV_SAMPLE_FMT_DBL, AF_FORMAT_DOUBLE},
{AV_SAMPLE_FMT_U8P, AF_FORMAT_U8P},
{AV_SAMPLE_FMT_S16P, AF_FORMAT_S16P},