diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-08-29 21:12:30 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-08-29 21:12:30 +0000 |
commit | f991d423d2ecdab95c73db847ff8af241d76b636 (patch) | |
tree | 14f0d83878349514c274dbb45d57d61f17e87cb7 /libavcodec/lpc.c | |
parent | 93b63b1a6747651035210d4cf8bf3006c4a156f4 (diff) | |
download | ffmpeg-f991d423d2ecdab95c73db847ff8af241d76b636.tar.gz |
Remove useless zeroing of a buffer
Originally committed as revision 15038 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/lpc.c')
-rw-r--r-- | libavcodec/lpc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/lpc.c b/libavcodec/lpc.c index 5c80d7e8cb..00a64acf75 100644 --- a/libavcodec/lpc.c +++ b/libavcodec/lpc.c @@ -35,7 +35,6 @@ static void compute_lpc_coefs(const double *autoc, int max_order, double r, err, tmp; double lpc_tmp[MAX_LPC_ORDER]; - for(i=0; i<max_order; i++) lpc_tmp[i] = 0; err = autoc[0]; for(i=0; i<max_order; i++) { |