From c1f567875aa5057a63f9f240f6028be45cdc2da6 Mon Sep 17 00:00:00 2001
From: Panagiotis Issaris <takis.issaris@uhasselt.be>
Date: Sun, 4 Mar 2007 23:25:00 +0000
Subject: [PATCH] Move av_int2i()'s unaltered comments to the header file.

Originally committed as revision 8230 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavutil/integer.c | 3 ---
 libavutil/integer.h | 4 ++++
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/libavutil/integer.c b/libavutil/integer.c
index a47f8e272d9..837bee75836 100644
--- a/libavutil/integer.c
+++ b/libavutil/integer.c
@@ -140,9 +140,6 @@ AVInteger av_div_i(AVInteger a, AVInteger b){
     return quot;
 }
 
-/**
- * converts the given int64_t to an AVInteger.
- */
 AVInteger av_int2i(int64_t a){
     AVInteger out;
     int i;
diff --git a/libavutil/integer.h b/libavutil/integer.h
index ce351fc6503..e39e02674e1 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);
 
-- 
GitLab