1
0
Fork 0
forked from len0rd/rockbox

Code cleanup in codec_thread, playback and pcmbuf; more elegant solution to leftover samples

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23471 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jeffrey Goode 2009-11-01 19:39:23 +00:00
parent bcadf96066
commit e8eefe98bf
6 changed files with 197 additions and 283 deletions

View file

@ -24,12 +24,11 @@
#include <stdbool.h>
int get_codec_base_type(int type);
const char *get_codec_filename(int cod_spec);
void codec_thread_do_callback(void (*fn)(void),
unsigned int *codec_thread_id);
void make_codec_thread(void);
int get_codec_base_type(int type);
void codec_init_codec_api(void);
bool codec_is_loaded(void);
void make_codec_thread(void);
#endif