Commit 2f436b1f authored by Michael Niedermayer's avatar Michael Niedermayer

lavc: Warn in case the set bitrate is very low

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d828bae9
......@@ -1013,6 +1013,10 @@ int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *code
goto free_and_end;
}
}
if ( (avctx->codec_type == AVMEDIA_TYPE_VIDEO || avctx->codec_type == AVMEDIA_TYPE_AUDIO)
&& avctx->bit_rate>0 && avctx->bit_rate<1000) {
av_log(avctx, AV_LOG_WARNING, "Bitrate %d is extreemly low, did you mean %dk\n", avctx->bit_rate, avctx->bit_rate);
}
}
avctx->pts_correction_num_faulty_pts =
......
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