diff options
author | Damien Lespiau <damien.lespiau@intel.com> | 2010-12-17 00:12:50 +0800 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2010-12-21 13:07:45 +0800 |
commit | 2ecfc2e8cf6a0d8b750392f48d45a5cfb59e0d8c (patch) | |
tree | 403509d756cd0a06ed357012418aa5bdfd1b827b | |
parent | 1a5b1ab15fa51a32e581ff253417aa31927eae9f (diff) |
i965_drv_video: Fix a small typo in a comment1.0.7
Obviousy 50 - 2 + 8 != 2, 50 - 2 + 8 - 2 seems to be 54 though.
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
-rw-r--r-- | i965_avc_ildb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i965_avc_ildb.c b/i965_avc_ildb.c index a053062..a6be42b 100644 --- a/i965_avc_ildb.c +++ b/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) |