Skip to content
Snippets Groups Projects
Select Git revision
  • 3736db93fb2812b2420e9f28a7e8723c05069419
  • master default protected
  • gitkeep
  • dev protected
  • Issue/2449-GuidPidSlugToProjectSettings
  • Issue/2309-docs
  • Issue/2355-topLevelOrg
  • Issue/2328-noFailOnLog
  • Hotfix/2371-fixGitLabinRCV
  • Issue/2287-guestRole
  • Fix/xxxx-activateGitlab
  • Test/xxxx-enablingGitLab
  • Issue/2349-gitlabHttps
  • Issue/2259-updatePids
  • Issue/2101-gitLabResTypeUi
  • Hotfix/2202-fixNaNQuota
  • Issue/2246-quotaResoval
  • Issue/2221-projectDateCreated
  • Hotfix/2224-quotaSizeAnalytics
  • Fix/xxxx-resourceVisibility
  • Issue/2000-gitlabResourcesAPI
  • v4.4.3
  • v4.4.2
  • v4.4.1
  • v4.4.0
  • v4.3.4
  • v4.3.3
  • v4.3.2
  • v4.3.1
  • v4.3.0
  • v4.2.8
  • v4.2.7
  • v4.2.6
  • v4.2.5
  • v4.2.4
  • v4.2.3
  • v4.2.2
  • v4.2.1
  • v4.2.0
  • v4.1.1
  • v4.1.0
41 results

ProjectController.cs

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    ITAJACKInterface.h 4.30 KiB
    /*
     * ----------------------------------------------------------------
     *
     *		ITA core libs
     *		(c) Copyright Institute of Technical Acoustics (ITA)
     *		RWTH Aachen University, Germany, 2015-2024
     *
     * ----------------------------------------------------------------
     *				    ____  __________  _______
     *				   //  / //__   ___/ //  _   |
     *				  //  /    //  /    //  /_|  |
     *				 //  /    //  /    //  ___   |
     *				//__/    //__/    //__/   |__|
     *
     * ----------------------------------------------------------------
     *
     */
    // $Id: ITAJACKInterface.h $
    
    #pragma once
    
    #include <functional>
    #include <jack/jack.h>
    #include <queue>
    #include <stdio.h>
    #include <string.h>
    #include <string>
    #include <vector>
    
    // Forward declaration of ITADatasource
    class ITADatasource;
    
    
    // Forward declarations of callbacks
    int ITAJackXRUN( void *arg );
    void ITAJackMsg( const char *msg );
    void ITAJackShutdown( void *arg );
    void ITAJackPortConnected( jack_port_id_t a, jack_port_id_t b, int connect, void *arg );
    void ITAJackPortRegistered( jack_port_id_t port_id, int reg, void *arg );
    
    
    /*! ITAJACKInterface
     *
     *
     *
     * see also \ITADatasources
     *
     */
    class ITAJACKInterface
    {
    public:
    	//! ITAPortaudio error code table
    	enum ITA_JACK_ERRORCODE
    	{
    		//! Portaudio/ITAPortaudio no error
    		ITA_JACK_NO_ERROR = 0,
    		ITA_JACK_ERROR    = 1,
    		ITA_JACK_IS_OPEN,
    		ITA_JACK_IS_STARTED,
    		ITA_JACK_OPEN_FAILED,
    		ITA_JACK_NOT_INITIALIZED,
    		ITA_JACK_UNMATCHED_CHANNELS,
    		ITA_JACK_NO_PLAYBACK_DATASOURCE,
    		ITA_JACK_NO_RECORD_DATASOURCE,
    		ITA_JACK_IS_NOT_OPEN,
    		ITA_JACK_INTERNAL_ERROR,
    		ITA_JACK_STREAM_IS_STOPPED,
    		ITA_JACK_UNMATCHED_BUFFER_SIZE,
    		ITA_JACK_UNMATCHED_SAMPLE_RATE
    	};