summaryrefslogtreecommitdiff
path: root/silk/float/k2a_FLP.c
diff options
context:
space:
mode:
authorKoen Vos <koen.vos@skype.net>2011-10-28 19:44:26 -0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2011-10-28 19:44:26 -0400
commitacc7a6c78b266e3ef0e1f91ee405af92a0989dec (patch)
treed3e32cc66cf96fecdaffc924ff0d051028b72f31 /silk/float/k2a_FLP.c
parent2d4f61409186c7efa831387bf14e2164607a805a (diff)
downloadopus-acc7a6c78b266e3ef0e1f91ee405af92a0989dec.tar.gz
Reformatting changes with an update to the MSVC project files
Diffstat (limited to 'silk/float/k2a_FLP.c')
-rw-r--r--silk/float/k2a_FLP.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/silk/float/k2a_FLP.c b/silk/float/k2a_FLP.c
index 8884b8dc..8702bc79 100644
--- a/silk/float/k2a_FLP.c
+++ b/silk/float/k2a_FLP.c
@@ -33,16 +33,16 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/* step up function, converts reflection coefficients to prediction coefficients */
void silk_k2a_FLP(
- silk_float *A, /* O: prediction coefficients [order] */
- const silk_float *rc, /* I: reflection coefficients [order] */
- opus_int32 order /* I: prediction order */
+ silk_float *A, /* O prediction coefficients [order] */
+ const silk_float *rc, /* I reflection coefficients [order] */
+ opus_int32 order /* I prediction order */
)
{
opus_int k, n;
silk_float Atmp[ SILK_MAX_ORDER_LPC ];
- for( k = 0; k < order; k++ ){
- for( n = 0; n < k; n++ ){
+ for( k = 0; k < order; k++ ) {
+ for( n = 0; n < k; n++ ) {
Atmp[ n ] = A[ n ];
}
for( n = 0; n < k; n++ ) {