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() {} | |
Sergey Ulanov
2012/08/02 20:32:48
please move } to the next line - it's preferred fo
kxing
2012/08/03 14:51:47
Done.
| |
13 | |
14 AudioDecoderVerbatim::~AudioDecoderVerbatim() {} | |
15 | |
16 scoped_ptr<AudioPacket> AudioDecoderVerbatim::Decode( | |
17 scoped_ptr<AudioPacket> packet) { | |
18 DCHECK_EQ(AudioPacket::ENCODING_RAW, packet->encoding()); | |
19 return packet.Pass(); | |
20 } | |
21 | |
22 } // namespace remoting | |
OLD | NEW |