SDL_kitchensink
Loading...
Searching...
No Matches
kitcodec.h
Go to the documentation of this file.
1#ifndef KITCODEC_H
2#define KITCODEC_H
3
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16#define KIT_CODEC_NAME_MAX 8
17#define KIT_CODEC_DESC_MAX 48
18
22typedef struct Kit_Codec {
23 unsigned int threads;
27
28#ifdef __cplusplus
29}
30#endif
31
32#endif // KITCODEC_H
#define KIT_CODEC_DESC_MAX
Definition kitcodec.h:17
#define KIT_CODEC_NAME_MAX
Definition kitcodec.h:16
Contains information about the used codec for playback.
Definition kitcodec.h:22
char description[KIT_CODEC_DESC_MAX]
Codec longer, more descriptive name.
Definition kitcodec.h:25
unsigned int threads
Currently enabled threads (For all decoders)
Definition kitcodec.h:23
char name[KIT_CODEC_NAME_MAX]
Codec short name, eg. "ogg" or "webm".
Definition kitcodec.h:24