Mercurial > audlegacy-plugins
view src/xsf/corlett.h @ 3189:ab6c7ebcd301
alsa-ng: Only support 16bit output for now. Someone else can debug this crap.
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Fri, 19 Jun 2009 09:14:22 -0500 |
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);