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

Unified Diff: talk/media/base/voiceprocessor.h

Issue 1361633002: Remove the [Un]RegisterVoiceProcessor() API. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years, 3 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 | « talk/media/base/videocapturer_unittest.cc ('k') | talk/media/webrtc/fakewebrtcvoiceengine.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/media/base/voiceprocessor.h
diff --git a/talk/media/base/voiceprocessor.h b/talk/media/base/voiceprocessor.h
index 33c252e1707b1d5086ef36ecdabdf64dfa6c98f0..8de2678c957d1e5becab67ddc5548f56dee68b5d 100755
--- a/talk/media/base/voiceprocessor.h
+++ b/talk/media/base/voiceprocessor.h
@@ -25,33 +25,5 @@
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef TALK_MEDIA_BASE_VOICEPROCESSOR_H_
-#define TALK_MEDIA_BASE_VOICEPROCESSOR_H_
-
-#include "webrtc/base/basictypes.h"
-#include "webrtc/base/sigslot.h"
-
-namespace cricket {
-
-class AudioFrame;
-
-enum MediaProcessorDirection {
- MPD_INVALID = 0,
- MPD_RX = 1 << 0,
- MPD_TX = 1 << 1,
- MPD_RX_AND_TX = MPD_RX | MPD_TX,
-};
-
-class VoiceProcessor : public sigslot::has_slots<> {
- public:
- virtual ~VoiceProcessor() {}
- // Contents of frame may be manipulated by the processor.
- // The processed data is expected to be the same size as the
- // original data.
- virtual void OnFrame(uint32 ssrc,
- MediaProcessorDirection direction,
- AudioFrame* frame) = 0;
-};
-
-} // namespace cricket
-#endif // TALK_MEDIA_BASE_VOICEPROCESSOR_H_
+// TODO(solenberg): Remove this file once Chromium's libjingle.gyp/.gn are
+// updated.
« no previous file with comments | « talk/media/base/videocapturer_unittest.cc ('k') | talk/media/webrtc/fakewebrtcvoiceengine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698