Tizen Native API
5.5
|
OpenAL is open source for audio play. Various user applications or audio related modules can invoke OpenAL api in Tizen.
#include <AL/alc.h>
As Tizen Audio Framework works with stream information concept since 3.0, OpenAL needs to be integrated with stream information.
The function "alcOpenDeviceNew" is same as alcOpenDevice() with addition of "StreamType" and "StreamIndex" fields to Device structure.
Remarks :
Functions | |
ALC_API ALCdevice *ALC_APIENTRY | alcOpenDeviceNew (const ALCchar *devicename, sound_stream_info_h stream_info) |
Open the named device with the stream information. |
ALC_API ALCdevice* ALC_APIENTRY alcOpenDeviceNew | ( | const ALCchar * | devicename, |
sound_stream_info_h | stream_info | ||
) |
Open the named device with the stream information.
[in] | devicename | The device name to open |
[in] | stream_info | The stream information handle (can be created by sound_manager module) |