[FFmpeg-cvslog] diracdec: fix #coeffs -> byte conversion

Rostislav Pehlivanov git at videolan.org
Tue Jul 12 11:46:11 CEST 2016


ffmpeg | branch: master | Rostislav Pehlivanov <atomnuker at gmail.com> | Tue Jul 12 10:44:24 2016 +0100| [a337cb73614225b8a7031d664a4a63c563265cd9] | committer: Rostislav Pehlivanov

diracdec: fix #coeffs -> byte conversion

Signed-off-by: Rostislav Pehlivanov <atomnuker at gmail.com>

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

 libavcodec/diracdec.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/diracdec.c b/libavcodec/diracdec.c
index c6a207b..9275c50 100644
--- a/libavcodec/diracdec.c
+++ b/libavcodec/diracdec.c
@@ -854,8 +854,8 @@ static int decode_hq_slice(DiracContext *s, DiracSlice *slice, uint8_t *tmp_buf)
                                                   length, tmp_buf, coef_num);
 
         if (coef_num > coef_par) {
-            const int start_b = coef_par * (4 >> s->pshift);
-            const int end_b   = coef_num * (4 >> s->pshift);
+            const int start_b = coef_par * (1 << (s->pshift + 1));
+            const int end_b   = coef_num * (1 << (s->pshift + 1));
             memset(&tmp_buf[start_b], 0, end_b - start_b);
         }
 



More information about the ffmpeg-cvslog mailing list