Searched refs:cdef (Results 1 – 4 of 4) sorted by relevance
| /rockchip-linux_mpp/mpp/codec/dec/av1/ |
| H A D | av1d_parser2_syntax.c | 216 pp->cdef.damping = frame_header->cdef_damping_minus_3; in av1d_fill_picparams() 217 pp->cdef.bits = frame_header->cdef_bits; in av1d_fill_picparams() 219 pp->cdef.y_strengths[i].primary = frame_header->cdef_y_pri_strength[i]; in av1d_fill_picparams() 220 pp->cdef.y_strengths[i].secondary = frame_header->cdef_y_sec_strength[i]; in av1d_fill_picparams() 221 pp->cdef.uv_strengths[i].primary = frame_header->cdef_uv_pri_strength[i]; in av1d_fill_picparams() 222 pp->cdef.uv_strengths[i].secondary = frame_header->cdef_uv_sec_strength[i]; in av1d_fill_picparams()
|
| /rockchip-linux_mpp/mpp/hal/rkdec/av1d/ |
| H A D | hal_av1d_vdpu383.c | 1451 … RK_U32 enable_cdef_y = dxva->cdef.y_strengths[0].primary || dxva->cdef.y_strengths[0].secondary; in prepare_uncompress_header() 1452 …RK_U32 enable_cdef_uv = dxva->cdef.uv_strengths[0].primary || dxva->cdef.uv_strengths[0].secondary; in prepare_uncompress_header() 1454 enable_cdef = enable_cdef && (dxva->cdef.bits || enable_cdef_y || enable_cdef_uv); in prepare_uncompress_header() 1619 mpp_put_bits(&bp, dxva->cdef.damping + 3, 3); in prepare_uncompress_header() 1620 mpp_put_bits(&bp, dxva->cdef.bits, 2); in prepare_uncompress_header() 1623 mpp_put_bits(&bp, dxva->cdef.y_strengths[i].primary, 4); in prepare_uncompress_header() 1626 mpp_put_bits(&bp, dxva->cdef.uv_strengths[i].primary, 4); in prepare_uncompress_header() 1629 mpp_put_bits(&bp, dxva->cdef.y_strengths[i].secondary, 2); in prepare_uncompress_header() 1632 mpp_put_bits(&bp, dxva->cdef.uv_strengths[i].secondary, 2); in prepare_uncompress_header()
|
| /rockchip-linux_mpp/mpp/hal/vpu/av1d/ |
| H A D | hal_av1d_vdpu.c | 1621 regs->swreg7.sw_cdef_bits = dxva->cdef.bits; in vdpu_av1d_set_cdef() 1622 regs->swreg7.sw_cdef_damping = dxva->cdef.damping; in vdpu_av1d_set_cdef() 1625 if (i == (1 << (dxva->cdef.bits))) break; in vdpu_av1d_set_cdef() 1626 luma_pri_strength |= dxva->cdef.y_strengths[i].primary << (i * 4); in vdpu_av1d_set_cdef() 1627 luma_sec_strength |= dxva->cdef.y_strengths[i].secondary << (i * 2); in vdpu_av1d_set_cdef() 1628 chroma_pri_strength |= dxva->cdef.uv_strengths[i].primary << (i * 4); in vdpu_av1d_set_cdef() 1629 chroma_sec_strength |= dxva->cdef.uv_strengths[i].secondary << (i * 2); in vdpu_av1d_set_cdef() 1950 regs->swreg5.sw_enable_cdef = !(dxva->cdef.bits == 0 && dxva->cdef.damping == 0 && in vdpu_av1d_gen_regs() 1951 dxva->cdef.y_strengths[0].primary == 0 && in vdpu_av1d_gen_regs() 1952 dxva->cdef.y_strengths[0].secondary == 0 && in vdpu_av1d_gen_regs() [all …]
|
| /rockchip-linux_mpp/mpp/common/ |
| H A D | av1d_syntax.h | 159 } cdef; member
|