Code formatting on files touched in r4447.

BUG=
R=tina.legrand@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/1979004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@4500 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
pbos@webrtc.org 2013-08-07 14:17:05 +00:00
parent 401ef361ac
commit a165d9c0a4
11 changed files with 78 additions and 76 deletions

View File

@ -21,7 +21,7 @@ namespace webrtc {
enum ACMAMRPackingFormat;
class ACMAMR: public ACMGenericCodec {
class ACMAMR : public ACMGenericCodec {
public:
explicit ACMAMR(int16_t codec_id);
virtual ~ACMAMR();
@ -30,7 +30,7 @@ class ACMAMR: public ACMGenericCodec {
virtual ACMGenericCodec* CreateInstance(void) OVERRIDE;
virtual int16_t InternalEncode(uint8_t* bitstream,
int16_t* bitstream_len_byte) OVERRIDE;
int16_t* bitstream_len_byte) OVERRIDE;
virtual int16_t InternalInitEncoder(
WebRtcACMCodecParams* codec_params) OVERRIDE;
@ -38,24 +38,23 @@ class ACMAMR: public ACMGenericCodec {
virtual int16_t InternalInitDecoder(
WebRtcACMCodecParams* codec_params) OVERRIDE;
int16_t SetAMREncoderPackingFormat(
const ACMAMRPackingFormat packing_format);
int16_t SetAMREncoderPackingFormat(const ACMAMRPackingFormat packing_format);
ACMAMRPackingFormat AMREncoderPackingFormat() const;
int16_t SetAMRDecoderPackingFormat(
const ACMAMRPackingFormat packing_format);
int16_t SetAMRDecoderPackingFormat(const ACMAMRPackingFormat packing_format);
ACMAMRPackingFormat AMRDecoderPackingFormat() const;
protected:
virtual int16_t DecodeSafe(uint8_t* bitstream,
int16_t bitstream_len_byte,
int16_t* audio, int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
int16_t bitstream_len_byte,
int16_t* audio,
int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
virtual int32_t CodecDef(WebRtcNetEQ_CodecDef& codec_def,
const CodecInst& codec_inst) OVERRIDE;
const CodecInst& codec_inst) OVERRIDE;
virtual void DestructEncoderSafe() OVERRIDE;

View File

@ -19,7 +19,7 @@ struct AMRWB_decinst_t_;
namespace webrtc {
class ACMAMRwb: public ACMGenericCodec {
class ACMAMRwb : public ACMGenericCodec {
public:
explicit ACMAMRwb(int16_t codec_id);
virtual ~ACMAMRwb();
@ -28,7 +28,7 @@ class ACMAMRwb: public ACMGenericCodec {
virtual ACMGenericCodec* CreateInstance(void) OVERRIDE;
virtual int16_t InternalEncode(uint8_t* bitstream,
int16_t* bitstream_len_byte) OVERRIDE;
int16_t* bitstream_len_byte) OVERRIDE;
virtual int16_t InternalInitEncoder(
WebRtcACMCodecParams* codec_params) OVERRIDE;
@ -48,12 +48,13 @@ class ACMAMRwb: public ACMGenericCodec {
protected:
virtual int16_t DecodeSafe(uint8_t* bitstream,
int16_t bitstream_len_byte,
int16_t* audio, int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
int16_t bitstream_len_byte,
int16_t* audio,
int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
virtual int32_t CodecDef(WebRtcNetEQ_CodecDef& codec_def,
const CodecInst& codec_inst) OVERRIDE;
const CodecInst& codec_inst) OVERRIDE;
virtual void DestructEncoderSafe() OVERRIDE;

View File

@ -36,15 +36,14 @@ class ACMCELT : public ACMGenericCodec {
WebRtcACMCodecParams* codec_params) OVERRIDE;
protected:
virtual int16_t DecodeSafe(
uint8_t* /* bitstream */,
int16_t /* bitstream_len_byte */,
int16_t* /* audio */,
int16_t* /* audio_samples */,
int8_t* /* speech_type */) OVERRIDE;
virtual int16_t DecodeSafe(uint8_t* /* bitstream */,
int16_t /* bitstream_len_byte */,
int16_t* /* audio */,
int16_t* /* audio_samples */,
int8_t* /* speech_type */) OVERRIDE;
virtual int32_t CodecDef(WebRtcNetEQ_CodecDef& codec_def,
const CodecInst& codec_inst) OVERRIDE;
const CodecInst& codec_inst) OVERRIDE;
virtual void DestructEncoderSafe() OVERRIDE;

View File

@ -28,7 +28,7 @@ class ACMCNG: public ACMGenericCodec {
virtual ACMGenericCodec* CreateInstance(void) OVERRIDE;
virtual int16_t InternalEncode(uint8_t* bitstream,
int16_t* bitstream_len_byte) OVERRIDE;
int16_t* bitstream_len_byte) OVERRIDE;
virtual int16_t InternalInitEncoder(
WebRtcACMCodecParams* codec_params) OVERRIDE;
@ -38,12 +38,13 @@ class ACMCNG: public ACMGenericCodec {
protected:
virtual int16_t DecodeSafe(uint8_t* bitstream,
int16_t bitstream_len_byte,
int16_t* audio, int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
int16_t bitstream_len_byte,
int16_t* audio,
int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
virtual int32_t CodecDef(WebRtcNetEQ_CodecDef& codec_def,
const CodecInst& codec_inst) OVERRIDE;
const CodecInst& codec_inst) OVERRIDE;
virtual void DestructEncoderSafe() OVERRIDE;

View File

@ -34,12 +34,13 @@ class ACMDTMFPlayout: public ACMGenericCodec {
protected:
virtual int16_t DecodeSafe(uint8_t* bitstream,
int16_t bitstream_len_byte,
int16_t* audio, int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
int16_t bitstream_len_byte,
int16_t* audio,
int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
virtual int32_t CodecDef(WebRtcNetEQ_CodecDef& codec_def,
const CodecInst& codec_inst) OVERRIDE;
const CodecInst& codec_inst) OVERRIDE;
virtual void DestructEncoderSafe() OVERRIDE;

View File

@ -22,7 +22,7 @@ namespace webrtc {
struct ACMG722EncStr;
struct ACMG722DecStr;
class ACMG722: public ACMGenericCodec {
class ACMG722 : public ACMGenericCodec {
public:
explicit ACMG722(int16_t codec_id);
virtual ~ACMG722();
@ -41,17 +41,18 @@ class ACMG722: public ACMGenericCodec {
protected:
virtual int16_t DecodeSafe(uint8_t* bitstream,
int16_t bitstream_len_byte,
int16_t* audio, int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
int16_t bitstream_len_byte,
int16_t* audio,
int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
virtual int32_t CodecDef(WebRtcNetEQ_CodecDef& codec_def,
const CodecInst& codec_inst) OVERRIDE;
const CodecInst& codec_inst) OVERRIDE;
virtual int32_t Add10MsDataSafe(const uint32_t timestamp,
const int16_t* data,
const uint16_t length_smpl,
const uint8_t audio_channel) OVERRIDE;
const int16_t* data,
const uint16_t length_smpl,
const uint8_t audio_channel) OVERRIDE;
virtual void DestructEncoderSafe() OVERRIDE;
@ -70,7 +71,7 @@ class ACMG722: public ACMGenericCodec {
ACMG722DecStr* ptr_dec_str_;
G722EncInst* encoder_inst_ptr_;
G722EncInst* encoder_inst_ptr_right_; // Prepared for stereo
G722EncInst* encoder_inst_ptr_right_; // Prepared for stereo
G722DecInst* decoder_inst_ptr_;
};

View File

@ -28,7 +28,7 @@ class ACMILBC : public ACMGenericCodec {
virtual ACMGenericCodec* CreateInstance(void) OVERRIDE;
virtual int16_t InternalEncode(uint8_t* bitstream,
int16_t* bitstream_len_byte) OVERRIDE;
int16_t* bitstream_len_byte) OVERRIDE;
virtual int16_t InternalInitEncoder(
WebRtcACMCodecParams* codec_params) OVERRIDE;
@ -38,13 +38,13 @@ class ACMILBC : public ACMGenericCodec {
protected:
virtual int16_t DecodeSafe(uint8_t* bitstream,
int16_t bitstream_len_byte,
int16_t* audio,
int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
int16_t bitstream_len_byte,
int16_t* audio,
int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
virtual int32_t CodecDef(WebRtcNetEQ_CodecDef& codec_def,
const CodecInst& codec_inst) OVERRIDE;
const CodecInst& codec_inst) OVERRIDE;
virtual int16_t SetBitRateSafe(const int32_t rate) OVERRIDE;

View File

@ -31,7 +31,7 @@ class ACMISAC : public ACMGenericCodec {
virtual ACMGenericCodec* CreateInstance(void) OVERRIDE;
virtual int16_t InternalEncode(uint8_t* bitstream,
int16_t* bitstream_len_byte) OVERRIDE;
int16_t* bitstream_len_byte) OVERRIDE;
virtual int16_t InternalInitEncoder(
WebRtcACMCodecParams* codec_params) OVERRIDE;
@ -70,19 +70,19 @@ class ACMISAC : public ACMGenericCodec {
virtual int32_t SetISACMaxRate(const uint32_t max_rate_bit_per_sec) OVERRIDE;
virtual int16_t REDPayloadISAC(const int32_t isac_rate,
const int16_t isac_bw_estimate,
uint8_t* payload,
int16_t* payload_len_bytes) OVERRIDE;
const int16_t isac_bw_estimate,
uint8_t* payload,
int16_t* payload_len_bytes) OVERRIDE;
protected:
virtual int16_t DecodeSafe(uint8_t* bitstream,
int16_t bitstream_len_byte,
int16_t* audio,
int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
int16_t bitstream_len_byte,
int16_t* audio,
int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
virtual int32_t CodecDef(WebRtcNetEQ_CodecDef& codec_def,
const CodecInst& codec_inst) OVERRIDE;
const CodecInst& codec_inst) OVERRIDE;
virtual void DestructEncoderSafe() OVERRIDE;
@ -96,7 +96,7 @@ class ACMISAC : public ACMGenericCodec {
int32_t estimated_bandwidth) OVERRIDE;
virtual int32_t GetRedPayloadSafe(uint8_t* red_payload,
int16_t* payload_bytes) OVERRIDE;
int16_t* payload_bytes) OVERRIDE;
virtual int16_t InternalCreateEncoder() OVERRIDE;
@ -114,8 +114,8 @@ class ACMISAC : public ACMGenericCodec {
void UpdateFrameLen();
virtual bool DecoderParamsSafe(WebRtcACMCodecParams *dec_params,
const uint8_t payload_type) OVERRIDE;
virtual bool DecoderParamsSafe(WebRtcACMCodecParams* dec_params,
const uint8_t payload_type) OVERRIDE;
virtual void SaveDecoderParamSafe(
const WebRtcACMCodecParams* codec_params) OVERRIDE;

View File

@ -37,13 +37,13 @@ class ACMOpus : public ACMGenericCodec {
protected:
virtual int16_t DecodeSafe(uint8_t* bitstream,
int16_t bitstream_len_byte,
int16_t* audio,
int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
int16_t bitstream_len_byte,
int16_t* audio,
int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
virtual int32_t CodecDef(WebRtcNetEQ_CodecDef& codec_def,
const CodecInst& codec_inst) OVERRIDE;
const CodecInst& codec_inst) OVERRIDE;
virtual void DestructEncoderSafe() OVERRIDE;

View File

@ -24,7 +24,7 @@ class ACMPCM16B : public ACMGenericCodec {
virtual ACMGenericCodec* CreateInstance(void) OVERRIDE;
virtual int16_t InternalEncode(uint8_t* bitstream,
int16_t* bitstream_len_byte) OVERRIDE;
int16_t* bitstream_len_byte) OVERRIDE;
virtual int16_t InternalInitEncoder(
WebRtcACMCodecParams* codec_params) OVERRIDE;
@ -34,13 +34,13 @@ class ACMPCM16B : public ACMGenericCodec {
protected:
virtual int16_t DecodeSafe(uint8_t* bitstream,
int16_t bitstream_len_byte,
int16_t* audio,
int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
int16_t bitstream_len_byte,
int16_t* audio,
int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
virtual int32_t CodecDef(WebRtcNetEQ_CodecDef& codec_def,
const CodecInst& codec_inst) OVERRIDE;
const CodecInst& codec_inst) OVERRIDE;
virtual void DestructEncoderSafe() OVERRIDE;

View File

@ -24,7 +24,7 @@ class ACMRED : public ACMGenericCodec {
virtual ACMGenericCodec* CreateInstance(void) OVERRIDE;
virtual int16_t InternalEncode(uint8_t* bitstream,
int16_t* bitstream_len_byte) OVERRIDE;
int16_t* bitstream_len_byte) OVERRIDE;
virtual int16_t InternalInitEncoder(
WebRtcACMCodecParams* codec_params) OVERRIDE;
@ -34,13 +34,13 @@ class ACMRED : public ACMGenericCodec {
protected:
virtual int16_t DecodeSafe(uint8_t* bitstream,
int16_t bitstream_len_byte,
int16_t* audio,
int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
int16_t bitstream_len_byte,
int16_t* audio,
int16_t* audio_samples,
int8_t* speech_type) OVERRIDE;
virtual int32_t CodecDef(WebRtcNetEQ_CodecDef& codec_def,
const CodecInst& codec_inst) OVERRIDE;
const CodecInst& codec_inst) OVERRIDE;
virtual void DestructEncoderSafe() OVERRIDE;