diff options
author | Rodeo <[email protected]> | 2014-02-18 18:37:10 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2014-02-18 18:37:10 +0000 |
commit | c59e8c81a797deda9966f3ac22cfc7c7c5b8e4d5 (patch) | |
tree | b0c19ed46b3f5aaeb5a121ce68f7c8f07be5496f /libhb/common.c | |
parent | f296196f1bafd0616ca9cf6b9fc1ecc3a59c97d7 (diff) |
Remove HB_API_OLD_PRESET_SETTERS cruft.
All UIs and Interop should be up-to-date.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6044 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.c')
-rw-r--r-- | libhb/common.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/libhb/common.c b/libhb/common.c index 1668ff210..6e37c1c31 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -3261,33 +3261,6 @@ void hb_job_set_file(hb_job_t *job, const char *file) } } -#ifdef HB_API_OLD_PRESET_SETTERS -void hb_job_set_x264_preset(hb_job_t *job, const char *preset) -{ - hb_job_set_encoder_preset(job, preset); -} - -void hb_job_set_x264_tune(hb_job_t *job, const char *tune) -{ - hb_job_set_encoder_tune(job, tune); -} - -void hb_job_set_advanced_opts(hb_job_t *job, const char *opts) -{ - hb_job_set_encoder_options(job, opts); -} - -void hb_job_set_h264_profile(hb_job_t *job, const char *profile) -{ - hb_job_set_encoder_profile(job, profile); -} - -void hb_job_set_h264_level(hb_job_t *job, const char *level) -{ - hb_job_set_encoder_level(job, level); -} -#endif - hb_filter_object_t * hb_filter_copy( hb_filter_object_t * filter ) { if( filter == NULL ) |