mirror of https://github.com/axmolengine/axmol.git
70 lines
3.0 KiB
C
70 lines
3.0 KiB
C
|
/*
|
||
|
* Copyright (C) 2010 The Android Open Source Project
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*/
|
||
|
|
||
|
#ifndef OPENSL_ES_ANDROIDCONFIGURATION_H_
|
||
|
#define OPENSL_ES_ANDROIDCONFIGURATION_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
|
||
|
/*---------------------------------------------------------------------------*/
|
||
|
/* Android AudioRecorder configuration */
|
||
|
/*---------------------------------------------------------------------------*/
|
||
|
|
||
|
/** Audio recording preset */
|
||
|
/** Audio recording preset key */
|
||
|
#define SL_ANDROID_KEY_RECORDING_PRESET ((const SLchar*) "androidRecordingPreset")
|
||
|
/** Audio recording preset values */
|
||
|
/** preset "none" cannot be set, it is used to indicate the current settings
|
||
|
* do not match any of the presets. */
|
||
|
#define SL_ANDROID_RECORDING_PRESET_NONE ((SLuint32) 0x00000000)
|
||
|
/** generic recording configuration on the platform */
|
||
|
#define SL_ANDROID_RECORDING_PRESET_GENERIC ((SLuint32) 0x00000001)
|
||
|
/** uses the microphone audio source with the same orientation as the camera
|
||
|
* if available, the main device microphone otherwise */
|
||
|
#define SL_ANDROID_RECORDING_PRESET_CAMCORDER ((SLuint32) 0x00000002)
|
||
|
/** uses the main microphone tuned for voice recognition */
|
||
|
#define SL_ANDROID_RECORDING_PRESET_VOICE_RECOGNITION ((SLuint32) 0x00000003)
|
||
|
|
||
|
/*---------------------------------------------------------------------------*/
|
||
|
/* Android AudioPlayer configuration */
|
||
|
/*---------------------------------------------------------------------------*/
|
||
|
|
||
|
/** Audio playback stream type */
|
||
|
/** Audio playback stream type key */
|
||
|
#define SL_ANDROID_KEY_STREAM_TYPE ((const SLchar*) "androidPlaybackStreamType")
|
||
|
|
||
|
/** Audio playback stream type values */
|
||
|
/* same as android.media.AudioManager.STREAM_VOICE_CALL */
|
||
|
#define SL_ANDROID_STREAM_VOICE ((SLint32) 0x00000000)
|
||
|
/* same as android.media.AudioManager.STREAM_SYSTEM */
|
||
|
#define SL_ANDROID_STREAM_SYSTEM ((SLint32) 0x00000001)
|
||
|
/* same as android.media.AudioManager.STREAM_RING */
|
||
|
#define SL_ANDROID_STREAM_RING ((SLint32) 0x00000002)
|
||
|
/* same as android.media.AudioManager.STREAM_MUSIC */
|
||
|
#define SL_ANDROID_STREAM_MEDIA ((SLint32) 0x00000003)
|
||
|
/* same as android.media.AudioManager.STREAM_ALARM */
|
||
|
#define SL_ANDROID_STREAM_ALARM ((SLint32) 0x00000004)
|
||
|
/* same as android.media.AudioManager.STREAM_NOTIFICATION */
|
||
|
#define SL_ANDROID_STREAM_NOTIFICATION ((SLint32) 0x00000005)
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
#endif /* __cplusplus */
|
||
|
|
||
|
#endif /* OPENSL_ES_ANDROIDCONFIGURATION_H_ */
|