diff options
author | jstebbins <[email protected]> | 2010-09-28 22:10:49 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2010-09-28 22:10:49 +0000 |
commit | 03b2ce0e91c4e4ed44445a075ef5f35bc052b5b8 (patch) | |
tree | 24a1def4ca91cba98676508c6a3b1482ba131cb5 /libhb/internal.h | |
parent | f1997be4ed1dd373316ac842685f18a6f8ab05ba (diff) |
SSA subtitle burn in
Anime fans rejoice! This patch adds SSA subtitle burn-in support with libass.
Therefore SSA subtitles should now be rendered in full quality, with the
appropriate embedded fonts and positioning information.
Thanks to davidfstr
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3557 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/internal.h')
-rw-r--r-- | libhb/internal.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libhb/internal.h b/libhb/internal.h index fe1cdca26..30bf022d5 100644 --- a/libhb/internal.h +++ b/libhb/internal.h @@ -85,15 +85,16 @@ struct hb_buffer_s /* Holds the output PTS from x264, for use by b-frame offsets in muxmp4.c */ int64_t renderOffset; - // VOB subtitle packets: + // PICTURESUB subtitle packets: // Location and size of the subpicture. int x; int y; int width; int height; + hb_buffer_t * next_subpicture; // Video packets (after processing by the hb_sync_video work-object): - // A (copy of a) VOB subtitle packet that needs to be burned into this video packet by the hb_render work-object. + // A (copy of a) PICTURESUB subtitle packet that needs to be burned into this video packet by the hb_render work-object. // Subtitles that are simply passed thru are NOT attached to the associated video packets. hb_buffer_t * sub; |