summaryrefslogtreecommitdiff
path: root/libavutil/integer.c
diff options
context:
space:
mode:
authorPanagiotis Issaris <takis.issaris@uhasselt.be>2007-03-04 23:10:38 +0000
committerPanagiotis Issaris <takis.issaris@uhasselt.be>2007-03-04 23:10:38 +0000
commit607da27c64805195eea51efa896bfad8b624c217 (patch)
tree41c4a2fdc92e28857853b7e007bb5fd5df1a1ab7 /libavutil/integer.c
parent3ec9a7873f69dc9cb57d585bc83a879f8b05833d (diff)
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
Diffstat (limited to 'libavutil/integer.c')
-rw-r--r--libavutil/integer.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavutil/integer.c b/libavutil/integer.c
index 09cd756e24..1319615572 100644
--- a/libavutil/integer.c
+++ b/libavutil/integer.c
@@ -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;