avcodec/libaomenc: minor cosmetics

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2018-03-29 16:18:27 -03:00
parent a8a751ce9a
commit 25abaf3545
1 changed files with 2 additions and 4 deletions

View File

@ -344,8 +344,7 @@ static av_cold int aom_init(AVCodecContext *avctx,
if (avctx->bit_rate) {
enccfg.rc_target_bitrate = av_rescale_rnd(avctx->bit_rate, 1, 1000,
AV_ROUND_NEAR_INF);
} else if (enccfg.rc_end_usage == AOM_Q) {
} else {
} else if (enccfg.rc_end_usage != AOM_Q) {
if (enccfg.rc_end_usage == AOM_CQ) {
enccfg.rc_target_bitrate = 1000000;
} else {
@ -361,8 +360,7 @@ static av_cold int aom_init(AVCodecContext *avctx,
if (avctx->qmax >= 0)
enccfg.rc_max_quantizer = avctx->qmax;
if (enccfg.rc_end_usage == AOM_CQ || enccfg.rc_end_usage == AOM_Q
) {
if (enccfg.rc_end_usage == AOM_CQ || enccfg.rc_end_usage == AOM_Q) {
if (ctx->crf < enccfg.rc_min_quantizer || ctx->crf > enccfg.rc_max_quantizer) {
av_log(avctx, AV_LOG_ERROR,
"CQ level %d must be between minimum and maximum quantizer value (%d-%d)\n",