Commit 9d5d8ab5 authored by Steve Lhomme's avatar Steve Lhomme Committed by Jean-Baptiste Kempf

MKV: force packetization of MPEG audio frames

Fixes #11479
The file has some MP3 frames, but the frames are not packetized correctly in the Matroska file (spec violation)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent cdf0a385
......@@ -1494,6 +1494,7 @@ int32_t matroska_segment_c::TrackInit( mkv_track_t * p_tk )
!strcmp( p_tk->psz_codec, "A_MPEG/L1" ) )
{
p_tk->fmt.i_codec = VLC_CODEC_MPGA;
p_fmt->b_packetized = false;
}
else if( !strcmp( p_tk->psz_codec, "A_AC3" ) )
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment