Commit c1fb0f40 authored by banan's avatar banan

Fix compilation with TRACE

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15713 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d597bf5f
...@@ -289,10 +289,10 @@ static int dca_parse_frame_header(DCAContext * s) ...@@ -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, "frame size: %i bytes\n", s->frame_size);
av_log(s->avctx, AV_LOG_DEBUG, "amode: %i (%i channels)\n", av_log(s->avctx, AV_LOG_DEBUG, "amode: %i (%i channels)\n",
s->amode, dca_channels[s->amode]); s->amode, dca_channels[s->amode]);
av_log(s->avctx, AV_LOG_DEBUG, "sample rate: %i (%i Hz)\n", av_log(s->avctx, AV_LOG_DEBUG, "sample rate: %i Hz\n",
s->sample_rate, dca_sample_rates[s->sample_rate]); s->sample_rate);
av_log(s->avctx, AV_LOG_DEBUG, "bit rate: %i (%i bits/s)\n", av_log(s->avctx, AV_LOG_DEBUG, "bit rate: %i bits/s\n",
s->bit_rate, dca_bit_rates[s->bit_rate]); s->bit_rate);
av_log(s->avctx, AV_LOG_DEBUG, "downmix: %i\n", s->downmix); 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, "dynrange: %i\n", s->dynrange);
av_log(s->avctx, AV_LOG_DEBUG, "timestamp: %i\n", s->timestamp); av_log(s->avctx, AV_LOG_DEBUG, "timestamp: %i\n", s->timestamp);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment