# HG changeset patch # User Mychaela Falconia # Date 1713477724 0 # Node ID e230a4a87bd8bea45fff63241dcbcb9060ecbee0 # Parent 4614f1a97e1a5ce3261c87f02a82726e01ddba3e libtwamr: integrate convolve.c diff -r 4614f1a97e1a -r e230a4a87bd8 libtwamr/Makefile --- a/libtwamr/Makefile Thu Apr 18 20:35:02 2024 +0000 +++ b/libtwamr/Makefile Thu Apr 18 22:02:04 2024 +0000 @@ -2,9 +2,9 @@ CFLAGS= -O2 OBJS= a_refl.o agc.o autocorr.o az_lsp.o b_cn_cod.o basicop2.o bgnscd.o \ bitno.o bits2prm.o c1035pf.o c2_11pf.o c2_9pf.o c3_14pf.o c4_17pf.o \ - c8_31pf.o c_g_aver.o calc_cor.o calc_en.o cbsearch.o cor_h.o gmed_n.o \ - graytab.o inv_sqrt.o log2.o oper_32b.o prmno.o s10_8pf.o set_sign.o \ - sqrt_l.o tls_flags.o window.o + c8_31pf.o c_g_aver.o calc_cor.o calc_en.o cbsearch.o convolve.o cor_h.o\ + gmed_n.o graytab.o inv_sqrt.o log2.o oper_32b.o prmno.o s10_8pf.o \ + set_sign.o sqrt_l.o tls_flags.o window.o LIB= libtwamr.a INSTALL_PREFIX= /usr/local diff -r 4614f1a97e1a -r e230a4a87bd8 libtwamr/convolve.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libtwamr/convolve.c Thu Apr 18 22:02:04 2024 +0000 @@ -0,0 +1,83 @@ +/* +******************************************************************************** +* +* GSM AMR-NB speech codec R98 Version 7.6.0 December 12, 2001 +* R99 Version 3.3.0 +* REL-4 Version 4.1.0 +* +******************************************************************************** +* +* File : convolve.c +* Purpose : Perform the convolution between two vectors x[] +* : and h[] and write the result in the vector y[]. +* : All vectors are of length L and only the first +* : L samples of the convolution are computed. +* +******************************************************************************** +*/ +/* +******************************************************************************** +* MODULE INCLUDE FILE AND VERSION ID +******************************************************************************** +*/ +#include "namespace.h" +#include "convolve.h" + +/* +******************************************************************************** +* INCLUDE FILES +******************************************************************************** +*/ +#include "typedef.h" +#include "basic_op.h" +#include "no_count.h" + +/* +******************************************************************************** +* LOCAL VARIABLES AND TABLES +******************************************************************************** +*/ + +/* +******************************************************************************** +* PUBLIC PROGRAM CODE +******************************************************************************** +*/ +/************************************************************************* + * + * FUNCTION: Convolve + * + * PURPOSE: + * Perform the convolution between two vectors x[] and h[] and + * write the result in the vector y[]. All vectors are of length L + * and only the first L samples of the convolution are computed. + * + * DESCRIPTION: + * The convolution is given by + * + * y[n] = sum_{i=0}^{n} x[i] h[n-i], n=0,...,L-1 + * + *************************************************************************/ +void Convolve ( + Word16 x[], /* (i) : input vector */ + Word16 h[], /* (i) : impulse response */ + Word16 y[], /* (o) : output vector */ + Word16 L /* (i) : vector size */ +) +{ + Word16 i, n; + Word32 s; + + for (n = 0; n < L; n++) + { + s = 0; move32 (); + for (i = 0; i <= n; i++) + { + s = L_mac (s, x[i], h[n - i]); + } + s = L_shl (s, 3); + y[n] = extract_h (s); move16 (); + } + + return; +} diff -r 4614f1a97e1a -r e230a4a87bd8 libtwamr/convolve.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libtwamr/convolve.h Thu Apr 18 22:02:04 2024 +0000 @@ -0,0 +1,46 @@ +/* +******************************************************************************** +* +* GSM AMR-NB speech codec R98 Version 7.6.0 December 12, 2001 +* R99 Version 3.3.0 +* REL-4 Version 4.1.0 +* +******************************************************************************** +* +* File : convolve.h +* Purpose : Perform the convolution between two vectors x[] +* : and h[] and write the result in the vector y[]. +* : All vectors are of length L and only the first +* : L samples of the convolution are computed. +* +******************************************************************************** +*/ +#ifndef convolve_h +#define convolve_h "$Id $" + +/* +******************************************************************************** +* INCLUDE FILES +******************************************************************************** +*/ +#include "typedef.h" + +/* +******************************************************************************** +* DEFINITION OF DATA TYPES +******************************************************************************** +*/ + +/* +******************************************************************************** +* DECLARATION OF PROTOTYPES +******************************************************************************** +*/ +void Convolve ( + Word16 x[], /* (i) : input vector */ + Word16 h[], /* (i) : impulse response */ + Word16 y[], /* (o) : output vector */ + Word16 L /* (i) : vector size */ +); + +#endif diff -r 4614f1a97e1a -r e230a4a87bd8 libtwamr/namespace.h --- a/libtwamr/namespace.h Thu Apr 18 20:35:02 2024 +0000 +++ b/libtwamr/namespace.h Thu Apr 18 22:02:04 2024 +0000 @@ -64,6 +64,7 @@ #define Az_lsp AMR__Az_lsp #define Bgn_scd AMR__Bgn_scd #define Bgn_scd_reset AMR__Bgn_scd_reset +#define Convolve AMR__Convolve #define agc AMR__agc #define agc2 AMR__agc2