diff options
author | Damiano Galassi <damiog@gmail.com> | 2020-11-18 15:12:35 +0100 |
---|---|---|
committer | Damiano Galassi <galad87@users.noreply.github.com> | 2020-11-18 20:42:03 +0100 |
commit | a55facdbab633b57ae34f4557440888e7e5a0be2 (patch) | |
tree | aa4ae57a32a6428701943f910457e5a60588d5db /libhb/handbrake | |
parent | e6666d60eeabb7cc779a062293a3d10e2cd870ee (diff) |
libhb: add 8bit to 10/12bit blend functions to rendersub.
decode video to 10bit or 12bit yuv if there is no 8bit filter in the chain.
Diffstat (limited to 'libhb/handbrake')
-rw-r--r-- | libhb/handbrake/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libhb/handbrake/common.h b/libhb/handbrake/common.h index fb2123a7c..282a8a790 100644 --- a/libhb/handbrake/common.h +++ b/libhb/handbrake/common.h @@ -1449,6 +1449,9 @@ int hb_output_color_prim(hb_job_t * job); int hb_output_color_transfer(hb_job_t * job); int hb_output_color_matrix(hb_job_t * job); +const char * hb_get_format_name(int format); +int hb_get_bit_depth(int format); + #define HB_NEG_FLOAT_REG "(([-])?(([0-9]+([.,][0-9]+)?)|([.,][0-9]+))" #define HB_FLOAT_REG "(([0-9]+([.,][0-9]+)?)|([.,][0-9]+))" #define HB_NEG_INT_REG "(([-]?[0-9]+)" |