diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-03-04 23:14:12 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-03-04 23:14:12 +0000 |
commit | 9375cdd5ab5bdff1685d66c2b0f63220d82f2b89 (patch) | |
tree | 397c815a396743e17674e939ca40c516505eb3c2 /libavutil/integer.c | |
parent | 607da27c64805195eea51efa896bfad8b624c217 (diff) | |
download | ffmpeg-9375cdd5ab5bdff1685d66c2b0f63220d82f2b89.tar.gz |
Move av_div_i()'s comments to the header file. The comments are unaltered.
Originally committed as revision 8227 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/integer.c')
-rw-r--r-- | libavutil/integer.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavutil/integer.c b/libavutil/integer.c index 1319615572..bc2f58d470 100644 --- a/libavutil/integer.c +++ b/libavutil/integer.c @@ -141,9 +141,6 @@ AVInteger av_mod_i(AVInteger *quot, AVInteger a, AVInteger b){ return a; } -/** - * returns a/b. - */ AVInteger av_div_i(AVInteger a, AVInteger b){ AVInteger quot; av_mod_i(", a, b); |