Browse code

Move av_i2int()'s unaltered comments to the header file.

Originally committed as revision 8231 to svn://svn.ffmpeg.org/ffmpeg/trunk

Panagiotis Issaris authored on 2007/03/05 08:26:01
Showing 2 changed files
... ...
@@ -151,11 +151,6 @@ AVInteger av_int2i(int64_t a){
151 151
     return out;
152 152
 }
153 153
 
154
-/**
155
- * converts the given AVInteger to an int64_t.
156
- * if the AVInteger is too large to fit into an int64_t,
157
- * then only the least significant 64bit will be used
158
- */
159 154
 int64_t av_i2int(AVInteger a){
160 155
     int i;
161 156
     int64_t out=(int8_t)a.v[AV_INTEGER_SIZE-1];
... ...
@@ -66,6 +66,12 @@ AVInteger av_div_i(AVInteger a, AVInteger b);
66 66
  * converts the given int64_t to an AVInteger.
67 67
  */
68 68
 AVInteger av_int2i(int64_t a);
69
+
70
+/**
71
+ * converts the given AVInteger to an int64_t.
72
+ * if the AVInteger is too large to fit into an int64_t,
73
+ * then only the least significant 64bit will be used
74
+ */
69 75
 int64_t av_i2int(AVInteger a);
70 76
 
71 77
 #endif // INTEGER_H