mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 06:10:40 +01:00

Running clang-format with chromium's style guide. The goal is n-fold: * providing consistency and readability (that's what code guidelines are for) * preventing noise with presubmit checks and git cl format * building on the previous point: making it easier to automatically fix format issues * you name it Please consider using git-hyper-blame to ignore this commit. Bug: webrtc:9340 Change-Id: I694567c4cdf8cee2860958cfe82bfaf25848bb87 Reviewed-on: https://webrtc-review.googlesource.com/81185 Reviewed-by: Patrik Höglund <phoglund@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23660}
67 lines
2.8 KiB
C
67 lines
2.8 KiB
C
/*
|
|
* Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
/*
|
|
* arith_routines.h
|
|
*
|
|
* Functions for arithmetic coding.
|
|
*
|
|
*/
|
|
|
|
#ifndef MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_SOURCE_ARITH_ROUTINES_H_
|
|
#define MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_SOURCE_ARITH_ROUTINES_H_
|
|
|
|
#include "modules/audio_coding/codecs/isac/main/source/structs.h"
|
|
|
|
int WebRtcIsac_EncLogisticMulti2(
|
|
Bitstr* streamdata, /* in-/output struct containing bitstream */
|
|
int16_t* dataQ7, /* input: data vector */
|
|
const uint16_t*
|
|
env, /* input: side info vector defining the width of the pdf */
|
|
const int N, /* input: data vector length */
|
|
const int16_t isSWB12kHz); /* if the codec is working in 12kHz bandwidth */
|
|
|
|
/* returns the number of bytes in the stream */
|
|
int WebRtcIsac_EncTerminate(
|
|
Bitstr* streamdata); /* in-/output struct containing bitstream */
|
|
|
|
/* returns the number of bytes in the stream so far */
|
|
int WebRtcIsac_DecLogisticMulti2(
|
|
int16_t* data, /* output: data vector */
|
|
Bitstr* streamdata, /* in-/output struct containing bitstream */
|
|
const uint16_t*
|
|
env, /* input: side info vector defining the width of the pdf */
|
|
const int16_t* dither, /* input: dither vector */
|
|
const int N, /* input: data vector length */
|
|
const int16_t isSWB12kHz); /* if the codec is working in 12kHz bandwidth */
|
|
|
|
void WebRtcIsac_EncHistMulti(
|
|
Bitstr* streamdata, /* in-/output struct containing bitstream */
|
|
const int* data, /* input: data vector */
|
|
const uint16_t* const* cdf, /* input: array of cdf arrays */
|
|
const int N); /* input: data vector length */
|
|
|
|
int WebRtcIsac_DecHistBisectMulti(
|
|
int* data, /* output: data vector */
|
|
Bitstr* streamdata, /* in-/output struct containing bitstream */
|
|
const uint16_t* const* cdf, /* input: array of cdf arrays */
|
|
const uint16_t*
|
|
cdf_size, /* input: array of cdf table sizes+1 (power of two: 2^k) */
|
|
const int N); /* input: data vector length */
|
|
|
|
int WebRtcIsac_DecHistOneStepMulti(
|
|
int* data, /* output: data vector */
|
|
Bitstr* streamdata, /* in-/output struct containing bitstream */
|
|
const uint16_t* const* cdf, /* input: array of cdf arrays */
|
|
const uint16_t*
|
|
init_index, /* input: vector of initial cdf table search entries */
|
|
const int N); /* input: data vector length */
|
|
|
|
#endif /* MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_SOURCE_ARITH_ROUTINES_H_ */
|