diff options
author | satish@chromium.org <satish@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-16 05:58:04 +0000 |
---|---|---|
committer | satish@chromium.org <satish@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-16 05:58:04 +0000 |
commit | 41bdde54e45a13ff9c9f34b34f8e4f0395e9183b (patch) | |
tree | 5da8b35681a91144827aa8cd38f93814b6c9e8c2 /media/media.gyp | |
parent | c60d64ec89c1a8eb5279c38c101ec710c8d931f9 (diff) | |
download | chromium_src-41bdde54e45a13ff9c9f34b34f8e4f0395e9183b.zip chromium_src-41bdde54e45a13ff9c9f34b34f8e4f0395e9183b.tar.gz chromium_src-41bdde54e45a13ff9c9f34b34f8e4f0395e9183b.tar.bz2 |
Add an AudioInputController to help with audio recording.
This is similar to the existing AudioOutputController class used for playback.
Also adds a unit test which uses the new fake audio input stream, so this patch is dependant on http://codereview.chromium.org/2909015
TEST=no new user visible change to test, just some backend recording additions which are unused at the moment.
BUG=none
Review URL: http://codereview.chromium.org/2905010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52617 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/media.gyp')
-rw-r--r-- | media/media.gyp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/media/media.gyp b/media/media.gyp index 554dcd1..7ef2bae 100644 --- a/media/media.gyp +++ b/media/media.gyp @@ -21,6 +21,8 @@ 'msvs_guid': '6AE76406-B03B-11DD-94B1-80B556D89593', 'sources': [ 'audio/audio_io.h', + 'audio/audio_input_controller.cc', + 'audio/audio_input_controller.h', 'audio/audio_output_controller.cc', 'audio/audio_output_controller.h', 'audio/audio_util.cc', @@ -190,6 +192,7 @@ '../third_party/openmax/omx_stub.cc', ], 'sources': [ + 'audio/audio_input_controller_unittest.cc', 'audio/audio_output_controller_unittest.cc', 'audio/audio_util_unittest.cc', 'audio/fake_audio_input_stream_unittest.cc', |