Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / remoting / codec / audio_decoder_verbatim.h
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 // The decoder for raw audio streams.
17 class AudioDecoderVerbatim : public AudioDecoder {
18  public:
19   AudioDecoderVerbatim();
20   ~AudioDecoderVerbatim() override;
21
22   scoped_ptr<AudioPacket> Decode(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_