i965_drv_video: Fix a small typo in a comment 90/690/1
authorDamien Lespiau <damien.lespiau@intel.com>
Thu, 16 Dec 2010 16:12:50 +0000 (00:12 +0800)
committerXiang, Haihao <haihao.xiang@intel.com>
Tue, 21 Dec 2010 05:07:45 +0000 (13:07 +0800)
Obviousy 50 - 2 + 8 != 2, 50 - 2 + 8 - 2 seems to be 54 though.

Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
i965_drv_video/i965_avc_ildb.c

index a053062..a6be42b 100644 (file)
@@ -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)