diff options
author | Rodeo <[email protected]> | 2013-01-30 00:09:57 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2013-01-30 00:09:57 +0000 |
commit | d7e26a9c04fe2a243d38002bf5a8522ccb8beedf (patch) | |
tree | 671cd5c6613ec80cf6eb69a2f1ae4878629de689 /libhb/common.h | |
parent | 11a7f3a63bc873c07e81583c989581152d89d3f9 (diff) |
x264 preset system: miscellaneous improvements.
See https://reviews.handbrake.fr/r/421/ for details.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5225 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libhb/common.h b/libhb/common.h index 32a23d5fd..ac7d46287 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -122,8 +122,8 @@ 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_h264_profile( hb_job_t *job, const char *profile ); +void hb_job_set_h264_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); @@ -355,10 +355,10 @@ struct hb_job_s int cfr; int pass; int fastfirstpass; - char *advanced_opts; - char *x264_profile; char *x264_preset; char *x264_tune; + char *advanced_opts; + char *h264_profile; char *h264_level; int areBframes; @@ -1032,13 +1032,13 @@ const char * hb_subsource_name( int source ); // unparse a set of x264 settings to an HB encopts string char * hb_x264_param_unparse(const char *x264_preset, const char *x264_tune, - const char *x264_encopts, const char *x264_profile, + const char *x264_encopts, const char *h264_profile, const char *h264_level, int width, int height); -// x264 preset/tune/profile & h264 level helpers +// x264 preset/tune & h264 profile/level helpers const char * const * hb_x264_presets(); const char * const * hb_x264_tunes(); -const char * const * hb_x264_profiles(); +const char * const * hb_h264_profiles(); const char * const * hb_h264_levels(); // x264 option name/synonym helper |