Go to the source code of this file.
Macros
#define
M_E 2.7182818284590452354 /* e */
#define
M_Ef 2.7182818284590452354
f /* e */
#define
M_LN2 0.69314718055994530942 /* log_e 2 */
#define
M_LN2f 0.69314718055994530942
f /* log_e 2 */
#define
M_LN10 2.30258509299404568402 /* log_e 10 */
#define
M_LN10f 2.30258509299404568402
f /* log_e 10 */
#define
M_LOG2_10 3.32192809488736234787 /* log_2 10 */
#define
M_LOG2_10f 3.32192809488736234787
f /* log_2 10 */
#define
M_PHI 1.61803398874989484820 /* phi / golden ratio */
#define
M_PHIf 1.61803398874989484820f /* phi / golden ratio */
#define
M_PI 3.14159265358979323846 /* pi */
#define
M_PIf 3.14159265358979323846
f /* pi */
#define
M_PI_2 1.57079632679489661923 /* pi/2 */
#define
M_PI_2f 1.57079632679489661923
f /* pi/2 */
#define
M_PI_4 0.78539816339744830962 /* pi/4 */
#define
M_PI_4f 0.78539816339744830962
f /* pi/4 */
#define
M_1_PI 0.31830988618379067154 /* 1/pi */
#define
M_1_PIf 0.31830988618379067154
f /* 1/pi */
#define
M_2_PI 0.63661977236758134308 /* 2/pi */
#define
M_2_PIf 0.63661977236758134308
f /* 2/pi */
#define
M_2_SQRTPI 1.12837916709551257390 /* 2/sqrt(pi) */
#define
M_2_SQRTPIf 1.12837916709551257390f /* 2/sqrt(pi) */
#define
M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
#define
M_SQRT1_2f 0.70710678118654752440f /* 1/sqrt(2) */
#define
M_SQRT2 1.41421356237309504880 /* sqrt(2) */
#define
M_SQRT2f 1.41421356237309504880f /* sqrt(2) */
Enumerations
enum
AVRounding {
AV_ROUND_ZERO = 0,
AV_ROUND_INF = 1,
AV_ROUND_DOWN = 2,
AV_ROUND_UP = 3,
AV_ROUND_NEAR_INF = 5,
AV_ROUND_PASS_MINMAX = 8192,
AV_ROUND_ZERO = 0,
AV_ROUND_INF = 1,
AV_ROUND_DOWN = 2,
AV_ROUND_UP = 3,
AV_ROUND_NEAR_INF = 5,
AV_ROUND_PASS_MINMAX = 8192
}
Functions
Compute the greatest common divisor of two integer operands.
More...
Rescale a 64-bit integer with rounding to nearest.
More...
Rescale a 64-bit integer with specified rounding.
More...
Rescale a 64-bit integer by 2 rational numbers.
More...
Rescale a 64-bit integer by 2 rational numbers with specified rounding.
More...
Compare two timestamps each in its own time base.
More...
Compare the remainders of two integer operands divided by a common divisor.
More...
Rescale a timestamp while preserving known durations.
More...
Add a value to a timestamp.
More...
0th order modified bessel function of the first kind.
More...
Macro Definition Documentation
◆ M_E
#define M_E 2.7182818284590452354 /* e */
◆ M_Ef
#define M_Ef 2.7182818284590452354
f /* e */
◆ M_LN2
#define M_LN2 0.69314718055994530942 /* log_e 2 */
◆ M_LN2f
#define M_LN2f 0.69314718055994530942
f /* log_e 2 */
◆ M_LN10
#define M_LN10 2.30258509299404568402 /* log_e 10 */
◆ M_LN10f
#define M_LN10f 2.30258509299404568402
f /* log_e 10 */
◆ M_LOG2_10
#define M_LOG2_10 3.32192809488736234787 /* log_2 10 */
◆ M_LOG2_10f
#define M_LOG2_10f 3.32192809488736234787
f /* log_2 10 */
◆ M_PHI
#define M_PHI 1.61803398874989484820 /* phi / golden ratio */
◆ M_PHIf
#define M_PHIf 1.61803398874989484820f /* phi / golden ratio */
◆ M_PI
#define M_PI 3.14159265358979323846 /* pi */
◆ M_PIf
#define M_PIf 3.14159265358979323846
f /* pi */
◆ M_PI_2
#define M_PI_2 1.57079632679489661923 /* pi/2 */
◆ M_PI_2f
#define M_PI_2f 1.57079632679489661923
f /* pi/2 */
◆ M_PI_4
#define M_PI_4 0.78539816339744830962 /* pi/4 */
◆ M_PI_4f
#define M_PI_4f 0.78539816339744830962
f /* pi/4 */
◆ M_1_PI
#define M_1_PI 0.31830988618379067154 /* 1/pi */
◆ M_1_PIf
#define M_1_PIf 0.31830988618379067154
f /* 1/pi */
◆ M_2_PI
#define M_2_PI 0.63661977236758134308 /* 2/pi */
◆ M_2_PIf
#define M_2_PIf 0.63661977236758134308
f /* 2/pi */
◆ M_2_SQRTPI
#define M_2_SQRTPI 1.12837916709551257390 /* 2/sqrt(pi) */
◆ M_2_SQRTPIf
#define M_2_SQRTPIf 1.12837916709551257390f /* 2/sqrt(pi) */
◆ M_SQRT1_2
#define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
◆ M_SQRT1_2f
#define M_SQRT1_2f 0.70710678118654752440f /* 1/sqrt(2) */
◆ M_SQRT2
#define M_SQRT2 1.41421356237309504880 /* sqrt(2) */
◆ M_SQRT2f
#define M_SQRT2f 1.41421356237309504880f /* sqrt(2) */
◆ NAN
◆ INFINITY