Mercurial > audlegacy-plugins
view src/xsf/corlett.h @ 3175:1bb4cad57923
alsa-ng: alsaplug_flush(): It is good practise to lock the same mutex as the waiting threads while calling g_cond_broadcast.
author | Tomasz Mon <desowin@gmail.com> |
---|---|
date | Sat, 16 May 2009 15:41:43 +0200 |
parents | 70b0973e7b70 |
children |
line wrap: on
line source
// // Audio Overload // Emulated music player // // (C) 2000-2008 Richard F. Bannister // // corlett.h #define MAX_UNKNOWN_TAGS 32 typedef struct { char lib[256]; char libaux[8][256]; char inf_title[256]; char inf_copy[256]; char inf_artist[256]; char inf_game[256]; char inf_year[256]; char inf_length[256]; char inf_fade[256]; char inf_refresh[256]; char tag_name[MAX_UNKNOWN_TAGS][256]; char tag_data[MAX_UNKNOWN_TAGS][256]; uint32 *res_section; uint32 res_size; } corlett_t; int corlett_decode(uint8 *input, uint32 input_len, uint8 **output, uint64 *size, corlett_t **c); uint32 psfTimeToMS(char *str);