diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-28 23:03:17 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-28 23:03:17 +0000 |
commit | bfe3676feb5548993292b806de45a1cbc746c05f (patch) | |
tree | 18ad073de9e9d1ef37ef08fe31de7929e11f04a3 /libavutil/integer.h | |
parent | 7b484a7a177b689f6f3ae8f16935dd47ff5120c3 (diff) | |
download | ffmpeg-bfe3676feb5548993292b806de45a1cbc746c05f.tar.gz |
spelling/grammar/consistency review part II
Originally committed as revision 16848 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/integer.h')
-rw-r--r-- | libavutil/integer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/integer.h b/libavutil/integer.h index fdde30c400..148b5c344d 100644 --- a/libavutil/integer.h +++ b/libavutil/integer.h @@ -76,9 +76,9 @@ AVInteger av_div_i(AVInteger a, AVInteger b) av_const; AVInteger av_int2i(int64_t a) av_const; /** - * 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 + * 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 64 bits will be used. */ int64_t av_i2int(AVInteger a) av_const; |