Mercurial > audlegacy-plugins
view src/sid/xs_player.h @ 906:16e51fb5908e trunk
[svn] - aosd: beta4, ghosd source was rewritten to support argb visual (x composite extension) as an option, this allows to have real transparency in the OSD
author | giacomo |
---|---|
date | Sat, 31 Mar 2007 17:44:23 -0700 |
parents | 6c3c7b841382 |
children | 6d90d40ca0c8 |
line wrap: on
line source
#ifndef XS_PLAYER_H #define XS_PLAYER_H #include "xmms-sid.h" #include "xs_config.h" #ifdef __cplusplus extern "C" { #endif struct t_xs_status; typedef struct { gint plrIdent; gboolean (*plrProbe)(t_xs_file *); gboolean (*plrInit)(struct t_xs_status *); void (*plrClose)(struct t_xs_status *); gboolean (*plrInitSong)(struct t_xs_status *); guint (*plrFillBuffer)(struct t_xs_status *, gchar *, guint); gboolean (*plrLoadSID)(struct t_xs_status *, gchar *); void (*plrDeleteSID)(struct t_xs_status *); t_xs_tuneinfo* (*plrGetSIDInfo)(gchar *); gboolean (*plrUpdateSIDInfo)(struct t_xs_status *); void (*plrFlush)(struct t_xs_status *); } t_xs_player; typedef struct t_xs_status { gint audioFrequency, /* Audio settings */ audioChannels, audioBitsPerSample, oversampleFactor; /* Factor of oversampling */ AFormat audioFormat; gboolean oversampleEnable; /* TRUE after sidEngine initialization, if xs_cfg.oversampleEnable == TRUE and emulation backend supports oversampling. */ void *sidEngine; /* SID-emulation internal engine data */ t_xs_player *sidPlayer; /* Selected player engine */ gboolean isError, isPlaying, isInitialized; gint currSong, /* Current sub-tune */ lastTime; t_xs_tuneinfo *tuneInfo; } t_xs_status; /* Global variables */ extern InputPlugin xs_plugin_ip; extern t_xs_status xs_status; XS_MUTEX_H(xs_status); #ifdef __cplusplus } #endif #endif /* XS_PLAYER_H */