Merge pull request #22 from Jamaika1/patch-2

[10bit] don't overwrite heap
This commit is contained in:
Jovasa 2024-07-31 11:02:27 +03:00 committed by GitHub
commit 96ade5c133
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -570,9 +570,9 @@ void uvg_chroma_transform_search(
enum uvg_tree_type tree_type) enum uvg_tree_type tree_type)
{ {
ALIGNED(64) coeff_t u_coeff[LCU_WIDTH_C * LCU_WIDTH_C * 5]; ALIGNED(64) coeff_t u_coeff[LCU_WIDTH_C * LCU_WIDTH_C * 5];
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];
ALIGNED(64) coeff_t v_coeff[LCU_WIDTH_C * LCU_WIDTH_C * 2]; // In case of JCCR the v channel does not have coefficients ALIGNED(64) coeff_t v_coeff[LCU_WIDTH_C * LCU_WIDTH_C * 2]; // In case of JCCR the v channel does not have coefficients
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];
const int width = cu_loc->chroma_width; const int width = cu_loc->chroma_width;
const int height = cu_loc->chroma_height; const int height = cu_loc->chroma_height;