[vlc-commits] [Git][videolan/vlc][master] mp4: explicitly set the 'soun' compression to 0xFFFE when needed
Steve Lhomme (@robUx4)
gitlab at videolan.org
Fri Feb 17 10:14:45 UTC 2023
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
96d2459e by Steve Lhomme at 2023-02-17T09:32:59+00:00
mp4: explicitly set the 'soun' compression to 0xFFFE when needed
It is always read as 0xFFFE in libmp4.c.
- - - - -
1 changed file:
- modules/mux/mp4/libmp4mux.c
Changes:
=====================================
modules/mux/mp4/libmp4mux.c
=====================================
@@ -1120,7 +1120,7 @@ static bo_t *GetSounBox(vlc_object_t *p_obj, mp4mux_trackinfo_t *p_track, bool b
char fcc[4];
bo_t *specificbox = NULL;
uint16_t i_qt_version = 1;
- uint16_t i_compression_id = -2;
+ uint16_t i_compression_id = 0xFFFE;
uint32_t i_uncompressed_bps = 0;
bo_t *srat = NULL;
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/96d2459ea215db71bd53fd9b4f0aef01a23afb1c
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/96d2459ea215db71bd53fd9b4f0aef01a23afb1c
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