summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-10-22 01:01:07 +0200
committerwm4 <wm4@nowhere>2013-11-02 19:01:04 +0100
commit132528ff67464f9b56948c4d7a8c1462295487b9 (patch)
tree987a9c27ef2c8573d00c89273dc101785806cc34 /audio
parentefc32ac0dfb0e44f1bb7ba180aa690e9fe60a0b8 (diff)
downloadmpv-132528ff67464f9b56948c4d7a8c1462295487b9.tar.bz2
mpv-132528ff67464f9b56948c4d7a8c1462295487b9.tar.xz
ao_pcm: big endian AC3 in wav doesn't work
At least not with ffmpeg. Honestly, I have no idea how little endian AC3 works at all, since ao_pcm doesn't do anything special about it, and treats it like s16le. Maybe it's broken and ffmpeg has special logic to detect it.
Diffstat (limited to 'audio')
-rw-r--r--audio/out/ao_pcm.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/audio/out/ao_pcm.c b/audio/out/ao_pcm.c
index b1e3a79708..7b5bc3e3dc 100644
--- a/audio/out/ao_pcm.c
+++ b/audio/out/ao_pcm.c
@@ -125,7 +125,6 @@ static int init(struct ao *ao)
case AF_FORMAT_S24_LE:
case AF_FORMAT_S32_LE:
case AF_FORMAT_FLOAT_LE:
- case AF_FORMAT_AC3_BE:
case AF_FORMAT_AC3_LE:
break;
default: