diff options
author | John Stebbins <[email protected]> | 2019-07-11 12:39:33 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-07-11 12:39:33 -0700 |
commit | 5b49a09794566c65ef76abd4ffa7598c62d1fe89 (patch) | |
tree | 4210057502505487874e685d0c2025a1de11802c /libhb | |
parent | c692e10e81f3748f8b60add4c2cb1051d0c27d48 (diff) |
work: fix logging of SSA import tracks
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/work.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libhb/work.c b/libhb/work.c index 56e7270bb..acd275053 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -620,6 +620,18 @@ void hb_display_job_info(hb_job_t *job) subtitle->config.default_track ? ", Default" : "", subtitle->config.offset, subtitle->config.src_codeset); } + else if (subtitle->source == IMPORTSSA) + { + /* For SSA, print offset */ + hb_log(" * subtitle track %d, %s (track %d, id 0x%x, Text) -> " + "%s%s, offset: %"PRId64, + subtitle->out_track, subtitle->lang, subtitle->track, + subtitle->id, + subtitle->config.dest == RENDERSUB ? "Render/Burn-in" + : "Passthrough", + subtitle->config.default_track ? ", Default" : "", + subtitle->config.offset); + } else { hb_log(" * subtitle track %d, %s (track %d, id 0x%x, %s) -> " |