diff options
author | jstebbins <[email protected]> | 2015-04-13 21:54:40 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-04-13 21:54:40 +0000 |
commit | ee3b6d6644a7c35c3df60294c67db753398402d7 (patch) | |
tree | e94f96ddb5ae8d28f3019cfc1e9b626d6331999c /libhb/hb_json.c | |
parent | daa18af4633c27170a8bd7f880d232ca3c688d9b (diff) |
json: fix another cut/paste error. incorrect dither parsing.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7088 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/hb_json.c')
-rw-r--r-- | libhb/hb_json.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/hb_json.c b/libhb/hb_json.c index 680a7ea69..7c831e2e1 100644 --- a/libhb/hb_json.c +++ b/libhb/hb_json.c @@ -1222,7 +1222,7 @@ hb_job_t* hb_dict_to_job( hb_handle_t * h, hb_dict_t *dict ) } else { - audio.out.dither_method = hb_value_get_int(mixdown); + audio.out.dither_method = hb_value_get_int(dither); } } if (audio.in.track >= 0) |