OSDN Git Service

original
[gb-231r1-is01/GB_2.3_IS01.git] / system / media / opensles / libopensles / android_prompts.h
diff --git a/system/media/opensles/libopensles/android_prompts.h b/system/media/opensles/libopensles/android_prompts.h
new file mode 100644 (file)
index 0000000..8923f9c
--- /dev/null
@@ -0,0 +1,58 @@
+/*
+ * 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.
+ */
+
+
+//-----------------------------------------------------------------------------
+// Android AudioPlayer errors
+//----------------------
+#define ERROR_PLAYERSTREAMTYPE_SET_UNKNOWN_TYPE \
+        "Cannot set stream type: unknown or invalid stream type"
+#define ERROR_PLAYERSTREAMTYPE_REALIZED \
+        "Cannot set stream type: audio player already realized"
+#define ERROR_PLAYERREALIZE_UNKNOWN_DATASOURCE_LOCATOR \
+        "Cannot realize AudioPlayer: with unknown data source locator"
+#define ERROR_PLAYER_NEW_NULL_TRACK \
+        "Internal error: new AudioTrack shouldn't be NULL"
+#define ERROR_PLAYER_PREFETCH_d \
+        "Error (%d) encountered while prefetching"
+
+//-----------------------------------------------------------------------------
+// Android AudioRecorder errors
+//----------------------
+#define ERROR_RECORDER_SINK_MUST_BE_ANDROIDSIMPLEBUFFERQUEUE \
+        "Cannot create AudioRecorder: data sink must be SL_DATALOCATOR_ANDROIDSIMPLEBUFFERQUEUE"
+#define ERROR_RECORDER_SINK_FORMAT_MUST_BE_PCM \
+        "Cannot create AudioRecorder: data sink must be in PCM format"
+#define ERROR_RECORDER_SOURCE_MUST_BE_IODEVICE \
+        "Cannot create AudioRecorder: data source must be SL_DATALOCATOR_IODEVICE"
+#define ERROR_RECORDER_IODEVICE_MUST_BE_AUDIOINPUT \
+        "Cannot create AudioRecorder: data source device type must be SL_IODEVICE_AUDIOINPUT"
+#define ERROR_RECORDER_INPUT_ID_MUST_BE_DEFAULT \
+        "Cannot create AudioRecorder: data source device ID must be SL_DEFAULTDEVICEID_AUDIOINPUT"
+#define ERROR_RECORDERPRESET_SET_UNKNOWN_PRESET \
+        "Cannot set recording preset: unknown or invalid preset"
+#define ERROR_RECORDERPRESET_REALIZED \
+        "Cannot set recording preset: audio recorder already realized"
+
+//-----------------------------------------------------------------------------
+// Android Configuration errors
+//----------------------
+#define ERROR_CONFIG_UNKNOWN_KEY \
+        "Configuration error: unknown key"
+#define ERROR_CONFIG_VALUESIZE_TOO_LOW \
+        "Configuration error: value size too low to store valid value"
+#define ERROR_CONFIG_NULL_PARAM \
+        "Configuration error: invalid NULL parameter"