diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-18 15:39:51 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-18 15:39:51 +0000 |
commit | 2ec81e19c049cd992906b5558cb34468136dbe6f (patch) | |
tree | fd300defba2c33df7a8636fcbd6021e39a6e64fb /src/libspudec/spu_decoder_api.h | |
parent | f0d07ed727f721df49e7291d2c1d6f716a2e6698 (diff) | |
download | xine-lib-2ec81e19c049cd992906b5558cb34468136dbe6f.tar.gz xine-lib-2ec81e19c049cd992906b5558cb34468136dbe6f.tar.bz2 |
why void *, it is a pci_t *
CVS patchset: 2691
CVS date: 2002/09/18 15:39:51
Diffstat (limited to 'src/libspudec/spu_decoder_api.h')
-rw-r--r-- | src/libspudec/spu_decoder_api.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/libspudec/spu_decoder_api.h b/src/libspudec/spu_decoder_api.h index cc42fff65..e863ac8ac 100644 --- a/src/libspudec/spu_decoder_api.h +++ b/src/libspudec/spu_decoder_api.h @@ -25,9 +25,6 @@ #define HAVE_SPU_API_H #define SPU_DECODER_IFACE_VERSION 9 -/* FIXME: Needed for spu_button_t */ -/* But will not be on all users's systems. (From the libspudec directory or libdvdread). */ -//#include "nav_types.h" /* * generic xine spu decoder plugin interface @@ -53,7 +50,7 @@ struct spu_decoder_s { void (*dispose) (spu_decoder_t *this); - int (*get_nav_pci) (spu_decoder_t *this, void *nav_pci); + int (*get_nav_pci) (spu_decoder_t *this, pci_t *nav_pci); }; |