[FFmpeg-cvslog] Move num_lms reading out of a loop

Mashiat Sarker Shakkhar git at videolan.org
Wed Dec 7 04:57:33 CET 2011


ffmpeg | branch: master | Mashiat Sarker Shakkhar <shahriman_ams at yahoo.com> | Fri Dec  2 03:02:45 2011 +0600| [075ebdf73563084bb35f5853ff661ed16a4819f1] | committer: Mashiat Sarker Shakkhar

Move num_lms reading out of a loop

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

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

diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c
index 5a7957d..cdaf2f3 100644
--- a/libavcodec/wmalosslessdec.c
+++ b/libavcodec/wmalosslessdec.c
@@ -981,8 +981,8 @@ static void revert_cdlms(WmallDecodeCtx *s, int tile_size)
     for (ich = 0; ich < s->num_channels; ich++) {
         if (!s->is_channel_coded[ich])
             continue;
+        num_lms = s->cdlms_ttl[ich];
         for (icoef = 0; icoef < tile_size; icoef++) {
-            num_lms = s->cdlms_ttl[ich];
             channel_coeff = s->channel_residues[ich][icoef];
             if (icoef == s->transient_pos[ich]) {
                 s->transient[ich] = 1;



More information about the ffmpeg-cvslog mailing list