Commit fcfb04ff authored by Laurent Aimar's avatar Laurent Aimar

* mp4.c: allowed multiple moov headers by taking the first one

(multiple moov headers is strictly forbidden but I 've seen such file)
parent 90a65e1f
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* mp4.c : MP4 file input module for vlc * mp4.c : MP4 file input module for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: mp4.c,v 1.11 2003/01/07 21:49:01 fenrir Exp $ * $Id: mp4.c,v 1.12 2003/01/08 10:46:30 fenrir Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -190,8 +190,8 @@ static int MP4Init( vlc_object_t * p_this ) ...@@ -190,8 +190,8 @@ static int MP4Init( vlc_object_t * p_this )
msg_Err( p_input, msg_Err( p_input,
"MP4 plugin discarded (%d moov box)", "MP4 plugin discarded (%d moov box)",
MP4_BoxCount( &p_demux->box_root, "/moov" ) ); MP4_BoxCount( &p_demux->box_root, "/moov" ) );
MP4End( p_input ); // MP4End( p_input );
return( -1 ); // return( -1 );
} }
if( !(p_mvhd = MP4_BoxGet( &p_demux->box_root, "/moov/mvhd" ) ) ) if( !(p_mvhd = MP4_BoxGet( &p_demux->box_root, "/moov/mvhd" ) ) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment