diff options
author | jstebbins <[email protected]> | 2015-04-05 23:21:09 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-04-05 23:21:09 +0000 |
commit | d030ab8b629ebd577ca845c4e77f9b7ef73dc936 (patch) | |
tree | 1123107c17349c3da80d42647ef4ec3b5e70fb1d /libhb/common.c | |
parent | 712180d874cefa835b159461552543f071455d4d (diff) |
deccc608sub: improve CC positioning
The safe zone margin was not wide enough and the font size was a little
too small.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7063 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.c')
-rw-r--r-- | libhb/common.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libhb/common.c b/libhb/common.c index 053a4c4c2..bca6e6956 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -3765,13 +3765,11 @@ void hb_subtitle_close( hb_subtitle_t **sub ) * *********************************************************************/ int hb_subtitle_add_ssa_header(hb_subtitle_t *subtitle, const char *font, - int w, int h) + int fs, int w, int h) { // Free any pre-existing extradata free(subtitle->extradata); - int fs = h * .066; - // SRT subtitles are represented internally as SSA // Create an SSA header const char * ssa_header = |