Move av_div_i()'s comments to the header file. The comments are unaltered.
authorPanagiotis Issaris <takis.issaris@uhasselt.be>
Sun, 4 Mar 2007 23:14:12 +0000 (23:14 +0000)
committerPanagiotis Issaris <takis.issaris@uhasselt.be>
Sun, 4 Mar 2007 23:14:12 +0000 (23:14 +0000)
Originally committed as revision 8227 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavutil/integer.c
libavutil/integer.h

index 1319615..bc2f58d 100644 (file)
@@ -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);
index 8278696..1f15225 100644 (file)
@@ -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);