Opened 14 years ago Closed 13 years ago #167 closed defect (fixed)JCTVC-E049 bugs about pixel maximum value of SAO output and the memory allocation of CABAC encoder
Description
Using revision r928 UInt uiMaxY = 255 << g_uiBitIncrement;
The maximum value of SAO should use the variable consistent with the other part of HM-3.0 as following UInt uiMaxY = g_uiIBDI_MAX;
In TEncTop.cpp:143, the variable g_uiMaxCUDepth is used to allocate the memory of variable m_pppcRDSbacCoder; however, SAO will re-use the variable m_pppcRDSbacCoder and therefore, the memory allocation process of pppcRDSbacCoder need set variable g_uiMaxCUDepth to 4 temporary. Change History (5)comment:1 Changed 14 years ago by chihming.fucomment:2 Changed 13 years ago by fbossen
Fixed in r929 comment:3 Changed 13 years ago by davidf
Updating component after adding WD (Text) tickets comment:4 Changed 13 years ago by davidf
comment:5 Changed 13 years ago by davidf
Note: See
TracTickets for help on using
tickets. | This list contains all users that will be notified about changes made to this ticket. These roles will be notified: Reporter, Owner, Subscriber, Participant
|
In TEncTop.cpp:99, the variable g_uiMaxCUDepth is used to allocate the memory of variable m_pppcRDSbacCoder; however, SAO will re-use the variable m_pppcRDSbacCoder and therefore, the memory allocation process of pppcRDSbacCoder need set variable g_uiMaxCUDepth to 4 temporary.