[Flake-enc-svnlog] SF.net SVN: flake-enc:[231] libflake/optimize.c
Status: Beta
Brought to you by:
jbr79
From: <jb...@us...> - 2008-08-09 14:29:32
|
Revision: 231 http://flake-enc.svn.sourceforge.net/flake-enc/?rev=231&view=rev Author: jbr79 Date: 2008-08-09 14:29:42 +0000 (Sat, 09 Aug 2008) Log Message: ----------- cosmetics: use pointer syntax instead of array syntax Modified Paths: -------------- libflake/optimize.c Modified: libflake/optimize.c =================================================================== --- libflake/optimize.c 2008-08-09 13:37:57 UTC (rev 230) +++ libflake/optimize.c 2008-08-09 14:29:42 UTC (rev 231) @@ -26,13 +26,13 @@ #include "rice.h" static void -encode_residual_verbatim(int32_t res[], int32_t smp[], int n) +encode_residual_verbatim(int32_t *res, int32_t *smp, int n) { memcpy(res, smp, n*sizeof(int32_t)); } static void -encode_residual_fixed(int32_t res[], int32_t smp[], int n, int order) +encode_residual_fixed(int32_t *res, int32_t *smp, int n, int order) { int i; @@ -68,8 +68,8 @@ } static void -encode_residual_lpc(int32_t res[], int32_t smp[], int n, int order, - int32_t coefs[], int shift) +encode_residual_lpc(int32_t *res, int32_t *smp, int n, int order, + int32_t *coefs, int shift) { int i; int32_t pred; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |