Mercurial > libavcodec.hg
changeset 6402:3164768539be libavcodec
Remove commented-out av_log calls.
author | diego |
---|---|
date | Mon, 25 Feb 2008 22:44:35 +0000 |
parents | 345cffb2c613 |
children | 9a736918fd90 |
files | snow.c |
diffstat | 1 files changed, 0 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- a/snow.c Mon Feb 25 22:43:42 2008 +0000 +++ b/snow.c Mon Feb 25 22:44:35 2008 +0000 @@ -527,8 +527,6 @@ int offset; IDWTELEM * buffer; -// av_log(NULL, AV_LOG_DEBUG, "Cache hit: %d\n", line); - assert(buf->data_stack_top >= 0); // assert(!buf->line[line]); if (buf->line[line]) @@ -539,8 +537,6 @@ buf->data_stack_top--; buf->line[line] = buffer; -// av_log(NULL, AV_LOG_DEBUG, "slice_buffer_load_line: line: %d remaining: %d\n", line, buf->data_stack_top + 1); - return buffer; } @@ -557,8 +553,6 @@ buf->data_stack_top++; buf->data_stack[buf->data_stack_top] = buffer; buf->line[line] = NULL; - -// av_log(NULL, AV_LOG_DEBUG, "slice_buffer_release: line: %d remaining: %d\n", line, buf->data_stack_top + 1); } static void slice_buffer_flush(slice_buffer * buf) @@ -567,10 +561,7 @@ for (i = 0; i < buf->line_count; i++) { if (buf->line[i]) - { -// av_log(NULL, AV_LOG_DEBUG, "slice_buffer_flush: line: %d \n", i); slice_buffer_release(buf, i); - } } } @@ -3809,7 +3800,6 @@ s->plane[plane_index].width = w; s->plane[plane_index].height= h; -//av_log(NULL, AV_LOG_DEBUG, "%d %d\n", w, h); for(level=s->spatial_decomposition_count-1; level>=0; level--){ for(orientation=level ? 1 : 0; orientation<4; orientation++){ SubBand *b= &s->plane[plane_index].band[level][orientation]; @@ -3927,7 +3917,6 @@ } b->qlog= (int)(log(352256.0/sqrt(error)) / log(pow(2.0, 1.0/QROOT))+0.5); -// av_log(NULL, AV_LOG_DEBUG, "%d %d %d\n", level, orientation, b->qlog/*, sqrt(error)*/); } } } @@ -4433,7 +4422,6 @@ correlate(s, b, b->ibuf, b->stride, 1, 0); } } -// av_log(NULL, AV_LOG_DEBUG, "plane:%d bits:%d\n", plane_index, put_bits_count(&s->c.pb) - bits); for(level=0; level<s->spatial_decomposition_count; level++){ for(orientation=level ? 1 : 0; orientation<4; orientation++){