diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-03-04 23:20:54 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-03-04 23:20:54 +0000 |
commit | fb7d4f7908469858acb0efaa6ce2cc08b06f1dc1 (patch) | |
tree | 52348992baa13faeae7c75d35c4558ecb559d24e /libavutil/integer.c | |
parent | 886368e98983bea4558a7bfbab3c87cf21368442 (diff) | |
download | ffmpeg-fb7d4f7908469858acb0efaa6ce2cc08b06f1dc1.tar.gz |
Move av_cmp_i()'s unaltered comment to the header file.
Originally committed as revision 8229 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/integer.c')
-rw-r--r-- | libavutil/integer.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavutil/integer.c b/libavutil/integer.c index 471aed765c..a47f8e272d 100644 --- a/libavutil/integer.c +++ b/libavutil/integer.c @@ -84,9 +84,6 @@ AVInteger av_mul_i(AVInteger a, AVInteger b){ return out; } -/** - * returns 0 if a==b, 1 if a>b and -1 if a<b. - */ int av_cmp_i(AVInteger a, AVInteger b){ int i; int v= (int16_t)a.v[AV_INTEGER_SIZE-1] - (int16_t)b.v[AV_INTEGER_SIZE-1]; |