* Improve WMA DLNA profile parsing.

This commit is contained in:
Justin Maggard
2011-05-17 00:25:03 +00:00
parent 595eaf5168
commit 5782be8ab2
3 changed files with 37 additions and 43 deletions

View File

@ -75,6 +75,7 @@ struct song_metadata {
char compilation; // YTCP
int bitrate;
int max_bitrate;
int samplerate;
int samplesize;
int channels;
@ -105,9 +106,9 @@ struct song_metadata {
int plist_id;
};
#define WMAV1 0x161
#define WMAV2 0x162
#define WMAPRO 0x163
#define WMA 0x161
#define WMAPRO 0x162
#define WMALSL 0x163
extern int scan_init(char *path);
extern void make_composite_tags(struct song_metadata *psong);