[Ffmpeg-cvslog] r8230 - in trunk/libavutil: integer.c integer.h

takis subversion
Mon Mar 5 00:25:00 CET 2007


Author: takis
Date: Mon Mar  5 00:25:00 2007
New Revision: 8230

Modified:
   trunk/libavutil/integer.c
   trunk/libavutil/integer.h

Log:
Move av_int2i()'s unaltered comments to the header file.


Modified: trunk/libavutil/integer.c
==============================================================================
--- trunk/libavutil/integer.c	(original)
+++ trunk/libavutil/integer.c	Mon Mar  5 00:25:00 2007
@@ -140,9 +140,6 @@ AVInteger av_div_i(AVInteger a, AVIntege
     return quot;
 }
 
-/**
- * converts the given int64_t to an AVInteger.
- */
 AVInteger av_int2i(int64_t a){
     AVInteger out;
     int i;

Modified: trunk/libavutil/integer.h
==============================================================================
--- trunk/libavutil/integer.h	(original)
+++ trunk/libavutil/integer.h	Mon Mar  5 00:25:00 2007
@@ -61,6 +61,10 @@ AVInteger av_mod_i(AVInteger *quot, AVIn
  * 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);
 




More information about the ffmpeg-cvslog mailing list