1
mirror of https://github.com/mpv-player/mpv synced 2025-01-05 03:06:28 +01:00

Adding support for AFMT_FLOAT

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8234 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
anders 2002-11-19 00:42:00 +00:00
parent 30751c6025
commit ad91040301

View File

@ -32,6 +32,8 @@ int af_format_decode(int ifmt)
ofmt = AF_FORMAT_MPEG2; break;
case(AFMT_AC3):
ofmt = AF_FORMAT_AC3; break;
case(AFMT_FLOAT):
ofmt = AF_FORMAT_F; break;
default:
//This can not happen ....
af_msg(AF_MSG_FATAL,"Unrecognized input audio format %i\n",ifmt);