| 
    FFmpeg
    
   | 
 
arbitrary precision integers More...
Go to the source code of this file.
Data Structures | |
| struct | AVInteger | 
Macros | |
| #define | AV_INTEGER_SIZE 8 | 
Functions | |
| AVInteger | av_add_i (AVInteger a, AVInteger b) av_const | 
| AVInteger | av_sub_i (AVInteger a, AVInteger b) av_const | 
| int | av_log2_i (AVInteger a) av_const | 
| Return the rounded-down value of the base 2 logarithm of the given AVInteger.  More... | |
| AVInteger | av_mul_i (AVInteger a, AVInteger b) av_const | 
| int | av_cmp_i (AVInteger a, AVInteger b) av_const | 
| Return 0 if a==b, 1 if a>b and -1 if a<b.  More... | |
| AVInteger | av_shr_i (AVInteger a, int s) av_const | 
| bitwise shift  More... | |
| AVInteger | av_mod_i (AVInteger *quot, AVInteger a, AVInteger b) | 
| Return a % b.  More... | |
| AVInteger | av_div_i (AVInteger a, AVInteger b) av_const | 
| Return a/b.  More... | |
| AVInteger | av_int2i (int64_t a) av_const | 
| Convert the given int64_t to an AVInteger.  More... | |
| int64_t | av_i2int (AVInteger a) av_const | 
| Convert the given AVInteger to an int64_t.  More... | |
arbitrary precision integers
Definition in file integer.h.
| #define AV_INTEGER_SIZE 8 | 
Definition at line 34 of file integer.h.
Referenced by av_add_i(), av_cmp_i(), av_i2int(), av_int2i(), av_log2_i(), av_mod_i(), av_mul_i(), av_shr_i(), and av_sub_i().
Definition at line 32 of file integer.c.
Referenced by av_rescale_rnd().
Definition at line 42 of file integer.c.
Referenced by av_mod_i().
| int av_log2_i | ( | AVInteger | a | ) | const | 
Return the rounded-down value of the base 2 logarithm of the given AVInteger.
This is simply the index of the most significant bit which is 1, or 0 if all bits are 0.
Definition at line 52 of file integer.c.
Referenced by av_mod_i(), and av_mul_i().
Definition at line 62 of file integer.c.
Referenced by av_rescale_rnd().
Return 0 if a==b, 1 if a>b and -1 if a<b.
Definition at line 83 of file integer.c.
Referenced by av_mod_i().
bitwise shift
| s | the number of bits by which the value should be shifted right, may be negative for shifting left | 
Definition at line 95 of file integer.c.
Referenced by av_mod_i().
Return a % b.
| quot | a/b will be stored here. | 
Definition at line 109 of file integer.c.
Referenced by av_div_i().
| AVInteger av_int2i | ( | int64_t | a | ) | const | 
Convert the given int64_t to an AVInteger.
Definition at line 139 of file integer.c.
Referenced by av_rescale_rnd().
 1.8.6