diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-10-19 23:49:37 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-23 14:32:04 +0200 |
commit | 867e7bb4f101e74d69a637ab38e90360dfe8bceb (patch) | |
tree | b5e203e273b4d075ac80fa5ccc4a59ddd241ecc1 /libavutil/pixfmt.h | |
parent | 3d3a7f5034a2ccab0e6ae655c8f9610308773714 (diff) | |
download | ffmpeg-867e7bb4f101e74d69a637ab38e90360dfe8bceb.tar.gz |
fix order of operations in comments
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/pixfmt.h')
-rw-r--r-- | libavutil/pixfmt.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 { |