From a1e83a2f904bb0e29c99ec0c3d57b56c2960f939 Mon Sep 17 00:00:00 2001 From: Mark Thompson Date: Thu, 16 Feb 2017 20:40:55 +0000 Subject: vaapi_vp8: Use VP8_MAX_QUANT instead of magic number --- libavcodec/vaapi_encode_vp8.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libavcodec/vaapi_encode_vp8.c') diff --git a/libavcodec/vaapi_encode_vp8.c b/libavcodec/vaapi_encode_vp8.c index 4a1c85e66c..423f7483e8 100644 --- a/libavcodec/vaapi_encode_vp8.c +++ b/libavcodec/vaapi_encode_vp8.c @@ -28,6 +28,7 @@ #include "avcodec.h" #include "internal.h" #include "vaapi_encode.h" +#include "vp8.h" typedef struct VAAPIEncodeVP8Context { @@ -161,12 +162,12 @@ static av_cold int vaapi_encode_vp8_configure(AVCodecContext *avctx) VAAPIEncodeContext *ctx = avctx->priv_data; VAAPIEncodeVP8Context *priv = ctx->priv_data; - priv->q_index_p = av_clip(avctx->global_quality, 0, 127); + priv->q_index_p = av_clip(avctx->global_quality, 0, VP8_MAX_QUANT); if (avctx->i_quant_factor > 0.0) priv->q_index_i = av_clip((avctx->global_quality * avctx->i_quant_factor + avctx->i_quant_offset) + 0.5, - 0, 127); + 0, VP8_MAX_QUANT); else priv->q_index_i = priv->q_index_p; -- cgit v1.2.3