* Add very basic nfo parsing support.

* Rework how some of the metadata is stored and freed, to be more consistent.
This commit is contained in:
Justin Maggard
2010-06-03 22:03:34 +00:00
parent 100ba2835c
commit 35c727e77d
2 changed files with 192 additions and 124 deletions

View File

@ -13,6 +13,7 @@
typedef struct metadata_s {
char *title;
char *artist;
char *creator;
char *album;
char *genre;
char *comment;
@ -22,6 +23,7 @@ typedef struct metadata_s {
char *bps;
char *resolution;
char *duration;
char *date;
char *mime;
char *dlna_pn;
} metadata_t;