You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/dcadec: dont use hex float, msvc doesnt support it
Found-by: nevcairiel Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -2107,7 +2107,8 @@ static float dca_dmix_code(unsigned code)
|
||||
{
|
||||
int sign = (code >> 8) - 1;
|
||||
code &= 0xff;
|
||||
return ((dca_dmixtable[code] ^ sign) - sign) * 0x1p-15;
|
||||
#define POW2_MINUS15 .000030517578125
|
||||
return ((dca_dmixtable[code] ^ sign) - sign) * POW2_MINUS15;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user