diff options
author | jstebbins <[email protected]> | 2010-05-30 18:15:03 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2010-05-30 18:15:03 +0000 |
commit | 6c2ab0ec0cef0c3f6cc2771ad28a3d86b8df61e0 (patch) | |
tree | bf0d6931b501b89b805bdd967778f7009b189a38 /libhb/muxmkv.c | |
parent | 4e02d96c397f8912bda8ca975ffc398ccec77ca1 (diff) |
preserve vobsub palette, width, and height from mkv and mp4 vobsub tracks
Thanks to davidfster for mp4 palette addition.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3337 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/muxmkv.c')
-rw-r--r-- | libhb/muxmkv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/muxmkv.c b/libhb/muxmkv.c index 8fcd30b82..aa320e9aa 100644 --- a/libhb/muxmkv.c +++ b/libhb/muxmkv.c @@ -277,7 +277,7 @@ static int MKVInit( hb_mux_object_t * m ) for (j = 0; j < 16; j++) rgb[j] = hb_yuv2rgb(subtitle->palette[j]); len = snprintf(subidx, 2048, subidx_fmt, - title->width, title->height, + subtitle->width, subtitle->height, 0, 0, "OFF", rgb[0], rgb[1], rgb[2], rgb[3], rgb[4], rgb[5], rgb[6], rgb[7], |