From 846bb6fe9944a8ddb1f75e4cc42d3ff1d0343d94 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Duraffort?= Date: Mon, 9 Feb 2009 14:46:20 +0100 Subject: [PATCH] taglib: remove a dummy sub-module (taglib can't act as an "art downloader"). --- modules/meta_engine/taglib.cpp | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/modules/meta_engine/taglib.cpp b/modules/meta_engine/taglib.cpp index 9a73d7b5d2..504835a602 100644 --- a/modules/meta_engine/taglib.cpp +++ b/modules/meta_engine/taglib.cpp @@ -1,7 +1,7 @@ /***************************************************************************** * taglib.cpp: Taglib tag parser/writer ***************************************************************************** - * Copyright (C) 2003-2008 the VideoLAN team + * Copyright (C) 2003-2009 the VideoLAN team * $Id$ * * Authors: Clément Stenac @@ -68,15 +68,11 @@ // Local functions static int ReadMeta ( vlc_object_t * ); -static int DownloadArt ( vlc_object_t * ); static int WriteMeta ( vlc_object_t * ); vlc_module_begin () set_capability( "meta reader", 1000 ) set_callbacks( ReadMeta, NULL ) - add_submodule () - set_capability( "art downloader", 50 ) - set_callbacks( DownloadArt, NULL ) add_submodule () set_capability( "meta writer", 50 ) set_callbacks( WriteMeta, NULL ) @@ -653,13 +649,3 @@ static int WriteMeta( vlc_object_t *p_this ) return VLC_SUCCESS; } - - -static int DownloadArt( vlc_object_t *p_this ) -{ - /* We need to be passed the file name - * Fetch the thing from the file, save it to the cache folder - */ - return VLC_EGENERIC; -} - -- 2.39.2