]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Move av_i2int()'s unaltered comments to the header file.
authortakis <takis@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sun, 4 Mar 2007 23:26:01 +0000 (23:26 +0000)
committertakis <takis@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sun, 4 Mar 2007 23:26:01 +0000 (23:26 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8231 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavutil/integer.c
libavutil/integer.h

index 837bee7583634a2363863332967bb4aa77ff1dc9..bed5069a9d941b76d63c280809f47ba6dc4927d9 100644 (file)
@@ -151,11 +151,6 @@ AVInteger av_int2i(int64_t a){
     return out;
 }
 
-/**
- * converts the given AVInteger to an int64_t.
- * if the AVInteger is too large to fit into an int64_t,
- * then only the least significant 64bit will be used
- */
 int64_t av_i2int(AVInteger a){
     int i;
     int64_t out=(int8_t)a.v[AV_INTEGER_SIZE-1];
index e39e02674e1fb2a344f765071fdfc4e489e49b4b..6680e79ac33c8cd6ed850b25bf1a389fbcaf3fa6 100644 (file)
@@ -66,6 +66,12 @@ AVInteger av_div_i(AVInteger a, AVInteger b);
  * converts the given int64_t to an AVInteger.
  */
 AVInteger av_int2i(int64_t a);
+
+/**
+ * converts the given AVInteger to an int64_t.
+ * if the AVInteger is too large to fit into an int64_t,
+ * then only the least significant 64bit will be used
+ */
 int64_t av_i2int(AVInteger a);
 
 #endif // INTEGER_H