summaryrefslogtreecommitdiff
authorMichael Niedermayer <michaelni@gmx.at>2013-10-19 21:49:37 (GMT)
committer Michael Niedermayer <michaelni@gmx.at>2013-10-23 12:32:04 (GMT)
commit867e7bb4f101e74d69a637ab38e90360dfe8bceb (patch)
treeb5e203e273b4d075ac80fa5ccc4a59ddd241ecc1
parent3d3a7f5034a2ccab0e6ae655c8f9610308773714 (diff)
downloadffmpeg-867e7bb4f101e74d69a637ab38e90360dfe8bceb.zip
ffmpeg-867e7bb4f101e74d69a637ab38e90360dfe8bceb.tar.gz
ffmpeg-867e7bb4f101e74d69a637ab38e90360dfe8bceb.tar.bz2
fix order of operations in comments
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat
-rw-r--r--libavcodec/ppc/gmc_altivec.c4
-rw-r--r--libavutil/opt.h2
-rw-r--r--libavutil/pixfmt.h4
3 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/ppc/gmc_altivec.c b/libavcodec/ppc/gmc_altivec.c
index 4db761d..45d850a 100644
--- a/libavcodec/ppc/gmc_altivec.c
+++ b/libavcodec/ppc/gmc_altivec.c
@@ -66,7 +66,7 @@ void ff_gmc1_altivec(uint8_t *dst /* align 8 */, uint8_t *src /* align1 */, int
srcvA = vec_perm(src_0, src_1, vec_lvsl(0, src));
if (src_really_odd != 0x0000000F) {
- // if src & 0xF == 0xF, then (src+1) is properly aligned
+ // if (src & 0xF) == 0xF, then (src+1) is properly aligned
// on the second vector.
srcvB = vec_perm(src_0, src_1, vec_lvsl(1, src));
} else {
@@ -90,7 +90,7 @@ void ff_gmc1_altivec(uint8_t *dst /* align 8 */, uint8_t *src /* align1 */, int
srcvC = vec_perm(src_0, src_1, vec_lvsl(stride + 0, src));
if (src_really_odd != 0x0000000F) {
- // if src & 0xF == 0xF, then (src+1) is properly aligned
+ // if (src & 0xF) == 0xF, then (src+1) is properly aligned
// on the second vector.
srcvD = vec_perm(src_0, src_1, vec_lvsl(stride + 1, src));
} else {
diff --git a/libavutil/opt.h b/libavutil/opt.h
index bf4c5dd..14faa6e 100644
--- a/libavutil/opt.h
+++ b/libavutil/opt.h
@@ -320,7 +320,7 @@ typedef struct AVOptionRanges {
/**
* Look for an option in obj. Look only for the options which
* have the flags set as specified in mask and flags (that is,
- * for which it is the case that opt->flags & mask == flags).
+ * for which it is the case that (opt->flags & mask) == flags).
*
* @param[in] obj a pointer to a struct whose first element is a
* pointer to an AVClass
diff --git a/libavutil/pixfmt.h b/libavutil/pixfmt.h
index 1b9e142..7b17a4f 100644
--- a/libavutil/pixfmt.h
+++ b/libavutil/pixfmt.h
@@ -59,8 +59,8 @@
* allocating the picture.
*
* @note
- * Make sure that all newly added big-endian formats have pix_fmt & 1 == 1
- * and that all newly added little-endian formats have pix_fmt & 1 == 0.
+ * Make sure that all newly added big-endian formats have (pix_fmt & 1) == 1
+ * and that all newly added little-endian formats have (pix_fmt & 1) == 0.
* This allows simpler detection of big vs little-endian.
*/
enum AVPixelFormat {