OLD | NEW |
(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/codec/audio_encoder.h" |
| 9 |
| 10 namespace remoting { |
| 11 |
| 12 class AudioPacket; |
| 13 |
| 14 class AudioEncoderVerbatim : public AudioEncoder { |
| 15 public: |
| 16 static scoped_ptr<AudioEncoder> CreateVerbatimAudioEncoder(); |
| 17 |
| 18 virtual ~AudioEncoderVerbatim(); |
| 19 |
| 20 // AudioEncoder implementation. |
| 21 virtual scoped_ptr<AudioPacket> Encode( |
| 22 scoped_ptr<AudioPacket> audio_packet) OVERRIDE; |
| 23 |
| 24 private: |
| 25 AudioEncoderVerbatim(); |
| 26 |
| 27 DISALLOW_COPY_AND_ASSIGN(AudioEncoderVerbatim); |
| 28 }; |
| 29 |
| 30 } // namespace remoting |
| 31 |
| 32 #endif // REMOTING_BASE_AUDIO_ENCODER_VERBATIM_H_ |
OLD | NEW |