Commit f607a368 authored by Rafaël Carré's avatar Rafaël Carré

input_ExtractAttachmentAndCacheArt(): use the attachment's mime type, don't...

input_ExtractAttachmentAndCacheArt(): use the attachment's mime type, don't use input_item_ functions as the input_item_t has been locked previously.
parent 1c8ba52d
...@@ -474,10 +474,10 @@ int input_DownloadAndCacheArt( playlist_t *p_playlist, input_item_t *p_item ) ...@@ -474,10 +474,10 @@ int input_DownloadAndCacheArt( playlist_t *p_playlist, input_item_t *p_item )
void input_ExtractAttachmentAndCacheArt( input_thread_t *p_input ) void input_ExtractAttachmentAndCacheArt( input_thread_t *p_input )
{ {
input_item_t *p_item = p_input->p->input.p_item; input_item_t *p_item = p_input->p->input.p_item;
char *psz_arturl; const char *psz_arturl;
char *psz_artist = NULL; const char *psz_artist = NULL;
char *psz_album = NULL; const char *psz_album = NULL;
char *psz_title = NULL; const char *psz_title = NULL;
char *psz_type = NULL; char *psz_type = NULL;
char psz_filename[PATH_MAX+1]; char psz_filename[PATH_MAX+1];
FILE *f; FILE *f;
...@@ -488,14 +488,13 @@ void input_ExtractAttachmentAndCacheArt( input_thread_t *p_input ) ...@@ -488,14 +488,13 @@ void input_ExtractAttachmentAndCacheArt( input_thread_t *p_input )
/* TODO-fenrir merge input_ArtFind with download and make it set the flags FETCH /* TODO-fenrir merge input_ArtFind with download and make it set the flags FETCH
* and then set it here to to be faster */ * and then set it here to to be faster */
psz_arturl = input_item_GetArtURL( p_item ); psz_arturl = vlc_meta_Get( p_item->p_meta, vlc_meta_ArtworkURL );
if( !psz_arturl || strncmp( psz_arturl, "attachment://", strlen("attachment://") ) ) if( !psz_arturl || strncmp( psz_arturl, "attachment://", strlen("attachment://") ) )
{ {
free( psz_arturl );
msg_Err( p_input, "internal input error with input_ExtractAttachmentAndCacheArt" ); msg_Err( p_input, "internal input error with input_ExtractAttachmentAndCacheArt" );
return; return;
} }
input_item_SetArtURL( p_item, NULL );
if( input_item_IsArtFetched( p_item ) ) if( input_item_IsArtFetched( p_item ) )
{ {
...@@ -503,7 +502,6 @@ void input_ExtractAttachmentAndCacheArt( input_thread_t *p_input ) ...@@ -503,7 +502,6 @@ void input_ExtractAttachmentAndCacheArt( input_thread_t *p_input )
* condition */ * condition */
msg_Warn( p_input, "internal input error with input_ExtractAttachmentAndCacheArt" ); msg_Warn( p_input, "internal input error with input_ExtractAttachmentAndCacheArt" );
input_FindArtInCache( p_input, p_item ); input_FindArtInCache( p_input, p_item );
free( psz_arturl );
return; return;
} }
...@@ -520,28 +518,31 @@ void input_ExtractAttachmentAndCacheArt( input_thread_t *p_input ) ...@@ -520,28 +518,31 @@ void input_ExtractAttachmentAndCacheArt( input_thread_t *p_input )
if( !p_attachment || p_attachment->i_data <= 0 ) if( !p_attachment || p_attachment->i_data <= 0 )
{ {
msg_Warn( p_input, "internal input error with input_ExtractAttachmentAndCacheArt" ); msg_Warn( p_input, "internal input error with input_ExtractAttachmentAndCacheArt" );
goto end; return;
} }
psz_artist = input_item_GetArtist( p_item ); psz_artist = vlc_meta_Get( p_item->p_meta, vlc_meta_Artist );
psz_album = input_item_GetAlbum( p_item ); psz_album = vlc_meta_Get( p_item->p_meta, vlc_meta_Album );
psz_title = input_item_GetTitle( p_item ); psz_title = vlc_meta_Get( p_item->p_meta, vlc_meta_Title );
if( !strcmp( p_attachment->psz_mime, "image/jpeg" ) )
psz_type = strdup( ".jpg" );
else if( !strcmp( p_attachment->psz_mime, "image/png" ) )
psz_type = strdup( ".png" );
if( !psz_title ) if( !psz_title )
psz_title = input_item_GetName( p_item ); psz_title = p_item->psz_name;
if( (!psz_artist || !psz_album ) && !psz_title ) if( (!psz_artist || !psz_album ) && !psz_title )
goto end; return;
/* */
psz_type = strrchr( psz_arturl, '.' );
ArtCacheGetDirPath( p_input, psz_filename, psz_title, psz_artist, psz_album ); ArtCacheGetDirPath( p_input, psz_filename, psz_title, psz_artist, psz_album );
ArtCacheCreateDir( psz_filename ); ArtCacheCreateDir( psz_filename );
ArtCacheGetFilePath( p_input, psz_filename, psz_title, psz_artist, psz_album, psz_type ); ArtCacheGetFilePath( p_input, psz_filename, psz_title, psz_artist, psz_album, psz_type );
free( psz_type );
/* Check if we already dumped it */ /* Check if we already dumped it */
if( !utf8_stat( psz_filename+7, &s ) ) if( !utf8_stat( psz_filename+7, &s ) )
goto end; return;
f = utf8_fopen( psz_filename+7, "w" ); f = utf8_fopen( psz_filename+7, "w" );
if( f ) if( f )
...@@ -549,15 +550,12 @@ void input_ExtractAttachmentAndCacheArt( input_thread_t *p_input ) ...@@ -549,15 +550,12 @@ void input_ExtractAttachmentAndCacheArt( input_thread_t *p_input )
if( fwrite( p_attachment->p_data, p_attachment->i_data, 1, f ) != 1 ) if( fwrite( p_attachment->p_data, p_attachment->i_data, 1, f ) != 1 )
msg_Err( p_input, "%s: %m", psz_filename ); msg_Err( p_input, "%s: %m", psz_filename );
else else
{
msg_Dbg( p_input, "album art saved to %s\n", psz_filename ); msg_Dbg( p_input, "album art saved to %s\n", psz_filename );
vlc_meta_Set( p_item->p_meta, vlc_meta_ArtworkURL, psz_filename );
}
fclose( f ); fclose( f );
} }
end:
if( psz_artist ) free( psz_artist );
if( psz_album ) free( psz_album );
if( psz_title ) free( psz_title );
if( psz_arturl ) free( psz_arturl );
} }
......
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