summaryrefslogtreecommitdiff
path: root/libavcodec/golomb.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-05-21 13:31:24 +0200
committerDiego Biurrun <diego@biurrun.de>2016-05-22 20:22:43 +0200
commit52567e8198669a1e7493c75771613f87a90466c3 (patch)
tree2590bb181e420d007413edd85cbafa79d0d8ba39 /libavcodec/golomb.h
parente45a638f50cc1dbeb87b9792e68f57e77fc0c3b5 (diff)
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.h6
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);