Commit b85b551b authored by Denis Charmet's avatar Denis Charmet

Adding alac support in mkv

parent ca9b8b45
......@@ -1524,6 +1524,11 @@ int32_t matroska_segment_c::TrackInit( mkv_track_t * p_tk )
p_tk->fmt.i_codec = VLC_CODEC_MP4A;
fill_extra_data( p_tk, 0 );
}
else if( !strcmp( p_tk->psz_codec, "A_ALAC" ) )
{
p_tk->fmt.i_codec = VLC_CODEC_ALAC;
fill_extra_data( p_tk, 0 );
}
else if( !strcmp( p_tk->psz_codec, "A_WAVPACK4" ) )
{
p_tk->fmt.i_codec = VLC_CODEC_WAVPACK;
......
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