Move av_mod_i()'s comment to the header file. The moved comment is unmodified.

Originally committed as revision 8226 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Panagiotis Issaris
2007-03-04 23:10:38 +00:00
parent 3ec9a7873f
commit 607da27c64
2 changed files with 5 additions and 4 deletions

View File

@@ -117,10 +117,6 @@ AVInteger av_shr_i(AVInteger a, int s){
return out;
}
/**
* returns a % b.
* @param quot a/b will be stored here
*/
AVInteger av_mod_i(AVInteger *quot, AVInteger a, AVInteger b){
int i= av_log2_i(a) - av_log2_i(b);
AVInteger quot_temp;