Browse Source

Delete unused branch in libaomenc

this branch is leftover from libvpxenc+vp8

Signed-off-by: James Zern <jzern@google.com>
tags/n4.3
elliottk James Zern 6 years ago
parent
commit
ea673a0edb
1 changed files with 5 additions and 9 deletions
  1. +5
    -9
      libavcodec/libaomenc.c

+ 5
- 9
libavcodec/libaomenc.c View File

@@ -572,15 +572,11 @@ static av_cold int aom_init(AVCodecContext *avctx,
enccfg.rc_target_bitrate = av_rescale_rnd(avctx->bit_rate, 1, 1000,
AV_ROUND_NEAR_INF);
} else if (enccfg.rc_end_usage != AOM_Q) {
if (enccfg.rc_end_usage == AOM_CQ) {
enccfg.rc_target_bitrate = 1000000;
} else {
enccfg.rc_end_usage = AOM_Q;
ctx->crf = 32;
av_log(avctx, AV_LOG_WARNING,
"Neither bitrate nor constrained quality specified, using default CRF of %d\n",
ctx->crf);
}
enccfg.rc_end_usage = AOM_Q;
ctx->crf = 32;
av_log(avctx, AV_LOG_WARNING,
"Neither bitrate nor constrained quality specified, using default CRF of %d\n",
ctx->crf);
}

if (avctx->qmin >= 0)


Loading…
Cancel
Save