mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-08 05:28:40 +00:00
avcodec/svq1enc: Do not print debug RD value before it has been computed
Avoids floating point division by 0 Fixes: Ticket8191 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
36dead4bc2
commit
c297f7e57a
@ -486,9 +486,10 @@ static av_cold int svq1_encode_end(AVCodecContext *avctx)
|
||||
SVQ1EncContext *const s = avctx->priv_data;
|
||||
int i;
|
||||
|
||||
av_log(avctx, AV_LOG_DEBUG, "RD: %f\n",
|
||||
s->rd_total / (double)(avctx->width * avctx->height *
|
||||
avctx->frame_number));
|
||||
if (avctx->frame_number)
|
||||
av_log(avctx, AV_LOG_DEBUG, "RD: %f\n",
|
||||
s->rd_total / (double)(avctx->width * avctx->height *
|
||||
avctx->frame_number));
|
||||
|
||||
s->m.mb_type = NULL;
|
||||
ff_mpv_common_end(&s->m);
|
||||
|
Loading…
Reference in New Issue
Block a user