cwAudioDevice.h,cwAudioDeviceAlsa.h/cpp : Removed deviceIsAsync()

This commit is contained in:
kevin 2023-02-18 13:49:17 -05:00
parent 18e78ad206
commit 3f8992d6ae
3 changed files with 0 additions and 8 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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 );