summaryrefslogtreecommitdiff
path: root/include/kitchensink/kitformats.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/kitchensink/kitformats.h')
-rw-r--r--include/kitchensink/kitformats.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/include/kitchensink/kitformats.h b/include/kitchensink/kitformats.h
deleted file mode 100644
index 80bfd4f..0000000
--- a/include/kitchensink/kitformats.h
+++ /dev/null
@@ -1,38 +0,0 @@
-#ifndef KITFORMATS_H
-#define KITFORMATS_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include <stdbool.h>
-
-typedef struct Kit_AudioFormat {
- int stream_index; ///< Stream index
- bool is_enabled; ///< Is stream enabled
- unsigned int format; ///< SDL Audio Format
- bool is_signed; ///< Signedness
- int bytes; ///< Bytes per sample per channel
- int samplerate; ///< Sampling rate
- int channels; ///< Channels
-} Kit_AudioFormat;
-
-typedef struct Kit_VideoFormat {
- int stream_index; ///< Stream index
- bool is_enabled; ///< Is stream enabled
- unsigned int format; ///< SDL Pixel Format
- int width; ///< Width in pixels
- int height; ///< Height in pixels
-} Kit_VideoFormat;
-
-typedef struct Kit_SubtitleFormat {
- int stream_index; ///< Stream index
- bool is_enabled; ///< Is stream enabled
- unsigned int format; ///< SDL Pixel Format
-} Kit_SubtitleFormat;
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif // KITFORMATS_H