[FFmpeg-cvslog] r18771 - in trunk: libavcodec/snow.c tests/ffmpeg.regression.ref

michael subversion
Fri May 8 17:14:37 CEST 2009


Author: michael
Date: Fri May  8 17:14:36 2009
New Revision: 18771

Log:
Correct x/ymin to avoid segfault due to out of picture reads.

Modified:
   trunk/libavcodec/snow.c
   trunk/tests/ffmpeg.regression.ref

Modified: trunk/libavcodec/snow.c
==============================================================================
--- trunk/libavcodec/snow.c	Fri May  8 00:46:42 2009	(r18770)
+++ trunk/libavcodec/snow.c	Fri May  8 17:14:36 2009	(r18771)
@@ -1807,10 +1807,10 @@ static int encode_q_branch(SnowContext *
     c->mb_penalty_factor = get_penalty_factor(s->lambda, s->lambda2, c->avctx->mb_cmp);
     c->current_mv_penalty= c->mv_penalty[s->m.f_code=1] + MAX_MV;
 
-    c->xmin = - x*block_w - 16+2;
-    c->ymin = - y*block_w - 16+2;
-    c->xmax = - (x+1)*block_w + (w<<(LOG2_MB_SIZE - s->block_max_depth)) + 16-2;
-    c->ymax = - (y+1)*block_w + (h<<(LOG2_MB_SIZE - s->block_max_depth)) + 16-2;
+    c->xmin = - x*block_w - 16+3;
+    c->ymin = - y*block_w - 16+3;
+    c->xmax = - (x+1)*block_w + (w<<(LOG2_MB_SIZE - s->block_max_depth)) + 16-3;
+    c->ymax = - (y+1)*block_w + (h<<(LOG2_MB_SIZE - s->block_max_depth)) + 16-3;
 
     if(P_LEFT[0]     > (c->xmax<<shift)) P_LEFT[0]    = (c->xmax<<shift);
     if(P_LEFT[1]     > (c->ymax<<shift)) P_LEFT[1]    = (c->ymax<<shift);

Modified: trunk/tests/ffmpeg.regression.ref
==============================================================================
--- trunk/tests/ffmpeg.regression.ref	Fri May  8 00:46:42 2009	(r18770)
+++ trunk/tests/ffmpeg.regression.ref	Fri May  8 17:14:36 2009	(r18771)
@@ -146,8 +146,8 @@ stddev:    0.00 PSNR:999.99 bytes:  7603
 137018 ./tests/data/a-snow.avi
 3a00e0016a28f4b759c2e9df8cd3db02 *./tests/data/snow.vsynth.out.yuv
 stddev:   22.73 PSNR: 20.99 bytes:  7603200/  7603200
-c7397d2ceb420f7564dcc785948bff84 *./tests/data/a-snow53.avi
-3520692 ./tests/data/a-snow53.avi
+48fdd2eb0b44c867c1652c13bde246da *./tests/data/a-snow53.avi
+3520700 ./tests/data/a-snow53.avi
 799d3db687f6cdd7a837ec156efc171f *./tests/data/snowll.vsynth.out.yuv
 stddev:    0.00 PSNR:999.99 bytes:  7603200/  7603200
 9bfab037b2779eef4b95773788bbe369 *./tests/data/a-dv.dv



More information about the ffmpeg-cvslog mailing list