vlc | branch: master | Francois Cartegnie <[email protected]> | Wed Sep 24 22:33:26 2014 +0200| [e239d53311ed0fb1802b105e019c678765423491] | committer: Francois Cartegnie
demux: mp4: add missing foov entries > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e239d53311ed0fb1802b105e019c678765423491 --- modules/demux/mp4/libmp4.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/demux/mp4/libmp4.c b/modules/demux/mp4/libmp4.c index 040a9a3..97aae78 100644 --- a/modules/demux/mp4/libmp4.c +++ b/modules/demux/mp4/libmp4.c @@ -3374,7 +3374,9 @@ static const struct { /* Containers */ { ATOM_moov, MP4_ReadBoxContainer, MP4_FreeBox_Common, 0 }, + { ATOM_foov, MP4_ReadBoxContainer, MP4_FreeBox_Common, 0 }, { ATOM_trak, MP4_ReadBoxContainer, MP4_FreeBox_Common, ATOM_moov }, + { ATOM_trak, MP4_ReadBoxContainer, MP4_FreeBox_Common, ATOM_foov }, { ATOM_mdia, MP4_ReadBoxContainer, MP4_FreeBox_Common, ATOM_trak }, { ATOM_moof, MP4_ReadBoxContainer, MP4_FreeBox_Common, 0 }, { ATOM_minf, MP4_ReadBoxContainer, MP4_FreeBox_Common, ATOM_mdia }, @@ -3398,6 +3400,7 @@ static const struct { ATOM_ftyp, MP4_ReadBox_ftyp, MP4_FreeBox_ftyp, 0 }, { ATOM_cmov, MP4_ReadBox_cmov, MP4_FreeBox_Common, 0 }, { ATOM_mvhd, MP4_ReadBox_mvhd, MP4_FreeBox_Common, ATOM_moov }, + { ATOM_mvhd, MP4_ReadBox_mvhd, MP4_FreeBox_Common, ATOM_foov }, { ATOM_tkhd, MP4_ReadBox_tkhd, MP4_FreeBox_Common, ATOM_trak }, { ATOM_mdhd, MP4_ReadBox_mdhd, MP4_FreeBox_Common, ATOM_mdia }, { ATOM_hdlr, MP4_ReadBox_hdlr, MP4_FreeBox_hdlr, ATOM_mdia }, _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
