Skip to content

Commit

Permalink
delete ununsed member.
Browse files Browse the repository at this point in the history
  • Loading branch information
aikiriao committed Jun 22, 2024
1 parent b16cf53 commit b1c33a8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions libs/srla_encoder/src/srla_encoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ struct SRLAEncoder {
struct LPCCalculator *lpcc; /* LPC計算ハンドル */
struct SRLAPreemphasisFilter **pre_emphasis; /* プリエンファシスフィルタ */
struct SRLAOptimalBlockPartitionCalculator *obpc; /* 最適ブロック分割計算ハンドル */
int32_t **pre_emphasis_prev; /* プリエンファシスフィルタの直前のサンプル */
double **params_double; /* 各チャンネルのLPC係数(double) */
int32_t **params_int; /* 各チャンネルのLPC係数(int) */
uint32_t *rshifts; /* 各チャンネルのLPC係数右シフト量 */
Expand Down Expand Up @@ -600,9 +599,6 @@ struct SRLAEncoder* SRLAEncoder_Create(const struct SRLAEncoderConfig *config, v
/* プリエンファシスフィルタの作成 */
SRLA_ALLOCATE_2DIMARRAY(encoder->pre_emphasis,
work_ptr, struct SRLAPreemphasisFilter, config->max_num_channels, SRLA_NUM_PREEMPHASIS_FILTERS);
/* プリエンファシスフィルタのバッファ領域 */
SRLA_ALLOCATE_2DIMARRAY(encoder->pre_emphasis_prev,
work_ptr, int32_t, config->max_num_channels, SRLA_NUM_PREEMPHASIS_FILTERS);

/* バッファ領域の確保 全てのポインタをアラインメント */
/* LPC係数(int) */
Expand Down

0 comments on commit b1c33a8

Please sign in to comment.