diff options
author | Rodeo <[email protected]> | 2012-11-27 22:13:22 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2012-11-27 22:13:22 +0000 |
commit | be32ecfd33c88bccf3b009883d6ac536013fadb8 (patch) | |
tree | d6689b14adfc2ee42e1f9e992f9deeb52d297eeb /libhb | |
parent | 65cc186a39afb16732024c07ed332c667b1d1fad (diff) |
hb_x264_param_unparse(): fix typo.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5086 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/encx264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/encx264.c b/libhb/encx264.c index 1eb9fb98b..c82897df3 100644 --- a/libhb/encx264.c +++ b/libhb/encx264.c @@ -1454,7 +1454,7 @@ char * hb_x264_param_unparse(const char *x264_preset, const char *x264_tune, { // can be modified by: level sprintf(buf, "%d", param.rc.i_vbv_max_bitrate); - hb_dict_set(&x264_opts, "vbv-bitrate", buf); + hb_dict_set(&x264_opts, "vbv-maxrate", buf); } else { |