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:26:01 +0300
committerPanagiotis Issaris <takis.issaris@uhasselt.be>2007-03-05 02:26:01 +0300
commit37b2f1d07354e7871cf720aceaf8fdfae9d66573 (patch)
tree65d20770030e289d7c1ac7eca50f8d291b49294a /libavutil/integer.h
parentc1f567875aa5057a63f9f240f6028be45cdc2da6 (diff)
Move av_i2int()'s unaltered comments to the header file.
Originally committed as revision 8231 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/integer.h')
-rw-r--r--libavutil/integer.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavutil/integer.h b/libavutil/integer.h
index e39e02674e..6680e79ac3 100644
--- a/libavutil/integer.h
+++ b/libavutil/integer.h
@@ -66,6 +66,12 @@ AVInteger av_div_i(AVInteger a, AVInteger b);
* converts the given int64_t to an AVInteger.
*/
AVInteger av_int2i(int64_t a);
+
+/**
+ * converts the given AVInteger to an int64_t.
+ * if the AVInteger is too large to fit into an int64_t,
+ * then only the least significant 64bit will be used
+ */
int64_t av_i2int(AVInteger a);
#endif // INTEGER_H