From 132528ff67464f9b56948c4d7a8c1462295487b9 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 22 Oct 2013 01:01:07 +0200 Subject: 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. --- audio/out/ao_pcm.c | 1 - 1 file changed, 1 deletion(-) (limited to 'audio') 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: -- cgit v1.2.3