summaryrefslogtreecommitdiffstats
path: root/libhb/hb_json.c
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2015-04-26 02:08:58 +0000
committerjstebbins <[email protected]>2015-04-26 02:08:58 +0000
commite8d8805fa55589da7a40503d665964ba3bfd117b (patch)
tree2877369a85b26695f72bc0659de6a5b3940a3205 /libhb/hb_json.c
parentd430e1f03c3a955ec7ca5abea9bf1256e78af183 (diff)
json: fix "End" parsing of p-to-p frame range
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7128 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/hb_json.c')
-rw-r--r--libhb/hb_json.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/hb_json.c b/libhb/hb_json.c
index 7c831e2e1..ee20503bf 100644
--- a/libhb/hb_json.c
+++ b/libhb/hb_json.c
@@ -480,7 +480,7 @@ hb_dict_t* hb_job_to_dict( const hb_job_t * job )
range_dict = json_pack_ex(&error, 0, "{s:o, s:o, s:o}",
"Type", hb_value_string("frame"),
"Start", hb_value_int(job->frame_to_start),
- "Stop", hb_value_int(job->frame_to_stop));
+ "End", hb_value_int(job->frame_to_stop));
}
else
{