diff options
Diffstat (limited to 'libhb/decutf8sub.c')
-rw-r--r-- | libhb/decutf8sub.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/decutf8sub.c b/libhb/decutf8sub.c index b8ea9bf5f..0d8ac5066 100644 --- a/libhb/decutf8sub.c +++ b/libhb/decutf8sub.c @@ -35,8 +35,8 @@ static int decutf8Init(hb_work_object_t *w, hb_job_t *job) w->private_data = pv; // 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); return 0; |