Commit e04e2f10 authored by Anatoliy Anischovich's avatar Anatoliy Anischovich Committed by Rafaël Carré

taglib: do not ignore mpeg ape tags

Signed-off-by: default avatarRafaël Carré <funman@videolan.org>
parent 67c854ca
......@@ -766,10 +766,10 @@ static int ReadMeta( vlc_object_t* p_this)
}
else if( MPEG::File* mpeg = dynamic_cast<MPEG::File*>(f.file()) )
{
if( mpeg->APETag() )
ReadMetaFromAPE( mpeg->APETag(), p_demux_meta, p_meta );
if( mpeg->ID3v2Tag() )
ReadMetaFromId3v2( mpeg->ID3v2Tag(), p_demux_meta, p_meta );
else if( mpeg->APETag() )
ReadMetaFromAPE( mpeg->APETag(), p_demux_meta, p_meta );
}
else if( dynamic_cast<Ogg::File*>(f.file()) )
{
......
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