Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Unified Diff: remoting/host/audio_capturer_win.h

Issue 10823440: Silence detection test for the Windows audio capturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comment Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | remoting/host/audio_capturer_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/audio_capturer_win.h
diff --git a/remoting/host/audio_capturer_win.h b/remoting/host/audio_capturer_win.h
new file mode 100644
index 0000000000000000000000000000000000000000..bfd9803133947244294f463b20df4ce627319ac9
--- /dev/null
+++ b/remoting/host/audio_capturer_win.h
@@ -0,0 +1,54 @@
+// Copyright (c) 2012 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.
+
+#include <audioclient.h>
+#include <mmdeviceapi.h>
+
+#include "base/basictypes.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/timer.h"
+#include "base/win/scoped_co_mem.h"
+#include "base/win/scoped_com_initializer.h"
+#include "base/win/scoped_comptr.h"
+#include "remoting/host/audio_capturer.h"
+#include "remoting/proto/audio.pb.h"
+
+namespace remoting {
+
+class AudioCapturerWin : public AudioCapturer {
+ public:
+ AudioCapturerWin();
+ virtual ~AudioCapturerWin();
+
+ // AudioCapturer interface.
+ virtual bool Start(const PacketCapturedCallback& callback) OVERRIDE;
+ virtual void Stop() OVERRIDE;
+ virtual bool IsRunning() OVERRIDE;
+
+ static bool IsPacketOfSilence(const int16* samples, int number_of_samples);
+
+ private:
+ // Receives all packets from the audio capture endpoint buffer and pushes them
+ // to the network.
+ void DoCapture();
+
+ PacketCapturedCallback callback_;
+
+ AudioPacket::SamplingRate sampling_rate_;
+
+ scoped_ptr<base::RepeatingTimer<AudioCapturerWin> > capture_timer_;
+ base::TimeDelta audio_device_period_;
+
+ base::win::ScopedCoMem<WAVEFORMATEX> wave_format_ex_;
+ base::win::ScopedComPtr<IAudioCaptureClient> audio_capture_client_;
+ base::win::ScopedComPtr<IAudioClient> audio_client_;
+ base::win::ScopedComPtr<IMMDevice> mm_device_;
+ scoped_ptr<base::win::ScopedCOMInitializer> com_initializer_;
+
+ base::ThreadChecker thread_checker_;
+
+ DISALLOW_COPY_AND_ASSIGN(AudioCapturerWin);
+};
+
+} // namespace remoting
« no previous file with comments | « no previous file | remoting/host/audio_capturer_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698