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

Side by Side Diff: remoting/codec/audio_decoder_verbatim.cc

Issue 10843031: Piping for audio decoding. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Changed an #include to a forward declaration 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 #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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698