summaryrefslogtreecommitdiff
path: root/apps/codec_thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codec_thread.h')
-rw-r--r--apps/codec_thread.h21
1 files changed, 20 insertions, 1 deletions
diff --git a/apps/codec_thread.h b/apps/codec_thread.h
index a849e07d39..7056e2cdf5 100644
--- a/apps/codec_thread.h
+++ b/apps/codec_thread.h
@@ -24,11 +24,30 @@
24 24
25#include <stdbool.h> 25#include <stdbool.h>
26 26
27/* codec identity */
27int get_codec_base_type(int type); 28int get_codec_base_type(int type);
28const char *get_codec_filename(int cod_spec); 29const char *get_codec_filename(int cod_spec);
30
31/* codec thread */
32
33/* Audio MUST be stopped before requesting callback! */
29void codec_thread_do_callback(void (*fn)(void), 34void codec_thread_do_callback(void (*fn)(void),
30 unsigned int *codec_thread_id); 35 unsigned int *codec_thread_id);
36
31void codec_init_codec_api(void); 37void codec_init_codec_api(void);
32void make_codec_thread(void); 38void make_codec_thread(void);
33 39void codec_thread_resume(void);
40bool is_codec_thread(void);
41#ifdef HAVE_PRIORITY_SCHEDULING
42int codec_thread_get_priority(void);
43int codec_thread_set_priority(int priority);
34#endif 44#endif
45
46/* codec commands - on audio thread only! */
47intptr_t codec_ack_msg(intptr_t data, bool stop_codec);
48bool codec_load(int hid, int cod_spec);
49void codec_stop(void);
50int codec_loaded(void);
51/* */
52
53#endif /* _CODEC_THREAD_H */