[vlc-commits] [Git][videolan/vlc][master] demux: mp4: relax restriction on parent of st3d/sv3d boxes
    Hugo Beauzée-Luyssen (@chouquette) 
    gitlab at videolan.org
       
    Fri Feb 18 19:04:19 UTC 2022
    
    
  
Hugo Beauzée-Luyssen pushed to branch master at VideoLAN / VLC
Commits:
e2a42e28 by Zhao Zhili at 2022-02-18T18:46:18+00:00
demux: mp4: relax restriction on parent of st3d/sv3d boxes
st3d/sv3d can appear in any VisualSampleEntry. It's easy to miss
entry for new codecs.
- - - - -
1 changed file:
- modules/demux/mp4/libmp4.c
Changes:
=====================================
modules/demux/mp4/libmp4.c
=====================================
@@ -5192,10 +5192,8 @@ static const struct
     { ATOM_uuid,    MP4_ReadBox_uuid,        0 },
 
     /* spatial/360°/VR */
-    { ATOM_st3d,    MP4_ReadBox_st3d,        ATOM_avc1 },
-    { ATOM_st3d,    MP4_ReadBox_st3d,        ATOM_mp4v },
-    { ATOM_sv3d,    MP4_ReadBoxContainer,    ATOM_avc1 },
-    { ATOM_sv3d,    MP4_ReadBoxContainer,    ATOM_mp4v },
+    { ATOM_st3d,    MP4_ReadBox_st3d,        0 },
+    { ATOM_sv3d,    MP4_ReadBoxContainer,    0 },
     { ATOM_proj,    MP4_ReadBoxContainer,    ATOM_sv3d },
     { ATOM_prhd,    MP4_ReadBox_prhd,        ATOM_proj },
     { ATOM_equi,    MP4_ReadBox_equi,        ATOM_proj },
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/e2a42e288f89209b633fd53141646d6eb3303b3f
-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/e2a42e288f89209b633fd53141646d6eb3303b3f
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
    
    
More information about the vlc-commits
mailing list