Panda3D
Functions | Variables
config_openalAudio.cxx File Reference

PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University. More...

#include "pandabase.h"
#include "config_openalAudio.h"
#include "openalAudioManager.h"
#include "openalAudioSound.h"
#include "pandaSystem.h"
#include "dconfig.h"

Go to the source code of this file.

Functions

 ConfigureDef (config_openalAudio)
 
 ConfigureFn (config_openalAudio)
 
Create_AudioManager_proc * get_audio_manager_func_openal_audio ()
 This function is called when the dynamic library is loaded; it should return the Create_AudioManager function appropriate to create an OpenALAudioManager. More...
 
void init_libOpenALAudio ()
 Initializes the library. More...
 
 NotifyCategoryDef (openalAudio, ":audio")
 

Variables

ConfigVariableDouble openal_buffer_delete_delay ("openal-buffer-delete-delay", 0.001, PRC_DESC("If deleting a buffer fails due to still being in use, the OpenAL " "sound plugin will wait a moment and retry deletion, with an " "exponentially-increasing delay for each try. This number " "specifies how long, in seconds, the OpenAL plugin will wait after " "its first failed try. The second try will be double this " "delay, the third quadruple, and so on."))
 
ConfigVariableInt openal_buffer_delete_retries ("openal-buffer-delete-retries", 5, PRC_DESC("If deleting a buffer fails due to still being in use, the OpenAL " "sound plugin will wait a moment and retry deletion, with an " "exponentially-increasing delay for each try. This number " "specifies how many repeat tries (not counting the initial try) " "should be made before giving up and raising an error."))
 
ConfigVariableString openal_device ("openal-device", "", PRC_DESC("Specify the OpenAL device string for audio playback (no quotes). If this " "is not specified, the OpenAL default device is used."))
 

Detailed Description

PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.

All rights reserved.

All use of this software is subject to the terms of the revised BSD license. You should have received a copy of this license along with this source code in a file named "LICENSE."

Author
cort

Definition in file config_openalAudio.cxx.

Function Documentation

◆ get_audio_manager_func_openal_audio()

Create_AudioManager_proc* get_audio_manager_func_openal_audio ( )

This function is called when the dynamic library is loaded; it should return the Create_AudioManager function appropriate to create an OpenALAudioManager.

Definition at line 86 of file config_openalAudio.cxx.

References Create_OpenALAudioManager(), and init_libOpenALAudio().

◆ init_libOpenALAudio()

void init_libOpenALAudio ( )

Initializes the library.

This must be called at least once before any of the functions or classes in this library can be used. Normally it will be called by the static initializers and need not be called explicitly, but special cases exist.

Definition at line 62 of file config_openalAudio.cxx.

References PandaSystem::add_system(), Create_OpenALAudioManager(), PandaSystem::get_global_ptr(), and PandaSystem::set_system_tag().

Referenced by get_audio_manager_func_openal_audio().