# HG changeset patch # User al3x # Date 1057350364 0 # Node ID f574934c421977690039e79ae5c626dd9aacb4ae # Parent 6e5d4ec4f3ab7b3822383aec788e4dc175b3af34 uniformization (now it uses the same trace functions as h264, defined in common.h) diff -r 6e5d4ec4f3ab -r f574934c4219 wmadec.c --- a/wmadec.c Fri Jul 04 17:16:53 2003 +0000 +++ b/wmadec.c Fri Jul 04 20:26:04 2003 +0000 @@ -25,9 +25,6 @@ #include "avcodec.h" #include "dsputil.h" -//#define DEBUG_PARAMS -//#define DEBUG_TRACE - /* size of blocks */ #define BLOCK_MIN_BITS 7 #define BLOCK_MAX_BITS 11 @@ -127,57 +124,20 @@ #include "wmadata.h" -#ifdef DEBUG_TRACE -#include -int frame_count; - -static FILE *flog; - -void trace(const char *fmt, ...) -{ - va_list ap; - - - if (!flog) { - flog = fopen("/tmp/out.log", "w"); - setlinebuf(flog); - } - - va_start(ap, fmt); - vfprintf(flog, fmt, ap); - va_end(ap); -} - -#define get_bits(s, n) get_bits_trace(s, n) -#define get_vlc(s, vlc) get_vlc_trace(s, vlc) - -unsigned int get_bits_trace(GetBitContext *s, int n) -{ - unsigned int val; - val = (get_bits)(s, n); - trace("get_bits(%d) : 0x%x\n", n, val); - return val; -} - -static int get_vlc_trace(GetBitContext *s, VLC *vlc) -{ - int code; - code = (get_vlc)(s, vlc); - trace("get_vlc() : %d\n", code); - return code; -} +#ifdef TRACE +int frame_count = 0; static void dump_shorts(const char *name, const short *tab, int n) { int i; - trace("%s[%d]:\n", name, n); + tprintf("%s[%d]:\n", name, n); for(i=0;iversion, s->nb_channels, s->sample_rate, s->bit_rate, s->block_align); - printf("bps=%f bps1=%f high_freq=%f bitoffset=%d\n", + dprintf("bps=%f bps1=%f high_freq=%f bitoffset=%d\n", bps, bps1, high_freq, s->byte_offset_bits); - printf("use_noise_coding=%d use_exp_vlc=%d nb_block_sizes=%d\n", + dprintf("use_noise_coding=%d use_exp_vlc=%d nb_block_sizes=%d\n", s->use_noise_coding, s->use_exp_vlc, s->nb_block_sizes); -#endif /* compute the scale factor band sizes for each MDCT block size */ { @@ -458,28 +411,28 @@ } s->exponent_high_sizes[k] = j; #if 0 - trace("%5d: coefs_end=%d high_band_start=%d nb_high_bands=%d: ", + tprintf("%5d: coefs_end=%d high_band_start=%d nb_high_bands=%d: ", s->frame_len >> k, s->coefs_end[k], s->high_band_start[k], s->exponent_high_sizes[k]); for(j=0;jexponent_high_sizes[k];j++) - trace(" %d", s->exponent_high_bands[k][j]); - trace("\n"); + tprintf(" %d", s->exponent_high_bands[k][j]); + tprintf("\n"); #endif } } -#ifdef DEBUG_TRACE +#ifdef TRACE { int i, j; for(i = 0; i < s->nb_block_sizes; i++) { - trace("%5d: n=%2d:", + tprintf("%5d: n=%2d:", s->frame_len >> i, s->exponent_sizes[i]); for(j=0;jexponent_sizes[i];j++) - trace(" %d", s->exponent_bands[i][j]); - trace("\n"); + tprintf(" %d", s->exponent_bands[i][j]); + tprintf("\n"); } } #endif @@ -511,7 +464,7 @@ else s->noise_mult = 0.04; -#if defined(DEBUG_TRACE) +#ifdef TRACE for(i=0;inoise_table[i] = 1.0 * s->noise_mult; #else @@ -741,7 +694,7 @@ int nb_coefs[MAX_CHANNELS]; float mdct_norm; - trace("***decode_block: %d:%d\n", frame_count - 1, s->block_num); + tprintf("***decode_block: %d:%d\n", frame_count - 1, s->block_num); /* compute current block length */ if (s->use_variable_block_len) { @@ -987,7 +940,7 @@ } exp_power[j] = e2 / n; last_high_band = j; - trace("%d: power=%f (%d)\n", j, exp_power[j], n); + tprintf("%d: power=%f (%d)\n", j, exp_power[j], n); } exp_ptr += n; } @@ -1045,7 +998,7 @@ } } -#ifdef DEBUG_TRACE +#ifdef TRACE for(ch = 0; ch < s->nb_channels; ch++) { if (s->channel_coded[ch]) { dump_floats("exponents", 3, s->exponents[ch], s->block_len); @@ -1062,9 +1015,7 @@ /* no need to optimize this case because it should almost never happen */ if (!s->channel_coded[0]) { -#ifdef DEBUG_TRACE - trace("rare ms-stereo case happened\n"); -#endif + tprintf("rare ms-stereo case happened\n"); memset(s->coefs[0], 0, sizeof(float) * s->block_len); s->channel_coded[0] = 1; } @@ -1176,7 +1127,7 @@ int16_t *ptr; float *iptr; - trace("***decode_frame: %d size=%d\n", frame_count++, s->frame_len); + tprintf("***decode_frame: %d size=%d\n", frame_count++, s->frame_len); /* read each block */ s->block_num = 0; @@ -1213,7 +1164,7 @@ s->frame_len * sizeof(float)); } -#ifdef DEBUG_TRACE +#ifdef TRACE dump_shorts("samples", samples, n * s->nb_channels); #endif return 0; @@ -1228,7 +1179,7 @@ uint8_t *q; int16_t *samples; - trace("***decode_superframe:\n"); + tprintf("***decode_superframe:\n"); samples = data;