diff options
author | jstebbins <[email protected]> | 2014-12-16 16:50:50 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-12-16 16:50:50 +0000 |
commit | f56efd7b52c89da8cac55b4d4a187f2c87fdfee6 (patch) | |
tree | 24eacb856704fa8e4b8b8f0edc76568916f70255 /libhb/deccc608sub.c | |
parent | d0a975e42dcab93e1d2eead350fb1ba3951d977c (diff) |
json: add json APIs
There are several changes to job and title structs that break
current windows interop code. The interop code should be changed
such that it only uses json APIs. So if there is any missing
features (or bugs) in these APIs, please let me know.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6602 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/deccc608sub.c')
-rw-r--r-- | libhb/deccc608sub.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libhb/deccc608sub.c b/libhb/deccc608sub.c index 081eb6b89..ecf60473c 100644 --- a/libhb/deccc608sub.c +++ b/libhb/deccc608sub.c @@ -1741,8 +1741,8 @@ static int decccInit( hb_work_object_t * w, hb_job_t * job ) if( pv->cc608 ) { - pv->cc608->width = job->title->width; - pv->cc608->height = job->title->height; + pv->cc608->width = job->title->geometry.width; + pv->cc608->height = job->title->geometry.height; memcpy(pv->cc608->crop, job->crop, sizeof(int[4])); retval = general_608_init(pv->cc608); if( !retval ) @@ -1759,8 +1759,8 @@ static int decccInit( hb_work_object_t * w, hb_job_t * job ) if (!retval) { // Generate generic SSA Script Info. - int height = job->title->height - job->crop[0] - job->crop[1]; - int width = job->title->width - job->crop[2] - job->crop[3]; + int height = job->title->geometry.height - job->crop[0] - job->crop[1]; + int width = job->title->geometry.width - job->crop[2] - job->crop[3]; hb_subtitle_add_ssa_header(w->subtitle, width, height); } // When rendering subs, we need to push rollup subtitles out |