diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h index 2afad011b7..a0be1bfa1c 100644 --- a/libavcodec/hevc.h +++ b/libavcodec/hevc.h @@ -411,6 +411,7 @@ typedef struct HEVCSPS { HEVCWindow pic_conf_win; int bit_depth; + int bit_depth_chroma; int pixel_shift; enum AVPixelFormat pix_fmt; diff --git a/libavcodec/hevc_ps.c b/libavcodec/hevc_ps.c index 95d976ff08..8a38dde038 100644 --- a/libavcodec/hevc_ps.c +++ b/libavcodec/hevc_ps.c @@ -933,6 +933,7 @@ int ff_hevc_parse_sps(HEVCSPS *sps, GetBitContext *gb, unsigned int *sps_id, sps->bit_depth, bit_depth_chroma); return AVERROR_INVALIDDATA; } + sps->bit_depth_chroma = bit_depth_chroma; ret = map_pixel_format(avctx, sps); if (ret < 0)