We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cc1fd00 + 5ae7857 commit 96ade5cCopy full SHA for 96ade5c
src/transform.c
@@ -570,9 +570,9 @@ void uvg_chroma_transform_search(
570
enum uvg_tree_type tree_type)
571
{
572
ALIGNED(64) coeff_t u_coeff[LCU_WIDTH_C * LCU_WIDTH_C * 5];
573
- ALIGNED(64) uint8_t u_recon[LCU_WIDTH_C * LCU_WIDTH_C * 5];
+ ALIGNED(64) uvg_pixel u_recon[LCU_WIDTH_C * LCU_WIDTH_C * 5];
574
ALIGNED(64) coeff_t v_coeff[LCU_WIDTH_C * LCU_WIDTH_C * 2]; // In case of JCCR the v channel does not have coefficients
575
- ALIGNED(64) uint8_t v_recon[LCU_WIDTH_C * LCU_WIDTH_C * 5];
+ ALIGNED(64) uvg_pixel v_recon[LCU_WIDTH_C * LCU_WIDTH_C * 5];
576
const int width = cu_loc->chroma_width;
577
const int height = cu_loc->chroma_height;
578
0 commit comments