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/h264_cavlc.c | |
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/h264_cavlc.c')
-rw-r--r-- | libavcodec/h264_cavlc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/h264_cavlc.c b/libavcodec/h264_cavlc.c index 1a80f76d96..5d80243968 100644 --- a/libavcodec/h264_cavlc.c +++ b/libavcodec/h264_cavlc.c @@ -421,10 +421,6 @@ static inline int get_level_prefix(GetBitContext *gb){ buf=GET_CACHE(re, gb); log= 32 - av_log2(buf); -#ifdef TRACE - print_bin(buf>>(32-log), log); - av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d lpr @%5d in %s get_level_prefix\n", buf>>(32-log), log, log-1, get_bits_count(gb), __FILE__); -#endif LAST_SKIP_BITS(re, gb, log); CLOSE_READER(re, gb); |