diff options
author | Rodeo <[email protected]> | 2014-02-13 15:18:15 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2014-02-13 15:18:15 +0000 |
commit | 1a1b1591ef5acd8495dc8e736a47852e93694020 (patch) | |
tree | 7c9cd72eff31ee912ad12fa8c6f16b7d01e40a7a /libhb/hb.c | |
parent | 94d470181e290d89f3be93cd13c28f415dd00ab7 (diff) |
libhb: make encoder options less x264-centric.
profile/level control and, to a lesser extent,
encoder presets and tunes are becoming more common.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6031 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/hb.c')
-rw-r--r-- | libhb/hb.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/libhb/hb.c b/libhb/hb.c index 6149acd87..68ac9f0a9 100644 --- a/libhb/hb.c +++ b/libhb/hb.c @@ -1398,18 +1398,18 @@ void hb_add( hb_handle_t * h, hb_job_t * job ) job_copy->list_attachment = hb_attachment_list_copy( job->list_attachment ); job_copy->metadata = hb_metadata_copy( job->metadata ); - if ( job->file ) - job_copy->file = strdup( job->file ); - if ( job->advanced_opts ) - job_copy->advanced_opts = strdup( job->advanced_opts ); - if ( job->x264_preset ) - job_copy->x264_preset = strdup( job->x264_preset ); - if ( job->x264_tune ) - job_copy->x264_tune = strdup( job->x264_tune ); - if ( job->h264_profile ) - job_copy->h264_profile = strdup( job->h264_profile ); - if ( job->h264_level ) - job_copy->h264_level = strdup( job->h264_level ); + if (job->encoder_preset != NULL) + job_copy->encoder_preset = strdup(job->encoder_preset); + if (job->encoder_tune != NULL) + job_copy->encoder_tune = strdup(job->encoder_tune); + if (job->encoder_options != NULL) + job_copy->encoder_options = strdup(job->encoder_options); + if (job->encoder_profile != NULL) + job_copy->encoder_profile = strdup(job->encoder_profile); + if (job->encoder_level != NULL) + job_copy->encoder_level = strdup(job->encoder_level); + if (job->file != NULL) + job_copy->file = strdup(job->file); job_copy->h = h; job_copy->pause = h->pause_lock; |