diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-05-21 13:31:24 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-05-22 20:22:43 +0200 |
commit | 52567e8198669a1e7493c75771613f87a90466c3 (patch) | |
tree | 2590bb181e420d007413edd85cbafa79d0d8ba39 /libavcodec/golomb.h | |
parent | e45a638f50cc1dbeb87b9792e68f57e77fc0c3b5 (diff) | |
download | ffmpeg-52567e8198669a1e7493c75771613f87a90466c3.tar.gz |
get_bits: Drop some TRACE-level debug code
It will not be provided by the new bit reader anyway.
Diffstat (limited to 'libavcodec/golomb.h')
-rw-r--r-- | libavcodec/golomb.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/golomb.h b/libavcodec/golomb.h index 22a87c64e1..398fe3b30a 100644 --- a/libavcodec/golomb.h +++ b/libavcodec/golomb.h @@ -413,8 +413,6 @@ static inline int get_ue(GetBitContext *s, const char *file, const char *func, int len = get_bits_count(s) - pos; int bits = show >> (24 - len); - print_bin(bits, len); - av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d ue @%5d in %s %s:%d\n", bits, len, i, pos, file, func, line); @@ -430,8 +428,6 @@ static inline int get_se(GetBitContext *s, const char *file, const char *func, int len = get_bits_count(s) - pos; int bits = show >> (24 - len); - print_bin(bits, len); - av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d se @%5d in %s %s:%d\n", bits, len, i, pos, file, func, line); @@ -447,8 +443,6 @@ static inline int get_te(GetBitContext *s, int r, char *file, const char *func, int len = get_bits_count(s) - pos; int bits = show >> (24 - len); - print_bin(bits, len); - av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d te @%5d in %s %s:%d\n", bits, len, i, pos, file, func, line); |