<div style="line-height:1.7;color:#000000;font-size:14px;font-family:arial"><DIV>I think we can do more optimize on it, since it is use series<BR><BR>At 2014-02-07 08:44:02,"Satoshi Nakagawa" <nakagawa424@oki.com> wrote:<BR>># HG changeset patch<BR>># User Satoshi Nakagawa <nakagawa424@oki.com><BR>># Date 1391733642 -32400<BR>>#      Fri Feb 07 09:40:42 2014 +0900<BR>># Node ID 0564ff2d14d17ec46ea27d5cb20a770c1b80144f<BR>># Parent  40bec5582eca28ec0bc896e4e9412d580e42f4e4<BR>>add static const for local tables<BR>><BR>>diff -r 40bec5582eca -r 0564ff2d14d1 source/Lib/TLibCommon/TComDataCU.cpp<BR>>--- a/source/Lib/TLibCommon/TComDataCU.cpp   Thu Feb 06 12:09:28 2014 -0600<BR>>+++ b/source/Lib/TLibCommon/TComDataCU.cpp    Fri Feb 07 09:40:42 2014 +0900<BR>>@@ -2194,8 +2194,8 @@<BR>>     if (getSlice()->isInterB())<BR>>     {<BR>>         // TODO: TComRom??<BR>>-        uint32_t priorityList0[12] = { 0, 1, 0, 2, 1, 2, 0, 3, 1, 3, 2, 3 };<BR>>-        uint32_t priorityList1[12] = { 1, 0, 2, 0, 2, 1, 3, 0, 3, 1, 3, 2 };<BR>>+        static const uint32_t priorityList0[12] = { 0, 1, 0, 2, 1, 2, 0, 3, 1, 3, 2, 3 };<BR>>+        static const uint32_t priorityList1[12] = { 1, 0, 2, 0, 2, 1, 3, 0, 3, 1, 3, 2 };<BR></DIV></div>