Go to the source code of this file.
arbitrary precision integers
Definition in file integer.h.
Definition at line 36 of file integer.c.
Referenced by av_rescale_rnd(), calculate_bitrate(), and main().
Definition at line 46 of file integer.c.
Referenced by av_mod_i(), and main().
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 56 of file integer.c.
Referenced by av_mod_i(), av_mul_i(), and main().
Definition at line 66 of file integer.c.
Referenced by av_rescale_rnd(), calculate_bitrate(), and main().
Return 0 if a==b, 1 if a>b and -1 if a<b.
Definition at line 87 of file integer.c.
Referenced by av_mod_i(), calculate_bitrate(), and main().
bitwise shift
Definition at line 99 of file integer.c.
Referenced by av_mod_i(), calculate_bitrate(), and main().
Return a % b.
Definition at line 113 of file integer.c.
Referenced by av_div_i(), and av_mod_i().
Return a/b.
Definition at line 143 of file integer.c.
Referenced by av_rescale_rnd(), calculate_bitrate(), and main().
Convert the given int64_t to an AVInteger.
Definition at line 149 of file integer.c.
Referenced by av_rescale_rnd(), calculate_bitrate(), and main().
Convert the given AVInteger to an int64_t.
If the AVInteger is too large to fit into an int64_t, then only the least significant 64 bits will be used.
Definition at line 160 of file integer.c.
Referenced by av_rescale_rnd(), calculate_bitrate(), and main().