summaryrefslogtreecommitdiffstats
path: root/libhb/muxmp4.c
diff options
context:
space:
mode:
authorclee <[email protected]>2007-04-16 23:03:01 +0000
committerclee <[email protected]>2007-04-16 23:03:01 +0000
commit41bcb6e41d0200a10fbcde65188270df4b39e388 (patch)
treeba2ab45aa56c334d4221688f40d83ef1972def6b /libhb/muxmp4.c
parent978bc1e56e07c217a54ebe7f128dcce97df929a7 (diff)
Successfully create MP4 files bigger than 4GB
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@518 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/muxmp4.c')
-rw-r--r--libhb/muxmp4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/muxmp4.c b/libhb/muxmp4.c
index 7aae352cd..b4e69cd94 100644
--- a/libhb/muxmp4.c
+++ b/libhb/muxmp4.c
@@ -50,7 +50,7 @@ static int MP4Init( hb_mux_object_t * m )
u_int16_t language_code;
/* Create an empty mp4 file */
- m->file = MP4Create( job->file, MP4_DETAILS_ERROR, 0 );
+ m->file = MP4Create( job->file, MP4_DETAILS_ERROR, MP4_CREATE_64BIT_DATA );
/* Video track */
mux_data = malloc( sizeof( hb_mux_data_t ) );