[vlc-commits] demux: mp4: fix quicktime sample size regression for twos/stwo
Francois Cartegnie
git at videolan.org
Thu Sep 5 20:37:22 CEST 2019
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Thu Sep 5 14:59:32 2019 +0200| [d4047c25e42ff4f7ac7ca890583e3a7bf40b752b] | committer: Francois Cartegnie
demux: mp4: fix quicktime sample size regression for twos/stwo
regression by 0c25ba56279fc495afe9d089e2bbcf051a296487
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d4047c25e42ff4f7ac7ca890583e3a7bf40b752b
---
modules/demux/mp4/mp4.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/modules/demux/mp4/mp4.c b/modules/demux/mp4/mp4.c
index 8547bb0c37..a9bf63edb2 100644
--- a/modules/demux/mp4/mp4.c
+++ b/modules/demux/mp4/mp4.c
@@ -3755,6 +3755,8 @@ static inline uint32_t MP4_GetFixedSampleSize( const mp4_track_t *p_track,
case ATOM_twos:
case ATOM_sowt:
case ATOM_raw:
+ case VLC_CODEC_S16L:
+ case VLC_CODEC_S16B:
case VLC_CODEC_S24L:
case VLC_CODEC_S24B:
case VLC_CODEC_S32L:
More information about the vlc-commits
mailing list