From 8f5720bf45a505a259b686b4052cf636a65c51ce Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Fri, 17 Dec 2010 00:12:50 +0800 Subject: [PATCH] i965_drv_video: Fix a small typo in a comment Obviousy 50 - 2 + 8 != 2, 50 - 2 + 8 - 2 seems to be 54 though. Signed-off-by: Damien Lespiau --- i965_drv_video/i965_avc_ildb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i965_drv_video/i965_avc_ildb.c b/i965_drv_video/i965_avc_ildb.c index a053062..a6be42b 100644 --- a/i965_drv_video/i965_avc_ildb.c +++ b/i965_drv_video/i965_avc_ildb.c @@ -360,7 +360,7 @@ i965_avc_ildb_upload_constants(VADriverContextP ctx, struct decode_state *decode if (IS_IRONLAKE(i965->intel.device_id)) { root_input->max_concurrent_threads = 76; /* 72 - 2 + 8 - 2 */ } else { - root_input->max_concurrent_threads = 54; /* 50 - 2 + 8 = 2 */ + root_input->max_concurrent_threads = 54; /* 50 - 2 + 8 - 2 */ } if (pic_param->pic_fields.bits.field_pic_flag) -- 2.7.4