Home
last modified time | relevance | path

Searched refs:nal_type (Results 1 – 5 of 5) sorted by relevance

/rockchip-linux_mpp/mpp/hal/rkdec/h265d/
H A Dhal_h265d_com.h32 #define IS_IDR(nal_type) (nal_type == 19 || nal_type == 20) argument
33 #define IS_BLA(nal_type) (nal_type == 17 || nal_type == 16 || nal_type == 18) argument
34 #define IS_IRAP(nal_type) (nal_type >= 16 && nal_type <= 23) argument
H A Dhal_h265d_com.c374 RK_U32 nal_type; in hal_h265d_slice_output_rps() local
410 READ_BITS(gb, 6, &nal_type); in hal_h265d_slice_output_rps()
412 if (nal_type > 23) { in hal_h265d_slice_output_rps()
420 if (nal_type >= 16 && nal_type <= 23) in hal_h265d_slice_output_rps()
489 if (!IS_IDR(nal_type)) { in hal_h265d_slice_output_rps()
/rockchip-linux_mpp/mpp/codec/enc/h265/
H A Dh265e_syntax.c27 RK_U32 nal_type = 0; in h265e_get_nal_type() local
30 nal_type = sp->non_reference_flag ? NAL_TSA_N : NAL_TSA_R; in h265e_get_nal_type()
32 nal_type = NAL_IDR_W_RADL; in h265e_get_nal_type()
34 nal_type = sp->non_reference_flag ? NAL_TRAIL_N : NAL_TRAIL_R; in h265e_get_nal_type()
37 return nal_type; in h265e_get_nal_type()
/rockchip-linux_mpp/mpp/codec/dec/h265/
H A Dh265d_parser2_syntax.c418 RK_U32 nal_type; in h265d_syntax_fill_slice() local
428 READ_BITS(gb, 6, &nal_type); in h265d_syntax_fill_slice()
430 if (nal_type >= 32) { in h265d_syntax_fill_slice()
/rockchip-linux_mpp/mpp/codec/dec/avs2/
H A Davs2d_global.h325 RK_U32 nal_type; member