summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
authorclee <[email protected]>2007-04-17 04:11:59 +0000
committerclee <[email protected]>2007-04-17 04:11:59 +0000
commit4b27d9cec63a799c5ba198164333bf9dce04aa34 (patch)
tree1d6b824ae15073182585b3741835d3e7c5b5f826 /libhb
parent6090cf41619705e22e3950465e5b9aeecba8efcc (diff)
64-bit data atoms break some consumer devices. We need to figure out a smarter way of doing this.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@520 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r--libhb/muxmp4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/muxmp4.c b/libhb/muxmp4.c
index b4e69cd94..7aae352cd 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, MP4_CREATE_64BIT_DATA );
+ m->file = MP4Create( job->file, MP4_DETAILS_ERROR, 0 );
/* Video track */
mux_data = malloc( sizeof( hb_mux_data_t ) );