Mercurial > audlegacy-plugins
view src/alac/decomp.h @ 3191:a65f440cbed3
alsa-ng: Fix possible race conditions, sluggish pause and seek.
author | John Lindgren <john.lindgren@tds.net> |
---|---|
date | Mon, 22 Jun 2009 16:05:57 -0400 |
parents | 56c88eee9802 |
children |
line wrap: on
line source
#ifndef __ALAC__DECOMP_H #define __ALAC__DECOMP_H typedef struct alac_file alac_file; alac_file *create_alac(int samplesize, int numchannels); void decode_frame(alac_file *alac, unsigned char *inbuffer, void *outbuffer, int *outputsize); void alac_set_info(alac_file *alac, char *inputbuffer); #endif /* __ALAC__DECOMP_H */