[FFmpeg-devel] [PATCH v1] avcodec/hevcdec: Replace number with enum
J, Dekker
jdek at itanimul.li
Mon Mar 27 17:34:49 EEST 2023
On 27/03/2023 07:25, Fei Wang wrote:
> From: Fei Wang <fei.w.wang-at-intel.com at ffmpeg.org>
>
> Keep same style with IS_IDR()/IS_BLA().
>
> Signed-off-by: Fei Wang <fei.w.wang at intel.com>
> ---
> libavcodec/hevcdec.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavcodec/hevcdec.h b/libavcodec/hevcdec.h
> index aab816791e..94609e4699 100644
> --- a/libavcodec/hevcdec.h
> +++ b/libavcodec/hevcdec.h
> @@ -75,7 +75,7 @@
> #define IS_IDR(s) ((s)->nal_unit_type == HEVC_NAL_IDR_W_RADL || (s)->nal_unit_type == HEVC_NAL_IDR_N_LP)
> #define IS_BLA(s) ((s)->nal_unit_type == HEVC_NAL_BLA_W_RADL || (s)->nal_unit_type == HEVC_NAL_BLA_W_LP || \
> (s)->nal_unit_type == HEVC_NAL_BLA_N_LP)
> -#define IS_IRAP(s) ((s)->nal_unit_type >= 16 && (s)->nal_unit_type <= 23)
> +#define IS_IRAP(s) ((s)->nal_unit_type >= HEVC_NAL_BLA_W_LP && (s)->nal_unit_type <= HEVC_NAL_RSV_IRAP_VCL23)
>
> enum RPSType {
> ST_CURR_BEF = 0,
Thanks, pushed.
--
jd
More information about the ffmpeg-devel
mailing list