diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-11-15 02:08:20 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-11-15 02:08:20 +0100 |
commit | 85929b9caa90553f9e1bbd7a3ead03ef2ade4d71 (patch) | |
tree | de5ac26b6f4e6dea98b25faaaddfa308fd8324aa /libavcodec/lpc.h | |
parent | d4065a9f475589823608218e3b25a0df941495a6 (diff) | |
download | ffmpeg-85929b9caa90553f9e1bbd7a3ead03ef2ade4d71.tar.gz |
avcodec/lpc: remove unneeded {}
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/lpc.h')
-rw-r--r-- | libavcodec/lpc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/lpc.h b/libavcodec/lpc.h index b36b19e6b2..9e0b056338 100644 --- a/libavcodec/lpc.h +++ b/libavcodec/lpc.h @@ -153,7 +153,7 @@ static inline int compute_lpc_coefs(const LPC_TYPE *autoc, int max_order, int normalize) { int i, j; - LPC_TYPE err = { 0 }; + LPC_TYPE err = 0; LPC_TYPE *lpc_last = lpc; av_assert2(normalize || !fail); |