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

Side by Side Diff: remoting/base/audio_encoder_verbatim.h

Issue 10836017: Piping for audio encoding. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed some style issues 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef REMOTING_BASE_AUDIO_ENCODER_VERBATIM_H_
6 #define REMOTING_BASE_AUDIO_ENCODER_VERBATIM_H_
7
8 #include "remoting/base/audio_encoder.h"
9
10 namespace remoting {
11
12 class AudioEncoderVerbatim : public AudioEncoder {
13 public:
14 static scoped_ptr<AudioEncoder> CreateVerbatimAudioEncoder();
15
16 virtual ~AudioEncoderVerbatim();
17
18 // AudioEncoder implementation.
19 virtual void Encode(
20 scoped_ptr<AudioCaptureData> audio_capture_data,
21 const PacketEncodedCallback& packet_captured_callback) OVERRIDE;
22
23 private:
24 AudioEncoderVerbatim();
25 DISALLOW_COPY_AND_ASSIGN(AudioEncoderVerbatim);
26 };
27
28 } // namespace remoting
29
30 #endif // REMOTING_BASE_AUDIO_ENCODER_VERBATIM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698