Commit 4330d456 authored by Francois Cartegnie's avatar Francois Cartegnie

playlist: fetcher: remove unused policy

parent 1f5843e6
......@@ -49,7 +49,6 @@ struct playlist_fetcher_t
vlc_mutex_t lock;
vlc_cond_t wait;
bool b_live;
int i_art_policy;
int i_waiting;
input_item_t **pp_waiting;
......@@ -74,7 +73,6 @@ playlist_fetcher_t *playlist_fetcher_New( vlc_object_t *parent )
p_fetcher->b_live = false;
p_fetcher->i_waiting = 0;
p_fetcher->pp_waiting = NULL;
p_fetcher->i_art_policy = var_GetInteger( parent, "album-art" );
ARRAY_INIT( p_fetcher->albums );
return p_fetcher;
......
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