summaryrefslogtreecommitdiff
path: root/libavutil/integer.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-01-28 00:16:05 +0000
committerDiego Biurrun <diego@biurrun.de>2009-01-28 00:16:05 +0000
commit89c9ff504b29d03cf266aa3598ccb8d2cf1ddd13 (patch)
tree340147cb9f4382a838ae971bf991c2f42482077c /libavutil/integer.h
parentd972e56cf21e9fa12922704da276d26111b5dbc1 (diff)
spelling/grammar/consistency review part I
Originally committed as revision 16840 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/integer.h')
-rw-r--r--libavutil/integer.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/libavutil/integer.h b/libavutil/integer.h
index 6c5c274141..fdde30c400 100644
--- a/libavutil/integer.h
+++ b/libavutil/integer.h
@@ -48,29 +48,30 @@ int av_log2_i(AVInteger a) av_const;
AVInteger av_mul_i(AVInteger a, AVInteger b) av_const;
/**
- * returns 0 if a==b, 1 if a>b and -1 if a<b.
+ * Returns 0 if a==b, 1 if a>b and -1 if a<b.
*/
int av_cmp_i(AVInteger a, AVInteger b) av_const;
/**
- * bitwise shift.
- * @param s the number of bits by which the value should be shifted right, may be negative for shifting left
+ * bitwise shift
+ * @param s the number of bits by which the value should be shifted right,
+ may be negative for shifting left
*/
AVInteger av_shr_i(AVInteger a, int s) av_const;
/**
- * returns a % b.
- * @param quot a/b will be stored here
+ * Returns a % b.
+ * @param quot a/b will be stored here.
*/
AVInteger av_mod_i(AVInteger *quot, AVInteger a, AVInteger b);
/**
- * returns a/b.
+ * Returns a/b.
*/
AVInteger av_div_i(AVInteger a, AVInteger b) av_const;
/**
- * converts the given int64_t to an AVInteger.
+ * Converts the given int64_t to an AVInteger.
*/
AVInteger av_int2i(int64_t a) av_const;