summaryrefslogtreecommitdiff
path: root/silk/float/encode_frame_FLP.c
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2011-09-28 15:44:53 -0400
committerGregory Maxwell <greg@xiph.org>2011-09-28 16:28:18 -0400
commit59647fdb655bf6dc363c155b23bc817d195dc17d (patch)
tree38ba24728a3b3d35ad6fcb46203282c9a6d49a1d /silk/float/encode_frame_FLP.c
parentafc8d53b1b1d4a740551b3bbf8c2ac45061786ed (diff)
downloadopus-59647fdb655bf6dc363c155b23bc817d195dc17d.tar.gz
Misc. silk/ cleanups: static inline things which are only used in one file.
Diffstat (limited to 'silk/float/encode_frame_FLP.c')
-rw-r--r--silk/float/encode_frame_FLP.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/silk/float/encode_frame_FLP.c b/silk/float/encode_frame_FLP.c
index 053bcae9..4d156a03 100644
--- a/silk/float/encode_frame_FLP.c
+++ b/silk/float/encode_frame_FLP.c
@@ -32,6 +32,13 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "main_FLP.h"
#include "tuning_parameters.h"
+/* Low Bitrate Redundancy (LBRR) encoding. Reuse all parameters but encode with lower bitrate */
+static inline void silk_LBRR_encode_FLP(
+ silk_encoder_state_FLP *psEnc, /* I/O Encoder state FLP */
+ silk_encoder_control_FLP *psEncCtrl, /* I/O Encoder control FLP */
+ const silk_float xfw[] /* I Input signal */
+);
+
/****************/
/* Encode frame */
/****************/
@@ -212,7 +219,7 @@ TOC(ENCODE_FRAME)
}
/* Low-Bitrate Redundancy (LBRR) encoding. Reuse all parameters but encode excitation at lower bitrate */
-void silk_LBRR_encode_FLP(
+static inline void silk_LBRR_encode_FLP(
silk_encoder_state_FLP *psEnc, /* I/O Encoder state FLP */
silk_encoder_control_FLP *psEncCtrl, /* I/O Encoder control FLP */
const silk_float xfw[] /* I Input signal */