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/hb.c | |
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/hb.c')
-rw-r--r-- | libhb/hb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/hb.c b/libhb/hb.c index ac9a7d015..43c5baa3c 100644 --- a/libhb/hb.c +++ b/libhb/hb.c @@ -1479,8 +1479,8 @@ void hb_add( hb_handle_t * h, hb_job_t * job ) job_copy->x264_preset = strdup( job->x264_preset ); if ( job->x264_tune ) job_copy->x264_tune = strdup( job->x264_tune ); - if ( job->x264_profile ) - job_copy->x264_profile = strdup( job->x264_profile ); + if ( job->h264_profile ) + job_copy->h264_profile = strdup( job->h264_profile ); if ( job->h264_level ) job_copy->h264_level = strdup( job->h264_level ); |