cwAudioDevice.h,cwAudioDeviceAlsa.h/cpp : Removed deviceIsAsync()
This commit is contained in:
parent
18e78ad206
commit
3f8992d6ae
@ -62,7 +62,6 @@ namespace cw
|
|||||||
rc_t (*deviceStart)( struct driver_str* drvArg, unsigned devIdx );
|
rc_t (*deviceStart)( struct driver_str* drvArg, unsigned devIdx );
|
||||||
rc_t (*deviceStop)( struct driver_str* drvArg, unsigned devIdx );
|
rc_t (*deviceStop)( struct driver_str* drvArg, unsigned devIdx );
|
||||||
bool (*deviceIsStarted)( struct driver_str* drvArg, unsigned devIdx );
|
bool (*deviceIsStarted)( struct driver_str* drvArg, unsigned devIdx );
|
||||||
bool (*deviceIsAsync)( struct driver_str* drvArg, unsigned devIdx );
|
|
||||||
rc_t (*deviceExecute)( struct driver_str* drvArg, unsigned devIdx );
|
rc_t (*deviceExecute)( struct driver_str* drvArg, unsigned devIdx );
|
||||||
void (*deviceRealTimeReport)( struct driver_str* drvArg, unsigned devIdx );
|
void (*deviceRealTimeReport)( struct driver_str* drvArg, unsigned devIdx );
|
||||||
} driver_t;
|
} driver_t;
|
||||||
|
@ -1375,7 +1375,6 @@ cw::rc_t cw::audio::device::alsa::create( handle_t& hRef, struct driver_str*& dr
|
|||||||
p->driver.deviceStart = deviceStart;
|
p->driver.deviceStart = deviceStart;
|
||||||
p->driver.deviceStop = deviceStop;
|
p->driver.deviceStop = deviceStop;
|
||||||
p->driver.deviceIsStarted = deviceIsStarted;
|
p->driver.deviceIsStarted = deviceIsStarted;
|
||||||
p->driver.deviceIsAsync = deviceIsAsync;
|
|
||||||
p->driver.deviceExecute = deviceExecute;
|
p->driver.deviceExecute = deviceExecute;
|
||||||
|
|
||||||
p->driver.deviceRealTimeReport = deviceRealTimeReport;
|
p->driver.deviceRealTimeReport = deviceRealTimeReport;
|
||||||
@ -1584,11 +1583,6 @@ bool cw::audio::device::alsa::deviceIsStarted(struct driver_str* drv, unsigned
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool cw::audio::device::alsa::deviceIsAsync(struct driver_str* drv, unsigned devIdx )
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
cw::rc_t cw::audio::device::alsa::deviceExecute(struct driver_str* drv, unsigned devIdx )
|
cw::rc_t cw::audio::device::alsa::deviceExecute(struct driver_str* drv, unsigned devIdx )
|
||||||
{
|
{
|
||||||
return kOkRC;
|
return kOkRC;
|
||||||
|
@ -24,7 +24,6 @@ namespace cw
|
|||||||
rc_t deviceStart( struct driver_str* drv, unsigned devIdx );
|
rc_t deviceStart( struct driver_str* drv, unsigned devIdx );
|
||||||
rc_t deviceStop( struct driver_str* drv, unsigned devIdx );
|
rc_t deviceStop( struct driver_str* drv, unsigned devIdx );
|
||||||
bool deviceIsStarted( struct driver_str* drv, unsigned devIdx );
|
bool deviceIsStarted( struct driver_str* drv, unsigned devIdx );
|
||||||
bool deviceIsAsync( struct driver_str* drv, unsigned devIdx );
|
|
||||||
rc_t deviceExecute( struct driver_str* drv, unsigned devIdx );
|
rc_t deviceExecute( struct driver_str* drv, unsigned devIdx );
|
||||||
void deviceRealTimeReport( struct driver_str* drv, unsigned devIdx );
|
void deviceRealTimeReport( struct driver_str* drv, unsigned devIdx );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user