[FFmpeg-cvslog] Cosmetics: Remove two empty lines and realign some code

Mashiat Sarker Shakkhar git at videolan.org
Tue Jan 3 23:53:10 CET 2012


ffmpeg | branch: master | Mashiat Sarker Shakkhar <shahriman_ams at yahoo.com> | Sun Jan  1 00:00:51 2012 +0600| [a6da23f1467122ac2d52edd406870128339dc88a] | committer: Mashiat Sarker Shakkhar

Cosmetics: Remove two empty lines and realign some code

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a6da23f1467122ac2d52edd406870128339dc88a
---

 libavcodec/wmalosslessdec.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c
index ae7373a..da8bb59 100644
--- a/libavcodec/wmalosslessdec.c
+++ b/libavcodec/wmalosslessdec.c
@@ -321,7 +321,6 @@ static void dump_int_buffer(uint8_t *buffer, int size, int length, int delimiter
         av_log(0, 0, "%d, ", *(int16_t *)(buffer + i * size));
     }
     av_log(0, 0, "\n");
-
 }
 
 /**
@@ -750,9 +749,9 @@ static void clear_codec_buffers(WmallDecodeCtx *s)
 {
     int ich, ilms;
 
-    memset(s->acfilter_coeffs, 0,     16 * sizeof(int));
-    memset(s->lpc_coefs      , 0, 40 * 2 * sizeof(int));
+    memset(s->acfilter_coeffs    , 0, 16 * sizeof(int));
     memset(s->acfilter_prevvalues, 0, 16 * 2 * sizeof(int)); // may be wrong
+    memset(s->lpc_coefs          , 0, 40 * 2 * sizeof(int));
 
     memset(s->mclms_coeffs    , 0, 128 * sizeof(int16_t));
     memset(s->mclms_coeffs_cur, 0,   4 * sizeof(int16_t));



More information about the ffmpeg-cvslog mailing list