Commit 1995e5d4 authored by Steve Lhomme's avatar Steve Lhomme Committed by Jean-Baptiste Kempf

MKV: A_MS/ACM is not packetized

Just like in AVI
See modules/demux/avi/avi.c l461
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 6e8d1764
...@@ -1493,6 +1493,7 @@ int32_t matroska_segment_c::TrackInit( mkv_track_t * p_tk ) ...@@ -1493,6 +1493,7 @@ int32_t matroska_segment_c::TrackInit( mkv_track_t * p_tk )
if( p_tk->fmt.i_codec == VLC_FOURCC( 'u', 'n', 'd', 'f' ) ) if( p_tk->fmt.i_codec == VLC_FOURCC( 'u', 'n', 'd', 'f' ) )
msg_Err( &sys.demuxer, "Unrecognized wf tag: 0x%x", GetWLE( &p_wf->wFormatTag ) ); msg_Err( &sys.demuxer, "Unrecognized wf tag: 0x%x", GetWLE( &p_wf->wFormatTag ) );
} }
p_fmt->b_packetized = !p_fmt->audio.i_blockalign;
} }
else if( !strcmp( p_tk->psz_codec, "A_MPEG/L3" ) || else if( !strcmp( p_tk->psz_codec, "A_MPEG/L3" ) ||
!strcmp( p_tk->psz_codec, "A_MPEG/L2" ) || !strcmp( p_tk->psz_codec, "A_MPEG/L2" ) ||
......
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