Searched defs:FLAC__fixedpoint (Results 1 - 1 of 1) sorted by relevance

/external/flac/libFLAC/include/private/
H A Dfloat.h60 * The convention for FLAC__fixedpoint is to use the upper 16 bits
63 typedef FLAC__int32 FLAC__fixedpoint; typedef
64 extern const FLAC__fixedpoint FLAC__FP_ZERO;
65 extern const FLAC__fixedpoint FLAC__FP_ONE_HALF;
66 extern const FLAC__fixedpoint FLAC__FP_ONE;
67 extern const FLAC__fixedpoint FLAC__FP_LN2;
68 extern const FLAC__fixedpoint FLAC__FP_E;
72 #define FLAC__fixedpoint_mul(x, y) ( (FLAC__fixedpoint) ( ((FLAC__int64)(x)*(FLAC__int64)(y)) >> 16 ) )
74 #define FLAC__fixedpoint_div(x, y) ( (FLAC__fixedpoint) ( ( ((FLAC__int64)(x)<<32) / (FLAC__int64)(y) ) >> 16 ) )

Completed in 21 milliseconds