summaryrefslogtreecommitdiff
path: root/libavcodec/utils.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-12-21 22:50:57 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-12-21 22:50:57 +0100
commit2f436b1fce992d55d70f48c5e5d835e6e2226991 (patch)
tree793a25f0e9ae4ea4fd2c5cfb650ebb06d6e048b2 /libavcodec/utils.c
parentd828bae9d244388dcb3a4b442f59606ca6cdb5aa (diff)
lavc: Warn in case the set bitrate is very low
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r--libavcodec/utils.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index c8c7c4786b..8a9d7a8cef 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -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 =