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

libavutil/integer.c
libavutil/integer.h

index a47f8e2..837bee7 100644 (file)
@@ -140,9 +140,6 @@ AVInteger av_div_i(AVInteger a, AVInteger b){
     return quot;
 }
 
-/**
- * converts the given int64_t to an AVInteger.
- */
 AVInteger av_int2i(int64_t a){
     AVInteger out;
     int i;
index ce351fc..e39e026 100644 (file)
@@ -61,6 +61,10 @@ AVInteger av_mod_i(AVInteger *quot, AVInteger a, AVInteger b);
  * returns a/b.
  */
 AVInteger av_div_i(AVInteger a, AVInteger b);
+
+/**
+ * converts the given int64_t to an AVInteger.
+ */
 AVInteger av_int2i(int64_t a);
 int64_t av_i2int(AVInteger a);