vlc | branch: master | Francois Cartegnie <[email protected]> | Mon May 12 12:44:27 2014 +0200| [4330d4567b5fa51ae41497c1f4a5c553a511426f] | committer: Francois Cartegnie
playlist: fetcher: remove unused policy > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4330d4567b5fa51ae41497c1f4a5c553a511426f --- src/playlist/fetcher.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/playlist/fetcher.c b/src/playlist/fetcher.c index b6a9ee9..6901f94 100644 --- a/src/playlist/fetcher.c +++ b/src/playlist/fetcher.c @@ -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; _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
