From: Damien Lespiau Date: Thu, 16 Dec 2010 16:12:50 +0000 (+0800) Subject: i965_drv_video: Fix a small typo in a comment X-Git-Tag: libva-1.0.7~1^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8f5720bf45a505a259b686b4052cf636a65c51ce;p=profile%2Fivi%2Flibva.git 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 --- 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)