Commit 1a55132a authored by kabi's avatar kabi

* minor - slightly modified debug message


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@401 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent edebb0a9
......@@ -80,7 +80,7 @@ static int ac3_decode_frame(AVCodecContext *avctx,
int sample_rate, bit_rate;
short *out_samples = data;
float level;
static int ac3_channels[8] = {
static const int ac3_channels[8] = {
2, 1, 2, 3, 3, 4, 4, 5
};
......@@ -114,7 +114,7 @@ static int ac3_decode_frame(AVCodecContext *avctx,
/* No specific number of channel requested */
avctx->channels = s->channels;
else if (s->channels < avctx->channels) {
fprintf(stderr, "libav: AC3 Source channels are less than specified: output to %d channels..\n", s->channels);
fprintf(stderr, "ac3dec: AC3 Source channels are less than specified: output to %d channels.. (frmsize: %d)\n", s->channels, len);
avctx->channels = s->channels;
}
avctx->bit_rate = bit_rate;
......
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