Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-11-15 04:08:20 +0300
committerMichael Niedermayer <michaelni@gmx.at>2014-11-15 04:08:20 +0300
commit85929b9caa90553f9e1bbd7a3ead03ef2ade4d71 (patch)
treede5ac26b6f4e6dea98b25faaaddfa308fd8324aa /libavcodec/lpc.h
parentd4065a9f475589823608218e3b25a0df941495a6 (diff)
avcodec/lpc: remove unneeded {}
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/lpc.h')
-rw-r--r--libavcodec/lpc.h2
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);