2011-07-07 08:21:25 +00:00
|
|
|
/*
|
2012-04-12 11:02:38 +00:00
|
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
2011-07-07 08:21:25 +00:00
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
2011-11-03 17:20:10 +00:00
|
|
|
#ifndef WEBRTC_MODULES_AUDIO_CODING_MAIN_SOURCE_ACM_G722_H_
|
|
|
|
|
#define WEBRTC_MODULES_AUDIO_CODING_MAIN_SOURCE_ACM_G722_H_
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2012-12-13 22:46:43 +00:00
|
|
|
#include "webrtc/modules/audio_coding/main/source/acm_generic_codec.h"
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2011-11-03 17:20:10 +00:00
|
|
|
typedef struct WebRtcG722EncInst G722EncInst;
|
|
|
|
|
typedef struct WebRtcG722DecInst G722DecInst;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2011-09-01 07:47:31 +00:00
|
|
|
namespace webrtc {
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-09-13 23:06:59 +00:00
|
|
|
namespace acm1 {
|
|
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
// forward declaration
|
|
|
|
|
struct ACMG722EncStr;
|
|
|
|
|
struct ACMG722DecStr;
|
|
|
|
|
|
2013-08-07 14:17:05 +00:00
|
|
|
class ACMG722 : public ACMGenericCodec {
|
2011-11-03 17:20:10 +00:00
|
|
|
public:
|
2013-04-09 00:28:06 +00:00
|
|
|
explicit ACMG722(int16_t codec_id);
|
2013-07-31 15:54:00 +00:00
|
|
|
virtual ~ACMG722();
|
2012-12-13 22:46:43 +00:00
|
|
|
|
2011-11-03 17:20:10 +00:00
|
|
|
// for FEC
|
2013-07-31 15:54:00 +00:00
|
|
|
virtual ACMGenericCodec* CreateInstance(void) OVERRIDE;
|
2011-11-03 17:20:10 +00:00
|
|
|
|
2013-07-31 15:54:00 +00:00
|
|
|
virtual int16_t InternalEncode(uint8_t* bitstream,
|
|
|
|
|
int16_t* bitstream_len_byte) OVERRIDE;
|
2011-11-03 17:20:10 +00:00
|
|
|
|
2013-07-31 15:54:00 +00:00
|
|
|
virtual int16_t InternalInitEncoder(
|
|
|
|
|
WebRtcACMCodecParams* codec_params) OVERRIDE;
|
2011-11-03 17:20:10 +00:00
|
|
|
|
2013-07-31 15:54:00 +00:00
|
|
|
virtual int16_t InternalInitDecoder(
|
|
|
|
|
WebRtcACMCodecParams* codec_params) OVERRIDE;
|
2011-11-03 17:20:10 +00:00
|
|
|
|
|
|
|
|
protected:
|
2013-07-31 15:54:00 +00:00
|
|
|
virtual int16_t DecodeSafe(uint8_t* bitstream,
|
2013-08-07 14:17:05 +00:00
|
|
|
int16_t bitstream_len_byte,
|
|
|
|
|
int16_t* audio,
|
|
|
|
|
int16_t* audio_samples,
|
|
|
|
|
int8_t* speech_type) OVERRIDE;
|
2011-11-03 17:20:10 +00:00
|
|
|
|
2013-07-31 15:54:00 +00:00
|
|
|
virtual int32_t CodecDef(WebRtcNetEQ_CodecDef& codec_def,
|
2013-08-07 14:17:05 +00:00
|
|
|
const CodecInst& codec_inst) OVERRIDE;
|
2011-11-03 17:20:10 +00:00
|
|
|
|
2013-07-31 15:54:00 +00:00
|
|
|
virtual int32_t Add10MsDataSafe(const uint32_t timestamp,
|
2013-08-07 14:17:05 +00:00
|
|
|
const int16_t* data,
|
|
|
|
|
const uint16_t length_smpl,
|
|
|
|
|
const uint8_t audio_channel) OVERRIDE;
|
2011-11-03 17:20:10 +00:00
|
|
|
|
2013-07-31 15:54:00 +00:00
|
|
|
virtual void DestructEncoderSafe() OVERRIDE;
|
2011-11-03 17:20:10 +00:00
|
|
|
|
2013-07-31 15:54:00 +00:00
|
|
|
virtual void DestructDecoderSafe() OVERRIDE;
|
2011-11-03 17:20:10 +00:00
|
|
|
|
2013-07-31 15:54:00 +00:00
|
|
|
virtual int16_t InternalCreateEncoder() OVERRIDE;
|
2011-11-03 17:20:10 +00:00
|
|
|
|
2013-07-31 15:54:00 +00:00
|
|
|
virtual int16_t InternalCreateDecoder() OVERRIDE;
|
2011-11-03 17:20:10 +00:00
|
|
|
|
2013-07-31 15:54:00 +00:00
|
|
|
virtual void InternalDestructEncoderInst(void* ptr_inst) OVERRIDE;
|
2011-11-03 17:20:10 +00:00
|
|
|
|
2013-07-31 15:54:00 +00:00
|
|
|
virtual void SplitStereoPacket(uint8_t* payload,
|
|
|
|
|
int32_t* payload_length) OVERRIDE;
|
2012-04-12 11:02:38 +00:00
|
|
|
|
2012-12-13 22:46:43 +00:00
|
|
|
ACMG722EncStr* ptr_enc_str_;
|
|
|
|
|
ACMG722DecStr* ptr_dec_str_;
|
2011-11-03 17:20:10 +00:00
|
|
|
|
2012-12-13 22:46:43 +00:00
|
|
|
G722EncInst* encoder_inst_ptr_;
|
2013-08-07 14:17:05 +00:00
|
|
|
G722EncInst* encoder_inst_ptr_right_; // Prepared for stereo
|
2012-12-13 22:46:43 +00:00
|
|
|
G722DecInst* decoder_inst_ptr_;
|
2011-07-07 08:21:25 +00:00
|
|
|
};
|
|
|
|
|
|
2013-09-13 23:06:59 +00:00
|
|
|
} // namespace acm1
|
|
|
|
|
|
2012-12-13 22:46:43 +00:00
|
|
|
} // namespace webrtc
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2011-11-03 17:20:10 +00:00
|
|
|
#endif // WEBRTC_MODULES_AUDIO_CODING_MAIN_SOURCE_ACM_G722_H_
|