From: banan Date: Sun, 26 Oct 2008 09:50:15 +0000 (+0000) Subject: Fix compilation with TRACE X-Git-Url: http://rtime.felk.cvut.cz/gitweb/frescor/ffmpeg.git/commitdiff_plain/c1fb0f406556e433f13a9c1125fd2e7ba9447e55 Fix compilation with TRACE git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15713 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- diff --git a/libavcodec/dca.c b/libavcodec/dca.c index a04e29ddf..7d1003391 100644 --- a/libavcodec/dca.c +++ b/libavcodec/dca.c @@ -289,10 +289,10 @@ static int dca_parse_frame_header(DCAContext * s) av_log(s->avctx, AV_LOG_DEBUG, "frame size: %i bytes\n", s->frame_size); av_log(s->avctx, AV_LOG_DEBUG, "amode: %i (%i channels)\n", s->amode, dca_channels[s->amode]); - av_log(s->avctx, AV_LOG_DEBUG, "sample rate: %i (%i Hz)\n", - s->sample_rate, dca_sample_rates[s->sample_rate]); - av_log(s->avctx, AV_LOG_DEBUG, "bit rate: %i (%i bits/s)\n", - s->bit_rate, dca_bit_rates[s->bit_rate]); + av_log(s->avctx, AV_LOG_DEBUG, "sample rate: %i Hz\n", + s->sample_rate); + av_log(s->avctx, AV_LOG_DEBUG, "bit rate: %i bits/s\n", + s->bit_rate); av_log(s->avctx, AV_LOG_DEBUG, "downmix: %i\n", s->downmix); av_log(s->avctx, AV_LOG_DEBUG, "dynrange: %i\n", s->dynrange); av_log(s->avctx, AV_LOG_DEBUG, "timestamp: %i\n", s->timestamp);