summaryrefslogtreecommitdiff
path: root/decode_converter.h
diff options
context:
space:
mode:
Diffstat (limited to 'decode_converter.h')
-rw-r--r--decode_converter.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/decode_converter.h b/decode_converter.h
deleted file mode 100644
index 5523541..0000000
--- a/decode_converter.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef DECODE_CONVERTER_H
-#define DECODE_CONVERTER_H
-
-#include "decoder.h"
-
-#include <glib-object.h>
-
-#define CONVERTER_TYPE_DECODE (decode_converter_get_type())
-#define DECODE_CONVERTER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), CONVERTER_TYPE_DECODE, DecodeConverter))
-#define CONVERTER_IS_DECODE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), CONVERTER_TYPE_DECODE))
-#define DECODE_CONVERTER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), CONVERTER_TYPE_DECODE, DecodeConverterClass))
-#define CONVERTER_IS_DECODE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), CONVERTER_TYPE_DECODE))
-#define DECODE_CONVERTER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), CONVERTER_TYPE_DECODE, DecodeConverterClass))
-
-typedef struct _DecodeConverter DecodeConverter;
-typedef struct _DecodeConverterClass DecodeConverterClass;
-
-struct _DecodeConverter {
- GObject parent_instance;
-
- struct decoder decoder;
-};
-
-struct _DecodeConverterClass {
- GObjectClass parent_class;
-};
-
-GType decode_converter_get_type();
-DecodeConverter *decode_converter_new(const struct decoder_plugin *decoder_plugin);
-
-#endif