mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 08:05:45 -04:00
Initial community commit
This commit is contained in:
85
Src/Plugins/Output/out_ds/cnv_ds2.h
Normal file
85
Src/Plugins/Output/out_ds/cnv_ds2.h
Normal file
@ -0,0 +1,85 @@
|
||||
#ifndef _CNV_DS2_H
|
||||
#define _CNV_DS2_H
|
||||
|
||||
#include "../studio/wac.h"
|
||||
#include "../common/rootcomp.h"
|
||||
#include "../attribs/cfgitemi.h"
|
||||
#include "../attribs/attrint.h"
|
||||
#include "../attribs/attrbool.h"
|
||||
#include "../attribs/attrfloat.h"
|
||||
#include "../attribs/attrstr.h"
|
||||
|
||||
#include "../studio/services/svc_mediaconverter.h"
|
||||
#include "../studio/services/servicei.h"
|
||||
#include "../studio/corecb.h"
|
||||
|
||||
#include <windows.h>
|
||||
#include <mmsystem.h>
|
||||
#include <dsound.h>
|
||||
|
||||
#include "ds2.h"
|
||||
|
||||
#define WACNAME WACcnv_ds2
|
||||
|
||||
class WACNAME : public WAComponentClient {
|
||||
public:
|
||||
WACNAME();
|
||||
virtual ~WACNAME();
|
||||
|
||||
virtual const char *getName() { return "DirectSound Output"; };
|
||||
virtual GUID getGUID();
|
||||
|
||||
virtual void onCreate();
|
||||
virtual void onDestroy();
|
||||
|
||||
virtual int getDisplayComponent() { return FALSE; };
|
||||
|
||||
virtual CfgItem *getCfgInterface(int n) { return this; }
|
||||
};
|
||||
|
||||
|
||||
class cnvDS2 : public svc_mediaConverterI {
|
||||
public:
|
||||
cnvDS2();
|
||||
virtual ~cnvDS2();
|
||||
|
||||
// service
|
||||
static const char *getServiceName() { return "DirectSound Output"; }
|
||||
|
||||
virtual int canConvertFrom(svc_fileReader *reader, const char *name, const char *chunktype) {
|
||||
if(chunktype && !STRICMP(chunktype,"pcm")) return 1;
|
||||
return 0;
|
||||
}
|
||||
virtual const char *getConverterTo() { return "OUTPUT:DirectSound"; }
|
||||
|
||||
virtual int getInfos(MediaInfo *infos);
|
||||
|
||||
virtual int processData(MediaInfo *infos, ChunkList *chunk_list, bool *killswitch);
|
||||
|
||||
virtual int getLatency(void);
|
||||
|
||||
virtual int isSelectableOutput(void) { return 1; }
|
||||
|
||||
// callbacks
|
||||
virtual int corecb_onSeeked(int newpos);
|
||||
|
||||
virtual int sortPlacement(const char *oc);
|
||||
|
||||
virtual int corecb_onVolumeChange(int v);
|
||||
virtual int corecb_onPanChange(int v);
|
||||
virtual int corecb_onAbortCurrentSong();
|
||||
virtual int corecb_onPaused();
|
||||
virtual int corecb_onUnpaused();
|
||||
virtual int corecb_onEndOfDecode();
|
||||
private:
|
||||
DS2 * m_ds2;
|
||||
UINT sr,nch,bps,chan;
|
||||
bool ds2_paused;
|
||||
UINT fadenow;
|
||||
bool use_vol;
|
||||
bool use_pitch;
|
||||
double pitch_set;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user