diff options
author | Damiano Galassi <damiog@gmail.com> | 2021-03-02 09:19:09 +0100 |
---|---|---|
committer | Damiano Galassi <damiog@gmail.com> | 2021-03-02 09:19:09 +0100 |
commit | a18324937904d7d86b7a9117d63d0153f9cbf6da (patch) | |
tree | a07f9ff11729b477958e129cb343ef14e2cba265 /libhb/common.c | |
parent | 3235f635032d90c0a220b8a81946dd15e4fd2297 (diff) |
common: add videotoolbox hevc 10bit to hb_video_encoder_get_depth().
Diffstat (limited to 'libhb/common.c')
-rw-r--r-- | libhb/common.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libhb/common.c b/libhb/common.c index ecfbf96d0..0eb980468 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -1521,6 +1521,9 @@ int hb_video_encoder_get_depth(int encoder) #if HB_PROJECT_FEATURE_QSV case HB_VCODEC_QSV_H265_10BIT: #endif +#ifdef __APPLE__ + case HB_VCODEC_FFMPEG_VT_H265_10BIT: +#endif case HB_VCODEC_X264_10BIT: case HB_VCODEC_X265_10BIT: return 10; |