Commit 4af2ccf4 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

input/meta.c: Be a bit more selective on meta pre-requirement for art.

parent 33f279fa
...@@ -97,7 +97,7 @@ int input_ArtFind( playlist_t *p_playlist, input_item_t *p_item ) ...@@ -97,7 +97,7 @@ int input_ArtFind( playlist_t *p_playlist, input_item_t *p_item )
return VLC_EGENERIC; return VLC_EGENERIC;
if( !p_item->psz_name && !p_item->p_meta->psz_title && if( !p_item->psz_name && !p_item->p_meta->psz_title &&
!p_item->p_meta->psz_artist && !p_item->p_meta->psz_album ) (!p_item->p_meta->psz_artist || !p_item->p_meta->psz_album) )
return VLC_EGENERIC; return VLC_EGENERIC;
/* If we already checked this album in this session, skip */ /* If we already checked this album in this session, skip */
...@@ -268,7 +268,7 @@ static int __input_FindArtInCache( vlc_object_t *p_obj, input_item_t *p_item ) ...@@ -268,7 +268,7 @@ static int __input_FindArtInCache( vlc_object_t *p_obj, input_item_t *p_item )
psz_title = p_item->p_meta->psz_title; psz_title = p_item->p_meta->psz_title;
if( !psz_title ) psz_title = p_item->psz_name; if( !psz_title ) psz_title = p_item->psz_name;
if( !psz_artist && !psz_album && !psz_title ) return VLC_EGENERIC; if( (!psz_artist || !psz_album) && !psz_title ) return VLC_EGENERIC;
for( i = 0; i < 5; i++ ) for( i = 0; i < 5; i++ )
{ {
...@@ -307,7 +307,7 @@ int input_DownloadAndCacheArt( playlist_t *p_playlist, input_item_t *p_item ) ...@@ -307,7 +307,7 @@ int input_DownloadAndCacheArt( playlist_t *p_playlist, input_item_t *p_item )
else if( p_item->psz_name ) else if( p_item->psz_name )
psz_title = ArtCacheCreateString( p_item->psz_name ); psz_title = ArtCacheCreateString( p_item->psz_name );
if( !psz_title && !psz_album && !psz_artist ) if( (!psz_title || !psz_album) && !psz_artist )
{ {
free( psz_title ); free( psz_title );
free( psz_album ); free( psz_album );
...@@ -429,7 +429,7 @@ void input_ExtractAttachmentAndCacheArt( input_thread_t *p_input ) ...@@ -429,7 +429,7 @@ void input_ExtractAttachmentAndCacheArt( input_thread_t *p_input )
else if( p_item->psz_name ) else if( p_item->psz_name )
psz_title = ArtCacheCreateString( p_item->psz_name ); psz_title = ArtCacheCreateString( p_item->psz_name );
if( !psz_artist && !psz_album && !psz_title ) if( (!psz_artist || !psz_album ) && !psz_title )
goto end; goto end;
/* */ /* */
......
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