Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPanagiotis Issaris <takis.issaris@uhasselt.be>2007-03-05 02:20:54 +0300
committerPanagiotis Issaris <takis.issaris@uhasselt.be>2007-03-05 02:20:54 +0300
commitfb7d4f7908469858acb0efaa6ce2cc08b06f1dc1 (patch)
tree52348992baa13faeae7c75d35c4558ecb559d24e /libavutil/integer.h
parent886368e98983bea4558a7bfbab3c87cf21368442 (diff)
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.h')
-rw-r--r--libavutil/integer.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavutil/integer.h b/libavutil/integer.h
index c7b84c36a9..ce351fc650 100644
--- a/libavutil/integer.h
+++ b/libavutil/integer.h
@@ -39,6 +39,10 @@ AVInteger av_add_i(AVInteger a, AVInteger b);
AVInteger av_sub_i(AVInteger a, AVInteger b);
int av_log2_i(AVInteger a);
AVInteger av_mul_i(AVInteger a, AVInteger b);
+
+/**
+ * returns 0 if a==b, 1 if a>b and -1 if a<b.
+ */
int av_cmp_i(AVInteger a, AVInteger b);
/**