diff options
author | jstebbins <[email protected]> | 2011-08-08 20:24:30 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-08-08 20:24:30 +0000 |
commit | 8f930a4ecbf1bbb3f658fae5bdeb7c272ff4250e (patch) | |
tree | c1cbcd43e43f8e18d5c0db89e5ae51eb3d02b04e /libhb/common.h | |
parent | 1a10eb0fcb770aa7eab1a08e0ebd03646bb6bfdc (diff) |
libhb: allow changing colorimetry in x264 options
Setting "colorprim", "transfer", or "colormarix" in the x264 advanced
options will no longer be ignored and will propagate to the mp4 muxer
where those values also get set in the container.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4164 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libhb/common.h b/libhb/common.h index 88bb8389d..a042c25fa 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -243,6 +243,9 @@ struct hb_job_s int pass; char *advanced_opts; int areBframes; + int color_matrix_code; + int color_prim; + int color_transfer; int color_matrix; /* List of audio settings. */ |