mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
[isp] Fix lfnst constraint check when ISP is used. Remove some obsolete comments.
This commit is contained in:
parent
3c861e4c02
commit
7005d222d5
4
src/cu.h
4
src/cu.h
|
@ -172,8 +172,8 @@ typedef struct
|
|||
uint8_t violates_mts_coeff_constraint : 1;
|
||||
uint8_t mts_last_scan_pos : 1;
|
||||
|
||||
uint8_t violates_lfnst_constrained_luma : 1; // Two types, luma and chroma. Luma index is 0.
|
||||
uint8_t violates_lfnst_constrained_chroma : 1; // Two types, luma and chroma. Luma index is 0.
|
||||
uint8_t violates_lfnst_constrained_luma : 1;
|
||||
uint8_t violates_lfnst_constrained_chroma : 1;
|
||||
uint8_t lfnst_last_scan_pos : 1;
|
||||
uint8_t lfnst_idx : 2;
|
||||
uint8_t cr_lfnst_idx : 2;
|
||||
|
|
|
@ -151,7 +151,9 @@ bool uvg_is_lfnst_allowed(
|
|||
cu_info_t* split_cu = lcu ? LCU_GET_CU_AT_PX(lcu, local_split_x, local_split_y) :
|
||||
uvg_cu_array_at_const(frame->cu_array, local_split_x, local_split_y);
|
||||
|
||||
if (cbf_is_set(split_cu->cbf, depth, COLOR_Y)) {
|
||||
//if (cbf_is_set(split_cu->cbf, depth, COLOR_Y)) {
|
||||
// ISP_TODO: remove this if clause altogether if it seems it is not needed
|
||||
if (true) {
|
||||
non_zero_coeff_non_ts_corner_8x8 |= (luma_flag && split_cu->violates_lfnst_constrained_luma) || (chroma_flag && split_cu->violates_lfnst_constrained_chroma);
|
||||
//last_scan_pos |= split_cu->lfnst_last_scan_pos;
|
||||
last_scan_pos |= true;
|
||||
|
|
Loading…
Reference in a new issue