summaryrefslogtreecommitdiff
path: root/libavutil/integer.h
diff options
context:
space:
mode:
authorPanagiotis Issaris <takis.issaris@uhasselt.be>2007-03-04 23:25:00 +0000
committerPanagiotis Issaris <takis.issaris@uhasselt.be>2007-03-04 23:25:00 +0000
commitc1f567875aa5057a63f9f240f6028be45cdc2da6 (patch)
treee11c0fa6eaefedb9db6023f4eb203b06ac8238c4 /libavutil/integer.h
parentfb7d4f7908469858acb0efaa6ce2cc08b06f1dc1 (diff)
Move av_int2i()'s unaltered comments to the header file.
Originally committed as revision 8230 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 ce351fc650..e39e02674e 100644
--- a/libavutil/integer.h
+++ b/libavutil/integer.h
@@ -61,6 +61,10 @@ AVInteger av_mod_i(AVInteger *quot, AVInteger a, AVInteger b);
* returns a/b.
*/
AVInteger av_div_i(AVInteger a, AVInteger b);
+
+/**
+ * converts the given int64_t to an AVInteger.
+ */
AVInteger av_int2i(int64_t a);
int64_t av_i2int(AVInteger a);