Index: remoting/client/jni/audio_player_impl.cc |
diff --git a/remoting/client/jni/audio_player_impl.cc b/remoting/client/jni/audio_player_impl.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..10a438c11e048efe169be7905434352cd571d8ed |
--- /dev/null |
+++ b/remoting/client/jni/audio_player_impl.cc |
@@ -0,0 +1,24 @@ |
+// Copyright 2013 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 "remoting/client/jni/audio_player_impl.h" |
+ |
+#include "base/logging.h" |
+ |
+namespace remoting { |
+ |
+AudioPlayerImpl::AudioPlayerImpl() {} |
+ |
+uint32 AudioPlayerImpl::GetSamplesPerFrame() { |
+ LOG(WARNING) << "AudioPlayerImpl::GetSamplesPerFrame() [unimplemented]"; |
Wez
2013/07/09 17:34:47
nit: NOTIMPLEMENTED()
|
+ return 0; // TODO(solb) This is a stub. |
Wez
2013/07/09 17:34:47
No need for this comment, nor the one below.
|
+} |
+ |
+bool AudioPlayerImpl::ResetAudioPlayer( |
+ AudioPacket::SamplingRate sampling_rate) { |
+ LOG(WARNING) << "AudioPlayerImpl::ResetAudioPlayer(...) [unimplemented]"; |
Wez
2013/07/09 17:34:47
nit: As above.
|
+ return false; // TODO(solb) This is a stub. |
+} |
+ |
+} // namespace remoting |