avcodec/ratecontrol: give some trivial tips in case of buffer underflows

See Ticket2725

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/35/head
Michael Niedermayer 11 years ago
parent cd6241b5df
commit d8fb170da2
  1. 3
      libavcodec/ratecontrol.c

@ -328,6 +328,9 @@ int ff_vbv_update(MpegEncContext *s, int frame_size)
rcc->buffer_index -= frame_size; rcc->buffer_index -= frame_size;
if (rcc->buffer_index < 0) { if (rcc->buffer_index < 0) {
av_log(s->avctx, AV_LOG_ERROR, "rc buffer underflow\n"); av_log(s->avctx, AV_LOG_ERROR, "rc buffer underflow\n");
if (frame_size > max_rate && s->qscale == s->avctx->qmax) {
av_log(s->avctx, AV_LOG_ERROR, "max bitrate possibly too small or try trellis with large lmax or increase qmax\n");
}
rcc->buffer_index = 0; rcc->buffer_index = 0;
} }

Loading…
Cancel
Save