Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / webrtc / modules / audio_coding / main / acm2 / acm_pcma.h
1 /*
2  *  Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3  *
4  *  Use of this source code is governed by a BSD-style license
5  *  that can be found in the LICENSE file in the root of the source
6  *  tree. An additional intellectual property rights grant can be found
7  *  in the file PATENTS.  All contributing project authors may
8  *  be found in the AUTHORS file in the root of the source tree.
9  */
10
11 #ifndef WEBRTC_MODULES_AUDIO_CODING_MAIN_ACM2_ACM_PCMA_H_
12 #define WEBRTC_MODULES_AUDIO_CODING_MAIN_ACM2_ACM_PCMA_H_
13
14 #include "webrtc/modules/audio_coding/main/acm2/acm_generic_codec.h"
15
16 namespace webrtc {
17
18 namespace acm2 {
19
20 class ACMPCMA : public ACMGenericCodec {
21  public:
22   explicit ACMPCMA(int16_t codec_id);
23   ~ACMPCMA();
24
25   // For FEC.
26   ACMGenericCodec* CreateInstance(void);
27
28   int16_t InternalEncode(uint8_t* bitstream,
29                          int16_t* bitstream_len_byte) OVERRIDE
30       EXCLUSIVE_LOCKS_REQUIRED(codec_wrapper_lock_);
31
32   int16_t InternalInitEncoder(WebRtcACMCodecParams* codec_params);
33
34  protected:
35   void DestructEncoderSafe();
36
37   int16_t InternalCreateEncoder();
38 };
39
40 }  // namespace acm2
41
42 }  // namespace webrtc
43
44 #endif  // WEBRTC_MODULES_AUDIO_CODING_MAIN_ACM2_ACM_PCMA_H_