summaryrefslogtreecommitdiffstats
path: root/libhb/hb_json.c
diff options
context:
space:
mode:
Diffstat (limited to 'libhb/hb_json.c')
-rw-r--r--libhb/hb_json.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libhb/hb_json.c b/libhb/hb_json.c
index 672810efb..9e6a2cc1f 100644
--- a/libhb/hb_json.c
+++ b/libhb/hb_json.c
@@ -607,10 +607,6 @@ hb_dict_t* hb_job_to_dict( const hb_job_t * job )
}
else if (job->pts_to_start != 0 || job->pts_to_stop != 0)
{
- range_dict = json_pack_ex(&error, 0, "{s:o, s:o, s:o}",
- "Type", hb_value_string("time"),
- "Start", hb_value_int(job->pts_to_start),
- "End", hb_value_int(job->pts_to_stop));
range_dict = hb_dict_init();
hb_dict_set(source_dict, "Type", hb_value_string("time"));
if (job->pts_to_start > 0)