From e1449399f3576b9953a5d8e8794a670f30ca9f8c Mon Sep 17 00:00:00 2001 From: "Xiang, Haihao" Date: Mon, 20 Feb 2012 13:51:35 +0800 Subject: [PATCH] Fix the supported bit rate control mode Signed-off-by: Xiang, Haihao --- src/i965_drv_video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i965_drv_video.c b/src/i965_drv_video.c index 1ddbda1..6d32865 100644 --- a/src/i965_drv_video.c +++ b/src/i965_drv_video.c @@ -293,7 +293,7 @@ i965_GetConfigAttributes(VADriverContextP ctx, case VAConfigAttribRateControl: if (entrypoint == VAEntrypointEncSlice) { - attrib_list[i].value = VA_RC_VBR; /* FIXME: */ + attrib_list[i].value = VA_RC_CBR | VA_RC_CQP; break; } -- 2.7.4