Browse Source

Move av_int2i()'s unaltered comments to the header file.

Originally committed as revision 8230 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Panagiotis Issaris 18 years ago
parent
commit
c1f567875a
2 changed files with 4 additions and 3 deletions
  1. +0
    -3
      libavutil/integer.c
  2. +4
    -0
      libavutil/integer.h

+ 0
- 3
libavutil/integer.c View File

@@ -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;


+ 4
- 0
libavutil/integer.h View File

@@ -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);



Loading…
Cancel
Save