summaryrefslogtreecommitdiff
path: root/src/libspudec/spu_decoder_api.h
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2001-10-20 02:01:51 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2001-10-20 02:01:51 +0000
commit439907def64a3bdbc3fd6a73af623c6fb7a55497 (patch)
treeb1fbbec16558d5dd7b882682359d91cec19f9611 /src/libspudec/spu_decoder_api.h
parentfc4c873cd43fbac488f56041e38a5010e2656b10 (diff)
downloadxine-lib-439907def64a3bdbc3fd6a73af623c6fb7a55497.tar.gz
xine-lib-439907def64a3bdbc3fd6a73af623c6fb7a55497.tar.bz2
big event cleanup: one single mechanism is now used for all communications between gui, plugins and the xine engine; code cleanup
CVS patchset: 837 CVS date: 2001/10/20 02:01:51
Diffstat (limited to 'src/libspudec/spu_decoder_api.h')
-rw-r--r--src/libspudec/spu_decoder_api.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/libspudec/spu_decoder_api.h b/src/libspudec/spu_decoder_api.h
index 6a02cef3f..c0c44834b 100644
--- a/src/libspudec/spu_decoder_api.h
+++ b/src/libspudec/spu_decoder_api.h
@@ -29,7 +29,7 @@
*
* for a dynamic plugin make sure you provide this function call:
* spu_decoder_t *init_spu_decoder_plugin (int iface_version,
- * config_values_t *cfg);
+ * xine_t *xine);
*/
typedef struct spu_decoder_s spu_decoder_t;
@@ -44,8 +44,6 @@ struct spu_decoder_s {
void (*decode_data) (spu_decoder_t *this, buf_element_t *buf);
- void (*event) (spu_decoder_t *this, spu_event_t *event);
-
void (*close) (spu_decoder_t *this);
char* (*get_identifier) (void);
@@ -56,7 +54,6 @@ struct spu_decoder_s {
};
-#define SPU_EVENT_BUTTON 0x100
typedef struct spu_button_s spu_button_t;
struct spu_button_s {
int show;
@@ -66,7 +63,6 @@ struct spu_button_s {
int top, bottom;
};
-#define SPU_EVENT_CLUT 0x101
typedef struct spu_cltbl_s spu_cltbl_t;
struct spu_cltbl_s {
uint32_t clut[16];