Commit 105a3c7a authored by Michael Niedermayer's avatar Michael Niedermayer

bitstream_reader: Try to fix "get_bits.h:305:45: warning: variable ‘re_cache’...

bitstream_reader: Try to fix "get_bits.h:305:45: warning: variable ‘re_cache’ set but not used [-Wunused-but-set-variable]"
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 3acc44b7
......@@ -127,7 +127,7 @@ for examples see get_bits, show_bits, skip_bits, get_vlc
# define OPEN_READER(name, gb) \
unsigned int name##_index = (gb)->index; \
int name##_cache
av_unused int name##_cache
# define CLOSE_READER(name, gb) (gb)->index = name##_index
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment