]> git.sesse.net Git - vlc/commitdiff
playlist: fetcher: move playlist_album_t
authorFrancois Cartegnie <fcvlcdev@free.fr>
Wed, 21 May 2014 16:55:23 +0000 (18:55 +0200)
committerFrancois Cartegnie <fcvlcdev@free.fr>
Wed, 21 May 2014 17:16:28 +0000 (19:16 +0200)
Only used by fetcher for cache entries

src/playlist/art.h
src/playlist/fetcher.c

index d8dd8c8ed44f73a806052d2986441e786979a0a0..da13e7956a71da45be25a7018465f4ccb502dfc5 100644 (file)
 #ifndef _PLAYLIST_ART_H
 #define _PLAYLIST_ART_H 1
 
-typedef struct
-{
-    char *psz_artist;
-    char *psz_album;
-    char *psz_arturl;
-    bool b_found;
-
-} playlist_album_t;
-
 int playlist_FindArtInCache( input_item_t * );
 int playlist_FindArtInCacheUsingItemUID( input_item_t * );
 
index f801f06ef2dea925a81054112ccbe267b1ea99bf..e19964fb4df8dc4c99d0b71204e9293fa0b0ad96 100644 (file)
 /*****************************************************************************
  * Structures/definitions
  *****************************************************************************/
+typedef struct
+{
+    char *psz_artist;
+    char *psz_album;
+    char *psz_arturl;
+    bool b_found;
+
+} playlist_album_t;
+
 typedef struct playlist_fetcher_entry_t
 {
     input_item_t    *p_item;