mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avutil/softfloat: Fix sign error in and improve documentation of av_int2sf()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 6019d721d4
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
0d19167a65
commit
cefbc513ea
@ -177,8 +177,10 @@ static inline av_const SoftFloat av_sub_sf(SoftFloat a, SoftFloat b){
|
|||||||
//FIXME log, exp, pow
|
//FIXME log, exp, pow
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Converts a mantisse and exponent to a SoftFloat
|
* Converts a mantisse and exponent to a SoftFloat.
|
||||||
* @returns a SoftFloat with value v * 2^frac_bits
|
* This converts a fixed point value v with frac_bits fractional bits to a
|
||||||
|
* SoftFloat.
|
||||||
|
* @returns a SoftFloat with value v * 2^-frac_bits
|
||||||
*/
|
*/
|
||||||
static inline av_const SoftFloat av_int2sf(int v, int frac_bits){
|
static inline av_const SoftFloat av_int2sf(int v, int frac_bits){
|
||||||
int exp_offset = 0;
|
int exp_offset = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user