Go to the source code of this file.
Definition at line 32 of file coverity.c.
Definition at line 34 of file coverity.c.
Enumerator | |
---|---|
AV_ROUND_ZERO | Round toward zero. |
AV_ROUND_INF | Round away from zero. |
AV_ROUND_DOWN | Round toward -infinity. |
AV_ROUND_UP | Round toward +infinity. |
AV_ROUND_NEAR_INF | Round to nearest and halfway cases away from zero. |
AV_ROUND_PASS_MINMAX | Flag telling rescaling functions to pass Unlike other values of the enumeration AVRounding, this value is a bitmask that must be used in conjunction with another value of the enumeration through a bitwise OR, in order to set behavior for normal cases. // Rescaling 3:
// Calculating 3 * 1 / 2
// 3 / 2 is rounded up to 2
// => 2
// Rescaling AV_NOPTS_VALUE:
// AV_NOPTS_VALUE == INT64_MIN
// AV_NOPTS_VALUE is passed through
// => AV_NOPTS_VALUE
|
AV_ROUND_ZERO | |
AV_ROUND_INF | |
AV_ROUND_DOWN | |
AV_ROUND_UP | |
AV_ROUND_NEAR_INF | |
AV_ROUND_PASS_MINMAX |
Definition at line 36 of file coverity.c.