summaryrefslogtreecommitdiff
path: root/libavutil/integer.h
diff options
context:
space:
mode:
authorPanagiotis Issaris <takis.issaris@uhasselt.be>2007-03-04 23:18:44 +0000
committerPanagiotis Issaris <takis.issaris@uhasselt.be>2007-03-04 23:18:44 +0000
commit886368e98983bea4558a7bfbab3c87cf21368442 (patch)
treee195e7eeff115c2db64543628c415fffb8550954 /libavutil/integer.h
parent9375cdd5ab5bdff1685d66c2b0f63220d82f2b89 (diff)
downloadffmpeg-886368e98983bea4558a7bfbab3c87cf21368442.tar.gz
Move av_shr_i()'s unaltered comments to the header file.
Originally committed as revision 8228 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/integer.h')
-rw-r--r--libavutil/integer.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavutil/integer.h b/libavutil/integer.h
index 1f15225516..c7b84c36a9 100644
--- a/libavutil/integer.h
+++ b/libavutil/integer.h
@@ -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);
/**