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

libavutil/integer.c
libavutil/integer.h

index bc2f58d..471aed7 100644 (file)
@@ -99,10 +99,6 @@ int av_cmp_i(AVInteger a, AVInteger b){
     return 0;
 }
 
-/**
- * bitwise shift.
- * @param s the number of bits by which the value should be shifted right, may be negative for shifting left
- */
 AVInteger av_shr_i(AVInteger a, int s){
     AVInteger out;
     int i;
index 1f15225..c7b84c3 100644 (file)
@@ -40,6 +40,11 @@ AVInteger av_sub_i(AVInteger a, AVInteger b);
 int av_log2_i(AVInteger a);
 AVInteger av_mul_i(AVInteger a, AVInteger b);
 int av_cmp_i(AVInteger a, AVInteger b);
+
+/**
+ * bitwise shift.
+ * @param s the number of bits by which the value should be shifted right, may be negative for shifting left
+ */
 AVInteger av_shr_i(AVInteger a, int s);
 
 /**