diff options
author | John Stebbins <[email protected]> | 2019-12-08 15:28:07 -0800 |
---|---|---|
committer | John Stebbins <[email protected]> | 2020-03-29 08:23:16 -0600 |
commit | 9f7c5112a0381e315738c856f2344e2a64be183b (patch) | |
tree | faf1fb6fe664da48a2dcff11a535efad70efeb64 /libhb/handbrake/common.h | |
parent | 7b0b2321c65362b785e149ce8c59a152139b2d15 (diff) |
decavsub: add general purpose avcodec subtitle decoder
Currently using it for pgs, srt, and ssa subtitles.
Diffstat (limited to 'libhb/handbrake/common.h')
-rw-r--r-- | libhb/handbrake/common.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libhb/handbrake/common.h b/libhb/handbrake/common.h index 40c2e31ba..175eae8e5 100644 --- a/libhb/handbrake/common.h +++ b/libhb/handbrake/common.h @@ -991,6 +991,7 @@ struct hb_subtitle_s #ifdef __LIBHB__ /* Internal data */ uint32_t codec; /* Input "codec" */ + uint32_t codec_param; /* Per-codec config info */ uint32_t reg_desc; /* registration descriptor of source */ uint32_t stream_type; /* stream type from source stream */ uint32_t substream_type; /* substream for multiplexed streams */ @@ -1257,7 +1258,7 @@ extern hb_work_object_t hb_decsrtsub; extern hb_work_object_t hb_decutf8sub; extern hb_work_object_t hb_dectx3gsub; extern hb_work_object_t hb_decssasub; -extern hb_work_object_t hb_decpgssub; +extern hb_work_object_t hb_decavsub; extern hb_work_object_t hb_encavcodec; extern hb_work_object_t hb_encqsv; extern hb_work_object_t hb_encx264; |