diff options
author | Damiano Galassi <[email protected]> | 2019-02-14 14:22:58 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2019-02-14 14:22:58 +0100 |
commit | 54140f90ecb0e9e2ccb312bde22e64133518ed9b (patch) | |
tree | 3de823bea7abafef13f547e794549b9933b37021 /libhb/hbffmpeg.c | |
parent | 49cabc478c21c52f5aaab6cd9b354224adc186d7 (diff) |
libhb: enable SWS_CS_BT2020 matrix.
Diffstat (limited to 'libhb/hbffmpeg.c')
-rw-r--r-- | libhb/hbffmpeg.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libhb/hbffmpeg.c b/libhb/hbffmpeg.c index 5b0a7c24d..eff7623f9 100644 --- a/libhb/hbffmpeg.c +++ b/libhb/hbffmpeg.c @@ -160,11 +160,10 @@ int hb_ff_get_colorspace(int color_matrix) case HB_COLR_MAT_BT709: color_space = SWS_CS_ITU709; break; - /* enable this when implemented in FFmpeg - case HB_COLR_MAT_BT2020: + case HB_COLR_MAT_BT2020_CL: + case HB_COLR_MAT_BT2020_NCL: color_space = SWS_CS_BT2020; break; - */ default: break; } |