Mercurial > libavcodec.hg
changeset 1152:69efd29c861e libavcodec
10l
author | michaelni |
---|---|
date | Wed, 26 Mar 2003 10:39:34 +0000 |
parents | 1d2ced5e79f3 |
children | 2725c8eb3c81 |
files | common.h |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/common.h Mon Mar 24 08:52:32 2003 +0000 +++ b/common.h Wed Mar 26 10:39:34 2003 +0000 @@ -822,10 +822,10 @@ #define get_bits(s, n) get_bits_trace(s, n, __FILE__, __PRETTY_FUNCTION__, __LINE__) #define get_bits1(s) get_bits_trace(s, 1, __FILE__, __PRETTY_FUNCTION__, __LINE__) -#define get_vlc(s, vlc) get_vlc_trace(s, vlc->table, vlc->bits, 3, __FILE__, __PRETTY_FUNCTION__, __LINE__) +#define get_vlc(s, vlc) get_vlc_trace(s, (vlc)->table, (vlc)->bits, 3, __FILE__, __PRETTY_FUNCTION__, __LINE__) #define get_vlc2(s, tab, bits, max) get_vlc_trace(s, tab, bits, max, __FILE__, __PRETTY_FUNCTION__, __LINE__) -#endif +#endif //TRACE /* define it to include statistics code (useful only for optimizing codec efficiency */