# HG changeset patch # User mru # Date 1277985061 0 # Node ID 93a22c0fe8fed2f0f3317e340a94f6e80681f34a # Parent 09705b027344dae80689f8f595fa52cb31c60065 Maybe fix threaded mpeg*video encoding This allocates per-thread copies of some MpegEncContext.ac_val which is used concurrently from the encoding threads. diff -r 09705b027344 -r 93a22c0fe8fe mpegvideo.c --- a/mpegvideo.c Thu Jul 01 10:29:47 2010 +0000 +++ b/mpegvideo.c Thu Jul 01 11:51:01 2010 +0000 @@ -356,6 +356,9 @@ } static int init_duplicate_context(MpegEncContext *s, MpegEncContext *base){ + int y_size = s->b8_stride * (2 * s->mb_height + 1); + int c_size = s->mb_stride * (s->mb_height + 1); + int yc_size = y_size + 2 * c_size; int i; // edge emu needs blocksize + filter length - 1 (=17x17 for halfpel / 21x21 for h264) @@ -381,6 +384,14 @@ for(i=0;i<12;i++){ s->pblocks[i] = &s->block[i]; } + + if (s->ac_val_base) { + FF_ALLOCZ_OR_GOTO(s->avctx, s->ac_val_base, yc_size * sizeof(int16_t) * 16, fail); + s->ac_val[0] = s->ac_val_base + s->b8_stride + 1; + s->ac_val[1] = s->ac_val_base + y_size + s->mb_stride + 1; + s->ac_val[2] = s->ac_val[1] + c_size; + } + return 0; fail: return -1; //free() through MPV_common_end() @@ -400,6 +411,7 @@ av_freep(&s->me.map); av_freep(&s->me.score_map); av_freep(&s->blocks); + av_freep(&s->ac_val_base); s->block= NULL; } @@ -423,6 +435,10 @@ COPY(dct_error_sum); COPY(dct_count[0]); COPY(dct_count[1]); + COPY(ac_val_base); + COPY(ac_val[0]); + COPY(ac_val[1]); + COPY(ac_val[2]); #undef COPY }