[FFmpeg-cvslog] postproc/postprocess: fix quant store for fq mode

Michael Niedermayer git at videolan.org
Sun Oct 12 22:28:28 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Oct 12 20:26:27 2014 +0200| [941aaa39e8cd78ba4d16dfcec767290aec9a0136] | committer: Michael Niedermayer

postproc/postprocess: fix quant store for fq mode

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libpostproc/postprocess.c |    2 +-
 tests/ref/fate/filter-pp3 |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c
index bb6a3b4..e3fc267 100644
--- a/libpostproc/postprocess.c
+++ b/libpostproc/postprocess.c
@@ -1019,7 +1019,7 @@ void  pp_postprocess(const uint8_t * src[3], const int srcStride[3],
     if((pict_type&7)!=3){
         if (QPStride >= 0){
             int i;
-            const int count= mbHeight * QPStride;
+            const int count= mbHeight * FFMAX(QPStride, mbWidth);
             for(i=0; i<(count>>2); i++){
                 ((uint32_t*)c->nonBQPTable)[i] = ((const uint32_t*)QP_store)[i] & 0x3F3F3F3F;
             }
diff --git a/tests/ref/fate/filter-pp3 b/tests/ref/fate/filter-pp3
index 00d4595..c2f2b4c 100644
--- a/tests/ref/fate/filter-pp3
+++ b/tests/ref/fate/filter-pp3
@@ -1 +1 @@
-pp3                 f38fdc2dfa4c8d889918efe6d7a7ac3a
+pp3                 ef0f10f1859af2f75717e8c9d64ee38a



More information about the ffmpeg-cvslog mailing list