diff options
Diffstat (limited to 'apps/codec_thread.h')
| -rw-r--r-- | apps/codec_thread.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/codec_thread.h b/apps/codec_thread.h index 7056e2c..acd7e55 100644 --- a/apps/codec_thread.h +++ b/apps/codec_thread.h @@ -25,7 +25,6 @@ #include <stdbool.h> /* codec identity */ -int get_codec_base_type(int type); const char *get_codec_filename(int cod_spec); /* codec thread */ @@ -44,10 +43,14 @@ int codec_thread_set_priority(int priority); #endif /* codec commands - on audio thread only! */ -intptr_t codec_ack_msg(intptr_t data, bool stop_codec); bool codec_load(int hid, int cod_spec); +void codec_go(void); +bool codec_pause(void); +void codec_seek(long time); void codec_stop(void); +void codec_unload(void); int codec_loaded(void); + /* */ #endif /* _CODEC_THREAD_H */ |