Skip to content
Snippets Groups Projects
Commit 88e5cdc5 authored by Timothy B. Terriberry's avatar Timothy B. Terriberry Committed by Jean-Marc Valin
Browse files

Fix fixed-point build bustage from 53cc1a03.

parent 1e03a6eb
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "main_FIX.h"
#include "tuning_parameters.h"
/* Low Bitrate Redundancy (LBRR) encoding. Reuse all parameters but encode with lower bitrate */
static inline void silk_LBRR_encode_FIX(
silk_encoder_state_FIX *psEnc, /* I/O Pointer to Silk FIX encoder state */
silk_encoder_control_FIX *psEncCtrl, /* I/O Pointer to Silk FIX encoder control struct */
const opus_int16 xfw[], /* I Input signal */
opus_int condCoding /* I The type of conditional coding used so far for this frame */
);
/****************/
/* Encode frame */
/****************/
......@@ -121,7 +129,7 @@ TOC(FIND_PRED_COEF)
/* Process gains */
/****************************************/
TIC(PROCESS_GAINS)
silk_process_gains_FIX( psEnc, &sEncCtrl );
silk_process_gains_FIX( psEnc, &sEncCtrl, condCoding );
TOC(PROCESS_GAINS)
/*****************************************/
......
......@@ -63,13 +63,6 @@ opus_int silk_encode_frame_FIX(
opus_int condCoding /* I The type of conditional coding to use */
);
/* Low Bitrate Redundancy (LBRR) encoding. Reuse all parameters but encode with lower bitrate */
void silk_LBRR_encode_FIX(
silk_encoder_state_FIX *psEnc, /* I/O Pointer to Silk FIX encoder state */
silk_encoder_control_FIX *psEncCtrl, /* I/O Pointer to Silk FIX encoder control struct */
const opus_int16 xfw[] /* I Input signal */
);
/* Initializes the Silk encoder state */
opus_int silk_init_encoder(
silk_encoder_state_FIX *psEnc /* I/O Pointer to Silk FIX encoder state */
......
......@@ -35,7 +35,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/* Processing of gains */
void silk_process_gains_FIX(
silk_encoder_state_FIX *psEnc, /* I/O Encoder state_FIX */
silk_encoder_control_FIX *psEncCtrl /* I/O Encoder control_FIX */
silk_encoder_control_FIX *psEncCtrl, /* I/O Encoder control_FIX */
opus_int condCoding /* The type of conditional coding to use */
)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment