mirror of
https://github.com/xiph/opus.git
synced 2025-05-15 07:58:29 +00:00
Avoiding symbol clashes with Opus
This commit is contained in:
parent
805fed733a
commit
2f5b51c94a
3 changed files with 6 additions and 6 deletions
|
@ -100,11 +100,11 @@ void run_frame_network(LPCNetState *lpcnet, float *gru_a_condition, float *gru_b
|
|||
compute_conv1d(&feature_conv2, conv2_out, net->feature_conv2_state, conv1_out);
|
||||
celt_assert(FRAME_INPUT_SIZE == FEATURE_CONV2_OUT_SIZE);
|
||||
if (lpcnet->frame_count < FEATURES_DELAY) RNN_CLEAR(conv2_out, FEATURE_CONV2_OUT_SIZE);
|
||||
compute_dense(&feature_dense1, dense1_out, conv2_out);
|
||||
compute_dense(&feature_dense2, condition, dense1_out);
|
||||
_lpcnet_compute_dense(&feature_dense1, dense1_out, conv2_out);
|
||||
_lpcnet_compute_dense(&feature_dense2, condition, dense1_out);
|
||||
RNN_COPY(rc, condition, LPC_ORDER);
|
||||
compute_dense(&gru_a_dense_feature, gru_a_condition, condition);
|
||||
compute_dense(&gru_b_dense_feature, gru_b_condition, condition);
|
||||
_lpcnet_compute_dense(&gru_a_dense_feature, gru_a_condition, condition);
|
||||
_lpcnet_compute_dense(&gru_b_dense_feature, gru_b_condition, condition);
|
||||
#ifdef END2END
|
||||
rc2lpc(lpc, rc);
|
||||
#elif FEATURES_DELAY>0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue