Skip to content

OcaAudioProcessingManager#

This document describes the controller implementation of OcaAudioProcessingManager. This class is documented in the AES70 standard as:

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.


Overview#

Class Declaration#

namespace aes70::controller
{
  class OcaAudioProcessingManager : public OcaManager
  {
  public:
    OcaAudioProcessingManager(std::shared_ptr<connection> connection,
            uin32_t object_number);
    OcaAudioProcessingManager(const OcaAudioProcessingManager &o);

    // Control Methods

    // Observing Properties

    // Property Changed Subscriptions
  };
}

Methods#