diff options
author | ritsuka <[email protected]> | 2009-10-02 19:01:13 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2009-10-02 19:01:13 +0000 |
commit | d518796f3d77372db728de467268a63fda18a47f (patch) | |
tree | 5a74775df00625167004ac6ed61b37c77a7d8c00 | |
parent | 9da157e1f6212cf5874ccb3d5781de8d4c0671af (diff) |
Align the subtitles at the bottom on iPod Classic/Nano.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2860 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | libhb/muxmp4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/muxmp4.c b/libhb/muxmp4.c index 0ee3debc1..1264f9b56 100644 --- a/libhb/muxmp4.c +++ b/libhb/muxmp4.c @@ -451,7 +451,7 @@ static int MP4Init( hb_mux_object_t * m ) MP4SetTrackIntegerProperty(m->file, mux_data->track, "mdia.minf.stbl.stsd.tx3g.dataReferenceIndex", 1); MP4SetTrackIntegerProperty(m->file, mux_data->track, "mdia.minf.stbl.stsd.tx3g.horizontalJustification", 1); - MP4SetTrackIntegerProperty(m->file, mux_data->track, "mdia.minf.stbl.stsd.tx3g.verticalJustification", 0); + MP4SetTrackIntegerProperty(m->file, mux_data->track, "mdia.minf.stbl.stsd.tx3g.verticalJustification", 255); MP4SetTrackIntegerProperty(m->file, mux_data->track, "mdia.minf.stbl.stsd.tx3g.bgColorAlpha", 255); |