diff options
author | jstebbins <[email protected]> | 2012-12-27 22:49:32 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2012-12-27 22:49:32 +0000 |
commit | d21a843f23df368e191925e2665caf4ecf7390b5 (patch) | |
tree | 87910495c5fa44e70549415b226b3498b6bf156f /libhb/common.h | |
parent | 40373fc63256c3e135e9ca0352d70efe1291e929 (diff) |
LinGui: add x264 preset/tune/profile/level support
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5110 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libhb/common.h b/libhb/common.h index 796c3df38..b929852d0 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -120,6 +120,10 @@ void hb_limit_rational64( int64_t *x, int64_t *y, int64_t num, int64_t den, int6 void hb_fix_aspect( hb_job_t * job, int keep ); void hb_job_set_advanced_opts( hb_job_t *job, const char *advanced_opts ); +void hb_job_set_x264_preset( hb_job_t *job, const char *preset ); +void hb_job_set_x264_tune( hb_job_t *job, const char *tune ); +void hb_job_set_x264_profile( hb_job_t *job, const char *profile ); +void hb_job_set_x264_level( hb_job_t *job, const char *level ); void hb_job_set_file( hb_job_t *job, const char *file ); hb_audio_t *hb_audio_copy(const hb_audio_t *src); |