diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-03-09 20:37:11 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-03-21 10:20:52 +0100 |
commit | 6d2b6f21eb45ffbda1103c772060303648714832 (patch) | |
tree | 8f6387d13198b42fa94a8ed06d3be8a46fc0dd22 /libavcodec/h264_cavlc.c | |
parent | a6931d8ecea17aa232157f89abdbe7afbb93a8db (diff) | |
download | ffmpeg-6d2b6f21eb45ffbda1103c772060303648714832.tar.gz |
h264: add a parameter to the CABAC macro.
This way it does not look like a constant.
Diffstat (limited to 'libavcodec/h264_cavlc.c')
-rw-r--r-- | libavcodec/h264_cavlc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_cavlc.c b/libavcodec/h264_cavlc.c index b18c54eed1..4f4637334c 100644 --- a/libavcodec/h264_cavlc.c +++ b/libavcodec/h264_cavlc.c @@ -25,7 +25,7 @@ * @author Michael Niedermayer <michaelni@gmx.at> */ -#define CABAC 0 +#define CABAC(h) 0 #include "internal.h" #include "avcodec.h" |