mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 19:24:06 +00:00
Fixed allocated size for coefficient arrays
This commit is contained in:
parent
7a1bf6b17d
commit
117f74b481
|
@ -168,9 +168,9 @@ typedef struct {
|
|||
} lcu_ref_px_t;
|
||||
|
||||
typedef struct {
|
||||
coefficient y[LCU_REF_PX_WIDTH];
|
||||
coefficient u[LCU_REF_PX_WIDTH / 2];
|
||||
coefficient v[LCU_REF_PX_WIDTH / 2];
|
||||
coefficient y[LCU_LUMA_SIZE];
|
||||
coefficient u[LCU_CHROMA_SIZE];
|
||||
coefficient v[LCU_CHROMA_SIZE];
|
||||
} lcu_coeff_t;
|
||||
|
||||
typedef struct {
|
||||
|
|
Loading…
Reference in a new issue