summaryrefslogtreecommitdiffstats
path: root/ppapi/api/trusted
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-18 00:14:24 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-18 00:14:24 +0000
commit1f8a089555312f281aa4074141e0945096d2a621 (patch)
tree32ace48d91e7eb290bd2b8df39e7fbc17282fcdf /ppapi/api/trusted
parentfc2436bac6a8e5f6839f6e62e8680a15e7d592eb (diff)
downloadchromium_src-1f8a089555312f281aa4074141e0945096d2a621.zip
chromium_src-1f8a089555312f281aa4074141e0945096d2a621.tar.gz
chromium_src-1f8a089555312f281aa4074141e0945096d2a621.tar.bz2
Revert 110602 - Revert 110587 - Microphone support for Pepper Flash.
[I think the Windows shared builders just need to be clobbered.] [Committing for pbrophy@adobe.com. Original review: http://codereview.chromium.org/8138008/ .] This change supports audio capture from the microphone and supplies the data through a Pepper interface. Its enumeration is limited to the default audio device that uses mono 44.1kHz. TBR=tony@chromium.org Review URL: http://codereview.chromium.org/8574029 TBR=viettrungluu@chromium.org Review URL: http://codereview.chromium.org/8569003 TBR=ajwong@chromium.org Review URL: http://codereview.chromium.org/8561003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110609 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api/trusted')
-rw-r--r--ppapi/api/trusted/ppb_audio_input_trusted_dev.idl53
1 files changed, 53 insertions, 0 deletions
diff --git a/ppapi/api/trusted/ppb_audio_input_trusted_dev.idl b/ppapi/api/trusted/ppb_audio_input_trusted_dev.idl
new file mode 100644
index 0000000..860c2e3
--- /dev/null
+++ b/ppapi/api/trusted/ppb_audio_input_trusted_dev.idl
@@ -0,0 +1,53 @@
+/* Copyright (c) 2011 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+/**
+ * This file defines the trusted audio input interface.
+ */
+
+label Chrome {
+ M17 = 0.1
+};
+
+/**
+ * This interface is to be used by proxy implementations. All
+ * functions should be called from the main thread only. The
+ * resource returned is an Audio input esource; most of the PPB_Audio
+ * interface is also usable on this resource.
+ */
+[version=0.1, macro="PPB_AUDIO_INPUT_TRUSTED_DEV_INTERFACE"]
+interface PPB_AudioInputTrusted_Dev {
+ /** Returns an audio input resource. */
+ PP_Resource CreateTrusted(
+ [in] PP_Instance instance);
+
+ /**
+ * Opens a paused audio interface, used by trusted side of proxy.
+ * Returns PP_ERROR_WOULD_BLOCK on success, and invokes
+ * the |create_callback| asynchronously to complete.
+ * As this function should always be invoked from the main thread,
+ * do not use the blocking variant of PP_CompletionCallback.
+ */
+ int32_t Open(
+ [in] PP_Resource audio_input,
+ [in] PP_Resource config,
+ [in] PP_CompletionCallback create_callback);
+
+ /**
+ * Get the sync socket. Use once Open has completed.
+ * Returns PP_OK on success.
+ */
+ int32_t GetSyncSocket(
+ [in] PP_Resource audio_input,
+ [out] handle_t sync_socket);
+
+ /**
+ * Get the shared memory interface. Use once Open has completed.
+ * Returns PP_OK on success.
+ */
+ int32_t GetSharedMemory(
+ [in] PP_Resource audio_input,
+ [out] handle_t shm_handle,
+ [out] uint32_t shm_size);
+};