Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-03-21 16:17:19 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-03-21 16:17:19 +0400
commitde8049d27cc9561f6d9b999468354e068792a740 (patch)
treed4c836e3a523baffa423b3e64fca80e6b4dd4806 /libavcodec/h264.h
parent881050d2292809f3b4fae815bbef95c4793b0ab4 (diff)
h264: add an argument to CHROMA for consistency
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r--libavcodec/h264.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index 392f2f5a7c..b3707ab1c6 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -87,7 +87,7 @@
#define CABAC(h) h->pps.cabac
#endif
-#define CHROMA (h->sps.chroma_format_idc)
+#define CHROMA(h) (h->sps.chroma_format_idc)
#define CHROMA422(h) (h->sps.chroma_format_idc == 2)
#define CHROMA444(h) (h->sps.chroma_format_idc == 3)