[FFmpeg-cvslog] avcodec/lpc: remove unneeded {}
Michael Niedermayer
git at videolan.org
Sat Nov 15 02:13:32 CET 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Nov 15 02:08:20 2014 +0100| [85929b9caa90553f9e1bbd7a3ead03ef2ade4d71] | committer: Michael Niedermayer
avcodec/lpc: remove unneeded {}
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=85929b9caa90553f9e1bbd7a3ead03ef2ade4d71
---
libavcodec/lpc.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/lpc.h b/libavcodec/lpc.h
index b36b19e..9e0b056 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);
More information about the ffmpeg-cvslog
mailing list