diff integer.h @ 273:1907c66098b0 libavutil

Move av_shr_i()'s unaltered comments to the header file.
author takis
date Sun, 04 Mar 2007 23:18:44 +0000
parents 2bf3b2fee71a
children 57262361a75c
line wrap: on
line diff
--- a/integer.h	Sun Mar 04 23:14:12 2007 +0000
+++ b/integer.h	Sun Mar 04 23:18:44 2007 +0000
@@ -40,6 +40,11 @@
 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);
 
 /**