This documenta- tion describes the current state of development.
Note that interfaces and functionality may still change.

Prokee Modules:
  A
  B
  C
  D
  E
  F
  G
  I
  L
  M
  N
  O
  P
  R
  S
  T
  U
  W

     open all    |    close all

GUI Elements:
  B
  C
  I
  M
  P
  R
  S
  T

     open all    |    close all

GUI Interactions:
  B
  F
  H
  S

     open all    |    close all

GUI Layouts:
  L

     open all    |    close all

Games/Demos:
  M

     open all    |    close all

Third Party Libraries:
  P
  F
  Z

     open all    |    close all

Information about this Website / Informationen zu dieser Webseite:
In case of any questions, or comments, please feel free to contact me via email at apoll500@gmail.com.

Module audio [Version: v01]

 
Compile status: 
see log

Contents


Dependencies

For the Prokee Module Library

Dynamically Linked Modules: For the Standalone Executable Third Party Library:

Source Files

  • interface/prokee/audio/prokee.h
  • interface/prokee/audio/prokee_c.h
  • interface/prokee/mlocal.h
  • audio/audio.h
  • interface/prokee/audio/prokee.cpp
  • interface/prokee/audio/prokee_c.cpp
  • audio/audio.cpp

Licenses


Command-Line Interface ()


Exported Symbols

Pointers

int (*audio_main)(int argc,char **argv);
int (*audio_Pa_GetVersion)();
const char *(*audio_Pa_GetVersionText)();
const PaVersionInfo *(*audio_Pa_GetVersionInfo)();
const char *(*audio_Pa_GetErrorText)(PaError errorCode);
PaError (*audio_Pa_Initialize)();
PaError (*audio_Pa_Terminate)();
PaHostApiIndex (*audio_Pa_GetHostApiCount)();
PaHostApiIndex (*audio_Pa_GetDefaultHostApi)();
const PaHostApiInfo *(*audio_Pa_GetHostApiInfo)(PaHostApiIndex hostApi);
PaHostApiIndex (*audio_Pa_HostApiTypeIdToHostApiIndex)(PaHostApiTypeId type);
PaDeviceIndex (*audio_Pa_HostApiDeviceIndexToDeviceIndex)(PaHostApiIndex hostApi,int hostApiDeviceIndex);
const PaHostErrorInfo *(*audio_Pa_GetLastHostErrorInfo)();
PaDeviceIndex (*audio_Pa_GetDeviceCount)();
PaDeviceIndex (*audio_Pa_GetDefaultInputDevice)();
PaDeviceIndex (*audio_Pa_GetDefaultOutputDevice)();
const PaDeviceInfo *(*audio_Pa_GetDeviceInfo)(PaDeviceIndex device);
PaError (*audio_Pa_IsFormatSupported)(const PaStreamParameters *inputParameters,const PaStreamParameters *outputParameters,double sampleRate);
PaError (*audio_Pa_OpenStream)(PaStream **stream,const PaStreamParameters *inputParameters,const PaStreamParameters *outputParameters,double sampleRate,unsigned long int framesPerBuffer,PaStreamFlags streamFlags,PaStreamCallback *streamCallback,void *userData);
PaError (*audio_Pa_OpenDefaultStream)(PaStream **stream,int numInputChannels,int numOutputChannels,PaSampleFormat sampleFormat,double sampleRate,unsigned long int framesPerBuffer,PaStreamCallback *streamCallback,void *userData);
PaError (*audio_Pa_CloseStream)(PaStream *stream);
PaError (*audio_Pa_SetStreamFinishedCallback)(PaStream *stream,PaStreamFinishedCallback *streamFinishedCallback);
PaError (*audio_Pa_StartStream)(PaStream *stream);
PaError (*audio_Pa_StopStream)(PaStream *stream);
PaError (*audio_Pa_AbortStream)(PaStream *stream);
PaError (*audio_Pa_IsStreamStopped)(PaStream *stream);
PaError (*audio_Pa_IsStreamActive)(PaStream *stream);
const PaStreamInfo *(*audio_Pa_GetStreamInfo)(PaStream *stream);
PaTime (*audio_Pa_GetStreamTime)(PaStream *stream);
double (*audio_Pa_GetStreamCpuLoad)(PaStream *stream);
PaError (*audio_Pa_ReadStream)(PaStream *stream,void *buffer,unsigned long int frames);
PaError (*audio_Pa_WriteStream)(PaStream *stream,const void *buffer,unsigned long int frames);
long int (*audio_Pa_GetStreamReadAvailable)(PaStream *stream);
long int (*audio_Pa_GetStreamWriteAvailable)(PaStream *stream);
PaError (*audio_Pa_GetSampleSize)(PaSampleFormat format);
void (*audio_Pa_Sleep)(long int msec);

Internal Pointers

Pointers

