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 /libavutil/integer.c | |
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
Diffstat (limited to 'libavutil/integer.c')
-rw-r--r-- | libavutil/integer.c | 4 |
1 files changed, 0 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; |