From fb7d4f7908469858acb0efaa6ce2cc08b06f1dc1 Mon Sep 17 00:00:00 2001 From: Panagiotis Issaris <takis.issaris@uhasselt.be> Date: Sun, 4 Mar 2007 23:20:54 +0000 Subject: Move av_cmp_i()'s unaltered comment to the header file. Originally committed as revision 8229 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/integer.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'libavutil/integer.c') 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]; -- cgit v1.2.3