| Index: remoting/base/audio_encoder_verbatim.h
|
| diff --git a/remoting/base/audio_encoder_verbatim.h b/remoting/base/audio_encoder_verbatim.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..66eef99567a044defd244080db58325aa9bcec9a
|
| --- /dev/null
|
| +++ b/remoting/base/audio_encoder_verbatim.h
|
| @@ -0,0 +1,30 @@
|
| +// 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.
|
| +
|
| +#ifndef REMOTING_BASE_AUDIO_ENCODER_VERBATIM_H_
|
| +#define REMOTING_BASE_AUDIO_ENCODER_VERBATIM_H_
|
| +
|
| +#include "remoting/base/audio_encoder.h"
|
| +
|
| +namespace remoting {
|
| +
|
| +class AudioEncoderVerbatim : public AudioEncoder {
|
| + public:
|
| + static scoped_ptr<AudioEncoder> CreateVerbatimAudioEncoder();
|
| +
|
| + virtual ~AudioEncoderVerbatim();
|
| +
|
| + // AudioEncoder implementation.
|
| + virtual void Encode(
|
| + scoped_ptr<AudioCaptureData> audio_capture_data,
|
| + const PacketEncodedCallback& packet_captured_callback) OVERRIDE;
|
| +
|
| + private:
|
| + AudioEncoderVerbatim();
|
| + DISALLOW_COPY_AND_ASSIGN(AudioEncoderVerbatim);
|
| +};
|
| +
|
| +} // namespace remoting
|
| +
|
| +#endif // REMOTING_BASE_AUDIO_ENCODER_VERBATIM_H_
|
|
|