diff options
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/opt.h | 2 | ||||
-rw-r--r-- | libavutil/pixfmt.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/opt.h b/libavutil/opt.h index bf4c5ddf5c..14faa6e066 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 1b9e1422c7..7b17a4f0c4 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 { |