Commit 9375cdd5 authored by Panagiotis Issaris's avatar Panagiotis Issaris

Move av_div_i()'s comments to the header file. The comments are unaltered.

Originally committed as revision 8227 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 607da27c
......@@ -141,9 +141,6 @@ AVInteger av_mod_i(AVInteger *quot, AVInteger a, AVInteger b){
return a;
}
/**
* returns a/b.
*/
AVInteger av_div_i(AVInteger a, AVInteger b){
AVInteger quot;
av_mod_i(&quot, a, b);
......
......@@ -47,6 +47,10 @@ AVInteger av_shr_i(AVInteger a, int s);
* @param quot a/b will be stored here
*/
AVInteger av_mod_i(AVInteger *quot, AVInteger a, AVInteger b);
/**
* returns a/b.
*/
AVInteger av_div_i(AVInteger a, AVInteger b);
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