From 607da27c64805195eea51efa896bfad8b624c217 Mon Sep 17 00:00:00 2001 From: Panagiotis Issaris Date: Sun, 4 Mar 2007 23:10:38 +0000 Subject: 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 --- libavutil/integer.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'libavutil/integer.c') 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; -- cgit v1.2.3