vlc | branch: master | Francois Cartegnie <[email protected]> | Fri Feb 8 16:53:12 2019 +0100| [20ff773847b65199bcb7bab89390e64012480ad3] | committer: Francois Cartegnie
mux: mp4: fix mp3 mapping > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=20ff773847b65199bcb7bab89390e64012480ad3 --- modules/mux/mp4/libmp4mux.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/mux/mp4/libmp4mux.c b/modules/mux/mp4/libmp4mux.c index 1eb5925d54..98c139a002 100644 --- a/modules/mux/mp4/libmp4mux.c +++ b/modules/mux/mp4/libmp4mux.c @@ -586,6 +586,7 @@ static bo_t *GetESDS(mp4mux_trackinfo_t *p_track) /* FIXME for mpeg2-aac == 0x66->0x68 */ i_object_type_indication = 0x40; break; + case VLC_CODEC_MP3: case VLC_CODEC_MPGA: i_object_type_indication = p_track->fmt.audio.i_rate < 32000 ? 0x69 : 0x6b; _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
