diff options
Diffstat (limited to 'libhb/common.c')
-rw-r--r-- | libhb/common.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libhb/common.c b/libhb/common.c index 21729cd4f..355b458e5 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -1794,8 +1794,8 @@ static void job_clean( hb_job_t * job ) job->x264_preset = NULL; free(job->x264_tune); job->x264_tune = NULL; - free(job->x264_profile); - job->x264_profile = NULL; + free(job->h264_profile); + job->h264_profile = NULL; free(job->h264_level); job->h264_level = NULL; @@ -1935,15 +1935,15 @@ 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_h264_profile( hb_job_t *job, const char *profile ) { if ( job ) { - hb_update_str( &job->x264_profile, profile ); + hb_update_str( &job->h264_profile, profile ); } } -void hb_job_set_x264_level( hb_job_t *job, const char *level ) +void hb_job_set_h264_level( hb_job_t *job, const char *level ) { if ( job ) { |