1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

wmaenc: add new line to some error messages

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Piotr Bandurski 2012-12-05 17:37:42 +01:00 committed by Michael Niedermayer
parent 928346091a
commit 5381960501

View File

@ -33,13 +33,13 @@ static int encode_init(AVCodecContext * avctx){
s->avctx = avctx; s->avctx = avctx;
if(avctx->channels > MAX_CHANNELS) { if(avctx->channels > MAX_CHANNELS) {
av_log(avctx, AV_LOG_ERROR, "too many channels: got %i, need %i or fewer", av_log(avctx, AV_LOG_ERROR, "too many channels: got %i, need %i or fewer\n",
avctx->channels, MAX_CHANNELS); avctx->channels, MAX_CHANNELS);
return AVERROR(EINVAL); return AVERROR(EINVAL);
} }
if (avctx->sample_rate > 48000) { if (avctx->sample_rate > 48000) {
av_log(avctx, AV_LOG_ERROR, "sample rate is too high: %d > 48kHz", av_log(avctx, AV_LOG_ERROR, "sample rate is too high: %d > 48kHz\n",
avctx->sample_rate); avctx->sample_rate);
return AVERROR(EINVAL); return AVERROR(EINVAL);
} }