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

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

Issue 10843031: Piping for audio decoding. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Small refactoring 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 #ifndef REMOTING_CODEC_AUDIO_DECODER_VERBATIM_H_
6 #define REMOTING_CODEC_AUDIO_DECODER_VERBATIM_H_
7
8 #include "remoting/codec/audio_decoder.h"
9
10 #include "base/memory/scoped_ptr.h"
11
12 namespace remoting {
13
14 class AudioPacket;
15
16 class AudioDecoderVerbatim : public AudioDecoder {
Sergey Ulanov 2012/08/02 20:32:48 nit add comments to explain that this class implem
kxing 2012/08/03 14:51:47 Done.
17 public:
18 AudioDecoderVerbatim();
19 virtual ~AudioDecoderVerbatim();
20
21 virtual scoped_ptr<AudioPacket> Decode(
22 scoped_ptr<AudioPacket> packet) OVERRIDE;
23
24 private:
25 DISALLOW_COPY_AND_ASSIGN(AudioDecoderVerbatim);
26 };
27
28 } // namespace remoting
29
30 #endif // REMOTING_CODEC_AUDIO_DECODER_VERBATIM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698