aes70
Version:
A controller library for the AES70 protocol.
19 lines (17 loc) • 542 B
TypeScript
import { RemoteDevice } from '../remote_device.js';
import { OcaManager } from './OcaManager.js';
/**
* Placeholder for optional manager that in future versions of the standard will
* hold various global audio processing parameters.
*
* - May be instantiated at most once in any device.
*
* - If instantiated, object number must be 9.
*
*
* @extends OcaManager
* @class OcaAudioProcessingManager
*/
export declare class OcaAudioProcessingManager extends OcaManager {
constructor(objectNumber: number, device: RemoteDevice);
}