[vlc-commits] [Git][videolan/vlc][3.0.x] demux: mp4: relax restriction on parent of st3d/sv3d boxes

Jean-Baptiste Kempf (@jbk) gitlab at videolan.org
Thu Mar 31 17:36:39 UTC 2022



Jean-Baptiste Kempf pushed to branch 3.0.x at VideoLAN / VLC


Commits:
1a1a9da7 by Zhao Zhili at 2022-03-31T17:24:00+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
=====================================
@@ -4869,10 +4869,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/1a1a9da7afdbb2d3ff11405fdc836161cadbbf86

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/1a1a9da7afdbb2d3ff11405fdc836161cadbbf86
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