[Ffmpeg-cvslog] r8228 - in trunk/libavutil: integer.c integer.h
takis
subversion
Mon Mar 5 00:18:44 CET 2007
Author: takis
Date: Mon Mar 5 00:18:44 2007
New Revision: 8228
Modified:
trunk/libavutil/integer.c
trunk/libavutil/integer.h
Log:
Move av_shr_i()'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:18:44 2007
@@ -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;
Modified: trunk/libavutil/integer.h
==============================================================================
--- trunk/libavutil/integer.h (original)
+++ trunk/libavutil/integer.h Mon Mar 5 00:18:44 2007
@@ -40,6 +40,11 @@ AVInteger av_sub_i(AVInteger a, AVIntege
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);
/**
More information about the ffmpeg-cvslog
mailing list