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 #include "remoting/codec/audio_decoder_verbatim.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 #include "remoting/proto/audio.pb.h" |
| 9 |
| 10 namespace remoting { |
| 11 |
| 12 AudioDecoderVerbatim::AudioDecoderVerbatim() { |
| 13 } |
| 14 |
| 15 AudioDecoderVerbatim::~AudioDecoderVerbatim() { |
| 16 } |
| 17 |
| 18 scoped_ptr<AudioPacket> AudioDecoderVerbatim::Decode( |
| 19 scoped_ptr<AudioPacket> packet) { |
| 20 DCHECK_EQ(AudioPacket::ENCODING_RAW, packet->encoding()); |
| 21 return packet.Pass(); |
| 22 } |
| 23 |
| 24 } // namespace remoting |
OLD | NEW |