From: Rémi Duraffort Date: Mon, 29 Dec 2008 18:32:11 +0000 (+0100) Subject: taglib: cleanup the header and add myslef to the authors. X-Git-Tag: 1.0.0-pre1~1649 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=ebf0a15ad051e5456e99ec7548829fd4d444fe2e;p=vlc taglib: cleanup the header and add myslef to the authors. --- diff --git a/modules/meta_engine/taglib.cpp b/modules/meta_engine/taglib.cpp index d2b3c98897..cc906212e2 100644 --- a/modules/meta_engine/taglib.cpp +++ b/modules/meta_engine/taglib.cpp @@ -6,6 +6,7 @@ * * Authors: Clément Stenac * Rafaël Carré + * Rémi Duraffort * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -40,12 +41,15 @@ # include #endif -#include +// Taglib headers +#include #include +#include + +#include #include #include -#include #include #include @@ -53,25 +57,19 @@ #include #include #include -#include #include +#include #include -#include -#include -#include #include -//#include /* ogg flac files aren't auto-casted by TagLib */ -#include -#include -#include -#include #include -//#include /* parse the tags without TagLib helpers? */ +#include + -static int ReadMeta ( vlc_object_t * ); -static int DownloadArt ( vlc_object_t * ); -static int WriteMeta ( vlc_object_t * ); +// 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 )