diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-03-04 23:18:44 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-03-04 23:18:44 +0000 |
commit | 886368e98983bea4558a7bfbab3c87cf21368442 (patch) | |
tree | e195e7eeff115c2db64543628c415fffb8550954 | |
parent | 9375cdd5ab5bdff1685d66c2b0f63220d82f2b89 (diff) | |
download | ffmpeg-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
-rw-r--r-- | libavutil/integer.c | 4 | ||||
-rw-r--r-- | libavutil/integer.h | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/libavutil/integer.c b/libavutil/integer.c index bc2f58d470..471aed765c 100644 --- a/libavutil/integer.c +++ b/libavutil/integer.c @@ -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; 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); /** |