mirror of https://github.com/mpv-player/mpv
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.
This commit is contained in:
parent
efc32ac0df
commit
132528ff67
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue