Commit 2244517e authored by jbr's avatar jbr

add a line break in error message text


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15810 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b41054db
...@@ -918,7 +918,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk) ...@@ -918,7 +918,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk)
else { else {
int bandwidth_code = get_bits(gbc, 6); int bandwidth_code = get_bits(gbc, 6);
if (bandwidth_code > 60) { if (bandwidth_code > 60) {
av_log(s->avctx, AV_LOG_ERROR, "bandwidth code = %d > 60", bandwidth_code); av_log(s->avctx, AV_LOG_ERROR, "bandwidth code = %d > 60\n", bandwidth_code);
return -1; return -1;
} }
s->end_freq[ch] = bandwidth_code * 3 + 73; s->end_freq[ch] = bandwidth_code * 3 + 73;
......
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