From 61f040dd1abe37da2e365d26909ce48c6644bf1a Mon Sep 17 00:00:00 2001 From: Loïc Le Loarer Date: Wed, 19 Jan 2005 12:58:34 +0000 Subject: compile with TRACE define patch by (Loic ) Originally committed as revision 3848 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/golomb.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec/golomb.h') diff --git a/libavcodec/golomb.h b/libavcodec/golomb.h index f8b144a531..fdf97bc740 100644 --- a/libavcodec/golomb.h +++ b/libavcodec/golomb.h @@ -283,7 +283,7 @@ static inline int get_sr_golomb_flac(GetBitContext *gb, int k, int limit, int es #ifdef TRACE -static inline int get_ue(GetBitContext *s, char *file, char *func, int line){ +static inline int get_ue(GetBitContext *s, char *file, const char *func, int line){ int show= show_bits(s, 24); int pos= get_bits_count(s); int i= get_ue_golomb(s); @@ -297,7 +297,7 @@ static inline int get_ue(GetBitContext *s, char *file, char *func, int line){ return i; } -static inline int get_se(GetBitContext *s, char *file, char *func, int line){ +static inline int get_se(GetBitContext *s, char *file, const char *func, int line){ int show= show_bits(s, 24); int pos= get_bits_count(s); int i= get_se_golomb(s); @@ -311,7 +311,7 @@ static inline int get_se(GetBitContext *s, char *file, char *func, int line){ return i; } -static inline int get_te(GetBitContext *s, int r, char *file, char *func, int line){ +static inline int get_te(GetBitContext *s, int r, char *file, const char *func, int line){ int show= show_bits(s, 24); int pos= get_bits_count(s); int i= get_te0_golomb(s, r); -- cgit v1.2.3