From 86ebf366e17ae5f9e9b828c295f4d12a48118f52 Mon Sep 17 00:00:00 2001 From: Pauli Oikkonen Date: Mon, 24 Feb 2020 18:18:10 +0200 Subject: [PATCH] fix typo --- src/rate_control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rate_control.c b/src/rate_control.c index cbf79b64..ab36b959 100644 --- a/src/rate_control.c +++ b/src/rate_control.c @@ -339,7 +339,7 @@ void kvz_set_lcu_lambda_and_qp(encoder_state_t * const state, // Since this value will be later combined with qp_pred, clip to half of that instead to be safe state->qp = CLIP(state->frame->QP - 13, state->frame->QP + 12, state->qp); state->qp = CLIP_TO_QP(state->qp); - state->lambda = qp_to_lamba(state, state->qp); + state->lambda = qp_to_lambda(state, state->qp); state->lambda_sqrt = sqrt(state->lambda); } }