summaryrefslogtreecommitdiffstats
path: root/libhb/encavcodec.c
diff options
context:
space:
mode:
authorRodeo <[email protected]>2012-03-29 13:31:33 +0000
committerRodeo <[email protected]>2012-03-29 13:31:33 +0000
commita0fd4604194e63f5219b1da61afcd19d4bdcfc9f (patch)
treed7de3205ae96abb67f906525abcb8676bec750ba /libhb/encavcodec.c
parent5cfc8521de5547646afd47b46c8565dac351c50d (diff)
encx264: add functionality to retrieve the "preferred" option name for options that have multiple names.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4554 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/encavcodec.c')
-rw-r--r--libhb/encavcodec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/encavcodec.c b/libhb/encavcodec.c
index 5a77ceb4b..4a44d4343 100644
--- a/libhb/encavcodec.c
+++ b/libhb/encavcodec.c
@@ -161,7 +161,7 @@ int encavcodecInit( hb_work_object_t * w, hb_job_t * job )
hb_dict_t * lavc_opts = NULL;
if( job->advanced_opts != NULL && *job->advanced_opts != '\0' )
{
- lavc_opts = hb_encopts_to_dict( job->advanced_opts );
+ lavc_opts = hb_encopts_to_dict( job->advanced_opts, job->vcodec );
}
/* iterate through lavc_opts and have avutil parse the options for us */
int ret;