int audio_main(int argc,char **argv);
int audio_Pa_GetVersion();
const char *audio_Pa_GetVersionText();
const PaVersionInfo *audio_Pa_GetVersionInfo();
const char *audio_Pa_GetErrorText(PaError errorCode);
PaError audio_Pa_Initialize();
PaError audio_Pa_Terminate();
PaHostApiIndex audio_Pa_GetHostApiCount();
PaHostApiIndex audio_Pa_GetDefaultHostApi();
const PaHostApiInfo *audio_Pa_GetHostApiInfo(PaHostApiIndex hostApi);
PaHostApiIndex audio_Pa_HostApiTypeIdToHostApiIndex(PaHostApiTypeId type);
PaDeviceIndex audio_Pa_HostApiDeviceIndexToDeviceIndex(PaHostApiIndex hostApi,int hostApiDeviceIndex);
const PaHostErrorInfo *audio_Pa_GetLastHostErrorInfo();
PaDeviceIndex audio_Pa_GetDeviceCount();
PaDeviceIndex audio_Pa_GetDefaultInputDevice();
PaDeviceIndex audio_Pa_GetDefaultOutputDevice();
const PaDeviceInfo *audio_Pa_GetDeviceInfo(PaDeviceIndex device);
PaError audio_Pa_IsFormatSupported(const PaStreamParameters *inputParameters,const PaStreamParameters *outputParameters,double sampleRate);
PaError audio_Pa_OpenStream(PaStream **stream,const PaStreamParameters *inputParameters,const PaStreamParameters *outputParameters,double sampleRate,unsigned long int framesPerBuffer,PaStreamFlags streamFlags,PaStreamCallback *streamCallback,void *userData);
PaError audio_Pa_OpenDefaultStream(PaStream **stream,int numInputChannels,int numOutputChannels,PaSampleFormat sampleFormat,double sampleRate,unsigned long int framesPerBuffer,PaStreamCallback *streamCallback,void *userData);
PaError audio_Pa_CloseStream(PaStream *stream);
PaError audio_Pa_SetStreamFinishedCallback(PaStream *stream,PaStreamFinishedCallback *streamFinishedCallback);
PaError audio_Pa_StartStream(PaStream *stream);
PaError audio_Pa_StopStream(PaStream *stream);
PaError audio_Pa_AbortStream(PaStream *stream);
PaError audio_Pa_IsStreamStopped(PaStream *stream);
PaError audio_Pa_IsStreamActive(PaStream *stream);
const PaStreamInfo *audio_Pa_GetStreamInfo(PaStream *stream);
PaTime audio_Pa_GetStreamTime(PaStream *stream);
double audio_Pa_GetStreamCpuLoad(PaStream *stream);
PaError audio_Pa_ReadStream(PaStream *stream,void *buffer,unsigned long int frames);
PaError audio_Pa_WriteStream(PaStream *stream,const void *buffer,unsigned long int frames);
long int audio_Pa_GetStreamReadAvailable(PaStream *stream);
long int audio_Pa_GetStreamWriteAvailable(PaStream *stream);
PaError audio_Pa_GetSampleSize(PaSampleFormat format);
void audio_Pa_Sleep(long int msec);

Build Log

--------------------------------------------------------------------------------
audio -- Mo Dez 23 00:56:32 CET 2019
--------------------------------------------------------------------------------
ERROR: Fehler beim öffnen der Datei files.def.
Fehlernummer: 2
-------------------------------------------------------------------------------
> install headers
-------------------------------------------------------------------------------
Executable for Linux/[local system] (CLI)
[compiling] [end]
------------------------------------------------------------------------------- Dynamic library for Linux/[local system] (DLL)
[compiling] [end]
------------------------------------------------------------------------------- Static library for Linux/[local system] (LIB)
[compiling] [end]
------------------------------------------------------------------------------- TESTS (Automated Tests for Linux/[local system])
[compiling] [end]
------------------------------------------------------------------------------- Executable for Linux/32bit (CLI)
[compiling] [end]
------------------------------------------------------------------------------- Dynamic library for Linux/32bit (DLL)
[compiling] [end]
------------------------------------------------------------------------------- Static library for Linux/32bit (LIB)
[compiling] [end]
------------------------------------------------------------------------------- TESTS (Automated Tests for Linux/32bit)
[compiling] [end]
------------------------------------------------------------------------------- Executable for Linux/64bit (CLI)
[compiling] [end]
------------------------------------------------------------------------------- Dynamic library for Linux/64bit (DLL)
[compiling] [end]
------------------------------------------------------------------------------- Static library for Linux/64bit (LIB)
[compiling] [end]
------------------------------------------------------------------------------- TESTS (Automated Tests for Linux/64bit)
[compiling] [end]
cp: der Aufruf von stat für 'bin/v01/cli_linux_win/audio.exe' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'bin/v01/cli_linux_win32/audio.exe' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'bin/v01/cli_linux_win64/audio.exe' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'bin/v01/dll_linux_win/libaudio.dll' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'bin/v01/dll_linux_win32/libaudio.dll' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'bin/v01/dll_linux_win64/libaudio.dll' ist nicht möglich: Datei oder Verzeichnis nicht gefunden ------------------------------------------------------------------------------- > test_all ------------------------------------------------------------------------------- > prepare ------------------------------------------------------------------------------- > install creating /opt/prokee/system/reg/dllinfo/audio.v01.info ... license=1 | version=1 | library=libaudio.v01 creating /opt/prokee/system/reg/dllinfo/audio.info ... license=1 | version=1 | library=libaudio.v01 ------------------------------------------------------------------------------- > module cp: der Aufruf von stat für 'libaudio.dll' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'libaudio_32bit.dll' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'libaudio_64bit.dll' ist nicht möglich: Datei oder Verzeichnis nicht gefunden ------------------------------------------------------------------------------- > exepack cp: der Aufruf von stat für 'audio_32bit.exe' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'audio_64bit.exe' ist nicht möglich: Datei oder Verzeichnis nicht gefunden ------------------------------------------------------------------------------- > sourcepack ------------------------------------------------------------------------------- > cleanup ------------------------------------------------------------------------------- > webexport -------------------------------------------------------------------------------- FERTIG --------------------------------------------------------------------------------

Copyright © 2017 - 2019 by Andreas Pollhammer