Commit bbc7f57f authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Vorbis: fix broken if/else cascade

parent a6a09908
......@@ -153,9 +153,9 @@ static inline void vorbis_ParseComment( vlc_meta_t **pp_meta, const uint8_t *p_d
else IF_EXTRACT("ALBUM=", Album )
else IF_EXTRACT("TRACKNUMBER=", TrackNumber )
else if( !hasTrackTotal )
IF_EXTRACT("TRACKTOTAL=", TrackTotal )
{ IF_EXTRACT("TRACKTOTAL=", TrackTotal ) }
else if( !hasTrackTotal )
IF_EXTRACT("TOTALTRACKS=", TrackTotal )
{ IF_EXTRACT("TOTALTRACKS=", TrackTotal ) }
else IF_EXTRACT("ARTIST=", Artist )
else IF_EXTRACT("COPYRIGHT=", Copyright )
else IF_EXTRACT("ORGANIZATION=", Publisher )
......
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