krähemann.com

AgsFxNotationAudioProcessor

AgsFxNotationAudioProcessor — fx notation audio processor

Stability Level

Stable, unless otherwise indicated

Object Hierarchy

    GObject
    ╰── AgsRecall
        ╰── AgsRecallAudioRun
            ╰── AgsFxNotationAudioProcessor
                ├── AgsFxDssiAudioProcessor
                ├── AgsFxFMSynthAudioProcessor
                ├── AgsFxLv2AudioProcessor
                ├── AgsFxSF2SynthAudioProcessor
                ├── AgsFxSFZSynthAudioProcessor
                ╰── AgsFxSynthAudioProcessor

Implemented Interfaces

AgsFxNotationAudioProcessor implements AgsConnectable, AgsCountable, AgsSeekable and AgsTactable.

Includes

#include <ags/audio/fx/ags_fx_notation_audio_processor.h>

Description

The AgsFxNotationAudioProcessor class provides ports to the effect processor.

Functions

ags_fx_notation_audio_processor_key_on ()

void
ags_fx_notation_audio_processor_key_on
                               (AgsFxNotationAudioProcessor *fx_notation_audio_processor,
                                AgsNote *note,
                                guint velocity,
                                guint key_mode);

ags_fx_notation_audio_processor_key_off ()

void
ags_fx_notation_audio_processor_key_off
                               (AgsFxNotationAudioProcessor *fx_notation_audio_processor,
                                AgsNote *note,
                                guint velocity,
                                guint key_mode);

ags_fx_notation_audio_processor_key_pressure ()

void
ags_fx_notation_audio_processor_key_pressure
                               (AgsFxNotationAudioProcessor *fx_notation_audio_processor,
                                AgsNote *note,
                                guint velocity,
                                guint key_mode);

ags_fx_notation_audio_processor_play ()

void
ags_fx_notation_audio_processor_play (AgsFxNotationAudioProcessor *fx_notation_audio_processor);

ags_fx_notation_audio_processor_record ()

void
ags_fx_notation_audio_processor_record
                               (AgsFxNotationAudioProcessor *fx_notation_audio_processor);

ags_fx_notation_audio_processor_feed ()

void
ags_fx_notation_audio_processor_feed (AgsFxNotationAudioProcessor *fx_notation_audio_processor);

ags_fx_notation_audio_processor_counter_change ()

void
ags_fx_notation_audio_processor_counter_change
                               (AgsFxNotationAudioProcessor *fx_notation_audio_processor);

ags_fx_notation_audio_processor_new ()

AgsFxNotationAudioProcessor *
ags_fx_notation_audio_processor_new (AgsAudio *audio);

Create a new instance of AgsFxNotationAudioProcessor

Parameters

audio

the AgsAudio

 

Returns

the new AgsFxNotationAudioProcessor

Since: 3.3.0


AGS_FX_NOTATION_AUDIO_PROCESSOR()

#define AGS_FX_NOTATION_AUDIO_PROCESSOR(obj)                (G_TYPE_CHECK_INSTANCE_CAST((obj), AGS_TYPE_FX_NOTATION_AUDIO_PROCESSOR, AgsFxNotationAudioProcessor))

AGS_FX_NOTATION_AUDIO_PROCESSOR_CLASS()

#define AGS_FX_NOTATION_AUDIO_PROCESSOR_CLASS(class)        (G_TYPE_CHECK_CLASS_CAST((class), AGS_TYPE_FX_NOTATION_AUDIO_PROCESSOR, AgsFxNotationAudioProcessorClass))

AGS_FX_NOTATION_AUDIO_PROCESSOR_GET_CLASS()

#define AGS_FX_NOTATION_AUDIO_PROCESSOR_GET_CLASS(obj)      (G_TYPE_INSTANCE_GET_CLASS ((obj), AGS_TYPE_FX_NOTATION_AUDIO_PROCESSOR, AgsFxNotationAudioProcessorClass))

AGS_IS_FX_NOTATION_AUDIO_PROCESSOR()

#define AGS_IS_FX_NOTATION_AUDIO_PROCESSOR(obj)             (G_TYPE_CHECK_INSTANCE_TYPE ((obj), AGS_TYPE_FX_NOTATION_AUDIO_PROCESSOR))

AGS_IS_FX_NOTATION_AUDIO_PROCESSOR_CLASS()

#define AGS_IS_FX_NOTATION_AUDIO_PROCESSOR_CLASS(class)     (G_TYPE_CHECK_CLASS_TYPE ((class), AGS_TYPE_FX_NOTATION_AUDIO_PROCESSOR))

ags_fx_notation_audio_processor_get_type ()

GType
ags_fx_notation_audio_processor_get_type
                               ();

Types and Values

AGS_FX_NOTATION_AUDIO_PROCESSOR_DEFAULT_KEY_ON_VELOCITY

#define AGS_FX_NOTATION_AUDIO_PROCESSOR_DEFAULT_KEY_ON_VELOCITY (127)

enum AgsFxNotationAudioProcessorKeyMode

Members

AGS_FX_NOTATION_AUDIO_PROCESSOR_KEY_MODE_PLAY

   

AGS_FX_NOTATION_AUDIO_PROCESSOR_KEY_MODE_RECORD

   

AGS_FX_NOTATION_AUDIO_PROCESSOR_KEY_MODE_FEED

   

AGS_TYPE_FX_NOTATION_AUDIO_PROCESSOR

#define AGS_TYPE_FX_NOTATION_AUDIO_PROCESSOR                (ags_fx_notation_audio_processor_get_type())

struct AgsFxNotationAudioProcessor

struct AgsFxNotationAudioProcessor;

struct AgsFxNotationAudioProcessorClass

struct AgsFxNotationAudioProcessorClass {
  AgsRecallAudioRunClass recall_audio_run;

  void (*key_on)(AgsFxNotationAudioProcessor *fx_notation_audio_processor,
		 AgsNote *note,
		 guint velocity,
		 guint key_mode);
  void (*key_off)(AgsFxNotationAudioProcessor *fx_notation_audio_processor,
		  AgsNote *note,
		  guint velocity,
		  guint key_mode);
  void (*key_pressure)(AgsFxNotationAudioProcessor *fx_notation_audio_processor,
		       AgsNote *note,
		       guint velocity,
		       guint key_mode);

  void (*play)(AgsFxNotationAudioProcessor *fx_notation_audio_processor);
  void (*record)(AgsFxNotationAudioProcessor *fx_notation_audio_processor);
  void (*feed)(AgsFxNotationAudioProcessor *fx_notation_audio_processor);

  void (*counter_change)(AgsFxNotationAudioProcessor *fx_notation_audio_processor);
};