diff options
author | jbrjake <[email protected]> | 2007-01-04 19:48:54 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2007-01-04 19:48:54 +0000 |
commit | 6481b2d707275c582b9cf90dbe96598082a1fe33 (patch) | |
tree | 4b1e8d56bb73b9e7c03e21532687f59d948e44a3 /libhb/common.h | |
parent | b30e6cee64f1005cd31f5deb00ca5120c9852d23 (diff) |
Added CRF x264 rate control method to HBTest.
Constant quantizer is maintained as the default so nothing changes:
HBTest -i input -o output -e x264 -q 0.60
Switch to constant rate factor by throwing a -Q on the end:
HBTest -i input -o output -e x264 -q 0.60 -Q
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@89 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libhb/common.h b/libhb/common.h index 0bd8971e3..eba152f35 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -124,7 +124,8 @@ struct hb_job_s int pass; int h264_13; int h264_level; - + int crf; + /* Audio tracks: Indexes in hb_title_t's audios list, starting from 0. -1 indicates the end of the list */ |