Commit fe2dbce5 authored by takis's avatar takis

Move av_int2i()'s unaltered comments to the header file.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8230 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4cd191b8
......@@ -140,9 +140,6 @@ AVInteger av_div_i(AVInteger a, AVInteger b){
return quot;
}
/**
* converts the given int64_t to an AVInteger.
*/
AVInteger av_int2i(int64_t a){
AVInteger out;
int i;
......
......@@ -61,6 +61,10 @@ AVInteger av_mod_i(AVInteger *quot, AVInteger a, AVInteger b);
* returns a/b.
*/
AVInteger av_div_i(AVInteger a, AVInteger b);
/**
* converts the given int64_t to an AVInteger.
*/
AVInteger av_int2i(int64_t a);
int64_t av_i2int(AVInteger a);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment