]> git.sesse.net Git - ffmpeg/blob - libavcodec/mpegvideo.c
Merge commit 'a2941c8cb216bdc144953cace64973f5600ffa2d'
[ffmpeg] / libavcodec / mpegvideo.c
1 /*
2  * The simplest mpeg encoder (well, it was the simplest!)
3  * Copyright (c) 2000,2001 Fabrice Bellard
4  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5  *
6  * 4MV & hq & B-frame encoding stuff by Michael Niedermayer <michaelni@gmx.at>
7  *
8  * This file is part of FFmpeg.
9  *
10  * FFmpeg is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * FFmpeg is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with FFmpeg; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23  */
24
25 /**
26  * @file
27  * The simplest mpeg encoder (well, it was the simplest!).
28  */
29
30 #include "libavutil/attributes.h"
31 #include "libavutil/avassert.h"
32 #include "libavutil/imgutils.h"
33 #include "libavutil/internal.h"
34 #include "libavutil/timer.h"
35 #include "avcodec.h"
36 #include "dsputil.h"
37 #include "h264chroma.h"
38 #include "internal.h"
39 #include "mathops.h"
40 #include "mpegutils.h"
41 #include "mpegvideo.h"
42 #include "mjpegenc.h"
43 #include "msmpeg4.h"
44 #include "thread.h"
45 #include <limits.h>
46
47 static const uint8_t ff_default_chroma_qscale_table[32] = {
48 //   0   1   2   3   4   5   6   7   8   9  10  11  12  13  14  15
49      0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15,
50     16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31
51 };
52
53 const uint8_t ff_mpeg1_dc_scale_table[128] = {
54 //  0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15
55     8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
56     8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
57     8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
58     8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
59     8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
60     8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
61     8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
62     8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
63 };
64
65 static const uint8_t mpeg2_dc_scale_table1[128] = {
66 //  0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15
67     4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
68     4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
69     4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
70     4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
71     4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
72     4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
73     4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
74     4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
75 };
76
77 static const uint8_t mpeg2_dc_scale_table2[128] = {
78 //  0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15
79     2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
80     2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
81     2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
82     2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
83     2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
84     2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
85     2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
86     2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
87 };
88
89 static const uint8_t mpeg2_dc_scale_table3[128] = {
90 //  0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15
91     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
92     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
93     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
94     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
95     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
96     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
97     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
98     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
99 };
100
101 const uint8_t *const ff_mpeg2_dc_scale_table[4] = {
102     ff_mpeg1_dc_scale_table,
103     mpeg2_dc_scale_table1,
104     mpeg2_dc_scale_table2,
105     mpeg2_dc_scale_table3,
106 };
107
108 static void dct_unquantize_mpeg1_intra_c(MpegEncContext *s,
109                                    int16_t *block, int n, int qscale)
110 {
111     int i, level, nCoeffs;
112     const uint16_t *quant_matrix;
113
114     nCoeffs= s->block_last_index[n];
115
116     block[0] *= n < 4 ? s->y_dc_scale : s->c_dc_scale;
117     /* XXX: only mpeg1 */
118     quant_matrix = s->intra_matrix;
119     for(i=1;i<=nCoeffs;i++) {
120         int j= s->intra_scantable.permutated[i];
121         level = block[j];
122         if (level) {
123             if (level < 0) {
124                 level = -level;
125                 level = (int)(level * qscale * quant_matrix[j]) >> 3;
126                 level = (level - 1) | 1;
127                 level = -level;
128             } else {
129                 level = (int)(level * qscale * quant_matrix[j]) >> 3;
130                 level = (level - 1) | 1;
131             }
132             block[j] = level;
133         }
134     }
135 }
136
137 static void dct_unquantize_mpeg1_inter_c(MpegEncContext *s,
138                                    int16_t *block, int n, int qscale)
139 {
140     int i, level, nCoeffs;
141     const uint16_t *quant_matrix;
142
143     nCoeffs= s->block_last_index[n];
144
145     quant_matrix = s->inter_matrix;
146     for(i=0; i<=nCoeffs; i++) {
147         int j= s->intra_scantable.permutated[i];
148         level = block[j];
149         if (level) {
150             if (level < 0) {
151                 level = -level;
152                 level = (((level << 1) + 1) * qscale *
153                          ((int) (quant_matrix[j]))) >> 4;
154                 level = (level - 1) | 1;
155                 level = -level;
156             } else {
157                 level = (((level << 1) + 1) * qscale *
158                          ((int) (quant_matrix[j]))) >> 4;
159                 level = (level - 1) | 1;
160             }
161             block[j] = level;
162         }
163     }
164 }
165
166 static void dct_unquantize_mpeg2_intra_c(MpegEncContext *s,
167                                    int16_t *block, int n, int qscale)
168 {
169     int i, level, nCoeffs;
170     const uint16_t *quant_matrix;
171
172     if(s->alternate_scan) nCoeffs= 63;
173     else nCoeffs= s->block_last_index[n];
174
175     block[0] *= n < 4 ? s->y_dc_scale : s->c_dc_scale;
176     quant_matrix = s->intra_matrix;
177     for(i=1;i<=nCoeffs;i++) {
178         int j= s->intra_scantable.permutated[i];
179         level = block[j];
180         if (level) {
181             if (level < 0) {
182                 level = -level;
183                 level = (int)(level * qscale * quant_matrix[j]) >> 3;
184                 level = -level;
185             } else {
186                 level = (int)(level * qscale * quant_matrix[j]) >> 3;
187             }
188             block[j] = level;
189         }
190     }
191 }
192
193 static void dct_unquantize_mpeg2_intra_bitexact(MpegEncContext *s,
194                                    int16_t *block, int n, int qscale)
195 {
196     int i, level, nCoeffs;
197     const uint16_t *quant_matrix;
198     int sum=-1;
199
200     if(s->alternate_scan) nCoeffs= 63;
201     else nCoeffs= s->block_last_index[n];
202
203     block[0] *= n < 4 ? s->y_dc_scale : s->c_dc_scale;
204     sum += block[0];
205     quant_matrix = s->intra_matrix;
206     for(i=1;i<=nCoeffs;i++) {
207         int j= s->intra_scantable.permutated[i];
208         level = block[j];
209         if (level) {
210             if (level < 0) {
211                 level = -level;
212                 level = (int)(level * qscale * quant_matrix[j]) >> 3;
213                 level = -level;
214             } else {
215                 level = (int)(level * qscale * quant_matrix[j]) >> 3;
216             }
217             block[j] = level;
218             sum+=level;
219         }
220     }
221     block[63]^=sum&1;
222 }
223
224 static void dct_unquantize_mpeg2_inter_c(MpegEncContext *s,
225                                    int16_t *block, int n, int qscale)
226 {
227     int i, level, nCoeffs;
228     const uint16_t *quant_matrix;
229     int sum=-1;
230
231     if(s->alternate_scan) nCoeffs= 63;
232     else nCoeffs= s->block_last_index[n];
233
234     quant_matrix = s->inter_matrix;
235     for(i=0; i<=nCoeffs; i++) {
236         int j= s->intra_scantable.permutated[i];
237         level = block[j];
238         if (level) {
239             if (level < 0) {
240                 level = -level;
241                 level = (((level << 1) + 1) * qscale *
242                          ((int) (quant_matrix[j]))) >> 4;
243                 level = -level;
244             } else {
245                 level = (((level << 1) + 1) * qscale *
246                          ((int) (quant_matrix[j]))) >> 4;
247             }
248             block[j] = level;
249             sum+=level;
250         }
251     }
252     block[63]^=sum&1;
253 }
254
255 static void dct_unquantize_h263_intra_c(MpegEncContext *s,
256                                   int16_t *block, int n, int qscale)
257 {
258     int i, level, qmul, qadd;
259     int nCoeffs;
260
261     av_assert2(s->block_last_index[n]>=0 || s->h263_aic);
262
263     qmul = qscale << 1;
264
265     if (!s->h263_aic) {
266         block[0] *= n < 4 ? s->y_dc_scale : s->c_dc_scale;
267         qadd = (qscale - 1) | 1;
268     }else{
269         qadd = 0;
270     }
271     if(s->ac_pred)
272         nCoeffs=63;
273     else
274         nCoeffs= s->inter_scantable.raster_end[ s->block_last_index[n] ];
275
276     for(i=1; i<=nCoeffs; i++) {
277         level = block[i];
278         if (level) {
279             if (level < 0) {
280                 level = level * qmul - qadd;
281             } else {
282                 level = level * qmul + qadd;
283             }
284             block[i] = level;
285         }
286     }
287 }
288
289 static void dct_unquantize_h263_inter_c(MpegEncContext *s,
290                                   int16_t *block, int n, int qscale)
291 {
292     int i, level, qmul, qadd;
293     int nCoeffs;
294
295     av_assert2(s->block_last_index[n]>=0);
296
297     qadd = (qscale - 1) | 1;
298     qmul = qscale << 1;
299
300     nCoeffs= s->inter_scantable.raster_end[ s->block_last_index[n] ];
301
302     for(i=0; i<=nCoeffs; i++) {
303         level = block[i];
304         if (level) {
305             if (level < 0) {
306                 level = level * qmul - qadd;
307             } else {
308                 level = level * qmul + qadd;
309             }
310             block[i] = level;
311         }
312     }
313 }
314
315 static void mpeg_er_decode_mb(void *opaque, int ref, int mv_dir, int mv_type,
316                               int (*mv)[2][4][2],
317                               int mb_x, int mb_y, int mb_intra, int mb_skipped)
318 {
319     MpegEncContext *s = opaque;
320
321     s->mv_dir     = mv_dir;
322     s->mv_type    = mv_type;
323     s->mb_intra   = mb_intra;
324     s->mb_skipped = mb_skipped;
325     s->mb_x       = mb_x;
326     s->mb_y       = mb_y;
327     memcpy(s->mv, mv, sizeof(*mv));
328
329     ff_init_block_index(s);
330     ff_update_block_index(s);
331
332     s->dsp.clear_blocks(s->block[0]);
333
334     s->dest[0] = s->current_picture.f->data[0] + (s->mb_y *  16                       * s->linesize)   + s->mb_x *  16;
335     s->dest[1] = s->current_picture.f->data[1] + (s->mb_y * (16 >> s->chroma_y_shift) * s->uvlinesize) + s->mb_x * (16 >> s->chroma_x_shift);
336     s->dest[2] = s->current_picture.f->data[2] + (s->mb_y * (16 >> s->chroma_y_shift) * s->uvlinesize) + s->mb_x * (16 >> s->chroma_x_shift);
337
338     if (ref)
339         av_log(s->avctx, AV_LOG_DEBUG, "Interlaced error concealment is not fully implemented\n");
340     ff_MPV_decode_mb(s, s->block);
341 }
342
343 /* init common dct for both encoder and decoder */
344 av_cold int ff_dct_common_init(MpegEncContext *s)
345 {
346     ff_dsputil_init(&s->dsp, s->avctx);
347     ff_h264chroma_init(&s->h264chroma, 8); //for lowres
348     ff_hpeldsp_init(&s->hdsp, s->avctx->flags);
349     ff_videodsp_init(&s->vdsp, s->avctx->bits_per_raw_sample);
350
351     s->dct_unquantize_h263_intra = dct_unquantize_h263_intra_c;
352     s->dct_unquantize_h263_inter = dct_unquantize_h263_inter_c;
353     s->dct_unquantize_mpeg1_intra = dct_unquantize_mpeg1_intra_c;
354     s->dct_unquantize_mpeg1_inter = dct_unquantize_mpeg1_inter_c;
355     s->dct_unquantize_mpeg2_intra = dct_unquantize_mpeg2_intra_c;
356     if (s->flags & CODEC_FLAG_BITEXACT)
357         s->dct_unquantize_mpeg2_intra = dct_unquantize_mpeg2_intra_bitexact;
358     s->dct_unquantize_mpeg2_inter = dct_unquantize_mpeg2_inter_c;
359
360     if (ARCH_ALPHA)
361         ff_MPV_common_init_axp(s);
362     if (ARCH_ARM)
363         ff_MPV_common_init_arm(s);
364     if (ARCH_PPC)
365         ff_MPV_common_init_ppc(s);
366     if (ARCH_X86)
367         ff_MPV_common_init_x86(s);
368
369     /* load & permutate scantables
370      * note: only wmv uses different ones
371      */
372     if (s->alternate_scan) {
373         ff_init_scantable(s->dsp.idct_permutation, &s->inter_scantable  , ff_alternate_vertical_scan);
374         ff_init_scantable(s->dsp.idct_permutation, &s->intra_scantable  , ff_alternate_vertical_scan);
375     } else {
376         ff_init_scantable(s->dsp.idct_permutation, &s->inter_scantable  , ff_zigzag_direct);
377         ff_init_scantable(s->dsp.idct_permutation, &s->intra_scantable  , ff_zigzag_direct);
378     }
379     ff_init_scantable(s->dsp.idct_permutation, &s->intra_h_scantable, ff_alternate_horizontal_scan);
380     ff_init_scantable(s->dsp.idct_permutation, &s->intra_v_scantable, ff_alternate_vertical_scan);
381
382     return 0;
383 }
384
385 static int frame_size_alloc(MpegEncContext *s, int linesize)
386 {
387     int alloc_size = FFALIGN(FFABS(linesize) + 64, 32);
388
389     // edge emu needs blocksize + filter length - 1
390     // (= 17x17 for  halfpel / 21x21 for  h264)
391     // VC1 computes luma and chroma simultaneously and needs 19X19 + 9x9
392     // at uvlinesize. It supports only YUV420 so 24x24 is enough
393     // linesize * interlaced * MBsize
394     FF_ALLOCZ_OR_GOTO(s->avctx, s->edge_emu_buffer, alloc_size * 4 * 24,
395                       fail);
396
397     FF_ALLOCZ_OR_GOTO(s->avctx, s->me.scratchpad, alloc_size * 4 * 16 * 2,
398                       fail)
399     s->me.temp         = s->me.scratchpad;
400     s->rd_scratchpad   = s->me.scratchpad;
401     s->b_scratchpad    = s->me.scratchpad;
402     s->obmc_scratchpad = s->me.scratchpad + 16;
403
404     return 0;
405 fail:
406     av_freep(&s->edge_emu_buffer);
407     return AVERROR(ENOMEM);
408 }
409
410 /**
411  * Allocate a frame buffer
412  */
413 static int alloc_frame_buffer(MpegEncContext *s, Picture *pic)
414 {
415     int edges_needed = av_codec_is_encoder(s->avctx->codec);
416     int r, ret;
417
418     pic->tf.f = pic->f;
419     if (s->codec_id != AV_CODEC_ID_WMV3IMAGE &&
420         s->codec_id != AV_CODEC_ID_VC1IMAGE  &&
421         s->codec_id != AV_CODEC_ID_MSS2) {
422         if (edges_needed) {
423             pic->f->width  = s->avctx->width  + 2 * EDGE_WIDTH;
424             pic->f->height = s->avctx->height + 2 * EDGE_WIDTH;
425         }
426
427         r = ff_thread_get_buffer(s->avctx, &pic->tf,
428                                  pic->reference ? AV_GET_BUFFER_FLAG_REF : 0);
429     } else {
430         pic->f->width  = s->avctx->width;
431         pic->f->height = s->avctx->height;
432         pic->f->format = s->avctx->pix_fmt;
433         r = avcodec_default_get_buffer2(s->avctx, pic->f, 0);
434     }
435
436     if (r < 0 || !pic->f->buf[0]) {
437         av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed (%d %p)\n",
438                r, pic->f->data[0]);
439         return -1;
440     }
441
442     if (edges_needed) {
443         int i;
444         for (i = 0; pic->f->data[i]; i++) {
445             int offset = (EDGE_WIDTH >> (i ? s->chroma_y_shift : 0)) *
446                          pic->f->linesize[i] +
447                          (EDGE_WIDTH >> (i ? s->chroma_x_shift : 0));
448             pic->f->data[i] += offset;
449         }
450         pic->f->width  = s->avctx->width;
451         pic->f->height = s->avctx->height;
452     }
453
454     if (s->avctx->hwaccel) {
455         assert(!pic->hwaccel_picture_private);
456         if (s->avctx->hwaccel->priv_data_size) {
457             pic->hwaccel_priv_buf = av_buffer_allocz(s->avctx->hwaccel->priv_data_size);
458             if (!pic->hwaccel_priv_buf) {
459                 av_log(s->avctx, AV_LOG_ERROR, "alloc_frame_buffer() failed (hwaccel private data allocation)\n");
460                 return -1;
461             }
462             pic->hwaccel_picture_private = pic->hwaccel_priv_buf->data;
463         }
464     }
465
466     if (s->linesize && (s->linesize   != pic->f->linesize[0] ||
467                         s->uvlinesize != pic->f->linesize[1])) {
468         av_log(s->avctx, AV_LOG_ERROR,
469                "get_buffer() failed (stride changed)\n");
470         ff_mpeg_unref_picture(s, pic);
471         return -1;
472     }
473
474     if (pic->f->linesize[1] != pic->f->linesize[2]) {
475         av_log(s->avctx, AV_LOG_ERROR,
476                "get_buffer() failed (uv stride mismatch)\n");
477         ff_mpeg_unref_picture(s, pic);
478         return -1;
479     }
480
481     if (!s->edge_emu_buffer &&
482         (ret = frame_size_alloc(s, pic->f->linesize[0])) < 0) {
483         av_log(s->avctx, AV_LOG_ERROR,
484                "get_buffer() failed to allocate context scratch buffers.\n");
485         ff_mpeg_unref_picture(s, pic);
486         return ret;
487     }
488
489     return 0;
490 }
491
492 void ff_free_picture_tables(Picture *pic)
493 {
494     int i;
495
496     pic->alloc_mb_width  =
497     pic->alloc_mb_height = 0;
498
499     av_buffer_unref(&pic->mb_var_buf);
500     av_buffer_unref(&pic->mc_mb_var_buf);
501     av_buffer_unref(&pic->mb_mean_buf);
502     av_buffer_unref(&pic->mbskip_table_buf);
503     av_buffer_unref(&pic->qscale_table_buf);
504     av_buffer_unref(&pic->mb_type_buf);
505
506     for (i = 0; i < 2; i++) {
507         av_buffer_unref(&pic->motion_val_buf[i]);
508         av_buffer_unref(&pic->ref_index_buf[i]);
509     }
510 }
511
512 static int alloc_picture_tables(MpegEncContext *s, Picture *pic)
513 {
514     const int big_mb_num    = s->mb_stride * (s->mb_height + 1) + 1;
515     const int mb_array_size = s->mb_stride * s->mb_height;
516     const int b8_array_size = s->b8_stride * s->mb_height * 2;
517     int i;
518
519
520     pic->mbskip_table_buf = av_buffer_allocz(mb_array_size + 2);
521     pic->qscale_table_buf = av_buffer_allocz(big_mb_num + s->mb_stride);
522     pic->mb_type_buf      = av_buffer_allocz((big_mb_num + s->mb_stride) *
523                                              sizeof(uint32_t));
524     if (!pic->mbskip_table_buf || !pic->qscale_table_buf || !pic->mb_type_buf)
525         return AVERROR(ENOMEM);
526
527     if (s->encoding) {
528         pic->mb_var_buf    = av_buffer_allocz(mb_array_size * sizeof(int16_t));
529         pic->mc_mb_var_buf = av_buffer_allocz(mb_array_size * sizeof(int16_t));
530         pic->mb_mean_buf   = av_buffer_allocz(mb_array_size);
531         if (!pic->mb_var_buf || !pic->mc_mb_var_buf || !pic->mb_mean_buf)
532             return AVERROR(ENOMEM);
533     }
534
535     if (s->out_format == FMT_H263 || s->encoding || s->avctx->debug_mv) {
536         int mv_size        = 2 * (b8_array_size + 4) * sizeof(int16_t);
537         int ref_index_size = 4 * mb_array_size;
538
539         for (i = 0; mv_size && i < 2; i++) {
540             pic->motion_val_buf[i] = av_buffer_allocz(mv_size);
541             pic->ref_index_buf[i]  = av_buffer_allocz(ref_index_size);
542             if (!pic->motion_val_buf[i] || !pic->ref_index_buf[i])
543                 return AVERROR(ENOMEM);
544         }
545     }
546
547     pic->alloc_mb_width  = s->mb_width;
548     pic->alloc_mb_height = s->mb_height;
549
550     return 0;
551 }
552
553 static int make_tables_writable(Picture *pic)
554 {
555     int ret, i;
556 #define MAKE_WRITABLE(table) \
557 do {\
558     if (pic->table &&\
559        (ret = av_buffer_make_writable(&pic->table)) < 0)\
560     return ret;\
561 } while (0)
562
563     MAKE_WRITABLE(mb_var_buf);
564     MAKE_WRITABLE(mc_mb_var_buf);
565     MAKE_WRITABLE(mb_mean_buf);
566     MAKE_WRITABLE(mbskip_table_buf);
567     MAKE_WRITABLE(qscale_table_buf);
568     MAKE_WRITABLE(mb_type_buf);
569
570     for (i = 0; i < 2; i++) {
571         MAKE_WRITABLE(motion_val_buf[i]);
572         MAKE_WRITABLE(ref_index_buf[i]);
573     }
574
575     return 0;
576 }
577
578 /**
579  * Allocate a Picture.
580  * The pixels are allocated/set by calling get_buffer() if shared = 0
581  */
582 int ff_alloc_picture(MpegEncContext *s, Picture *pic, int shared)
583 {
584     int i, ret;
585
586     if (pic->qscale_table_buf)
587         if (   pic->alloc_mb_width  != s->mb_width
588             || pic->alloc_mb_height != s->mb_height)
589             ff_free_picture_tables(pic);
590
591     if (shared) {
592         av_assert0(pic->f->data[0]);
593         pic->shared = 1;
594     } else {
595         av_assert0(!pic->f->buf[0]);
596
597         if (alloc_frame_buffer(s, pic) < 0)
598             return -1;
599
600         s->linesize   = pic->f->linesize[0];
601         s->uvlinesize = pic->f->linesize[1];
602     }
603
604     if (!pic->qscale_table_buf)
605         ret = alloc_picture_tables(s, pic);
606     else
607         ret = make_tables_writable(pic);
608     if (ret < 0)
609         goto fail;
610
611     if (s->encoding) {
612         pic->mb_var    = (uint16_t*)pic->mb_var_buf->data;
613         pic->mc_mb_var = (uint16_t*)pic->mc_mb_var_buf->data;
614         pic->mb_mean   = pic->mb_mean_buf->data;
615     }
616
617     pic->mbskip_table = pic->mbskip_table_buf->data;
618     pic->qscale_table = pic->qscale_table_buf->data + 2 * s->mb_stride + 1;
619     pic->mb_type      = (uint32_t*)pic->mb_type_buf->data + 2 * s->mb_stride + 1;
620
621     if (pic->motion_val_buf[0]) {
622         for (i = 0; i < 2; i++) {
623             pic->motion_val[i] = (int16_t (*)[2])pic->motion_val_buf[i]->data + 4;
624             pic->ref_index[i]  = pic->ref_index_buf[i]->data;
625         }
626     }
627
628     return 0;
629 fail:
630     av_log(s->avctx, AV_LOG_ERROR, "Error allocating a picture.\n");
631     ff_mpeg_unref_picture(s, pic);
632     ff_free_picture_tables(pic);
633     return AVERROR(ENOMEM);
634 }
635
636 /**
637  * Deallocate a picture.
638  */
639 void ff_mpeg_unref_picture(MpegEncContext *s, Picture *pic)
640 {
641     int off = offsetof(Picture, mb_mean) + sizeof(pic->mb_mean);
642
643     pic->tf.f = pic->f;
644     /* WM Image / Screen codecs allocate internal buffers with different
645      * dimensions / colorspaces; ignore user-defined callbacks for these. */
646     if (s->codec_id != AV_CODEC_ID_WMV3IMAGE &&
647         s->codec_id != AV_CODEC_ID_VC1IMAGE  &&
648         s->codec_id != AV_CODEC_ID_MSS2)
649         ff_thread_release_buffer(s->avctx, &pic->tf);
650     else if (pic->f)
651         av_frame_unref(pic->f);
652
653     av_buffer_unref(&pic->hwaccel_priv_buf);
654
655     if (pic->needs_realloc)
656         ff_free_picture_tables(pic);
657
658     memset((uint8_t*)pic + off, 0, sizeof(*pic) - off);
659 }
660
661 static int update_picture_tables(Picture *dst, Picture *src)
662 {
663      int i;
664
665 #define UPDATE_TABLE(table)\
666 do {\
667     if (src->table &&\
668         (!dst->table || dst->table->buffer != src->table->buffer)) {\
669         av_buffer_unref(&dst->table);\
670         dst->table = av_buffer_ref(src->table);\
671         if (!dst->table) {\
672             ff_free_picture_tables(dst);\
673             return AVERROR(ENOMEM);\
674         }\
675     }\
676 } while (0)
677
678     UPDATE_TABLE(mb_var_buf);
679     UPDATE_TABLE(mc_mb_var_buf);
680     UPDATE_TABLE(mb_mean_buf);
681     UPDATE_TABLE(mbskip_table_buf);
682     UPDATE_TABLE(qscale_table_buf);
683     UPDATE_TABLE(mb_type_buf);
684     for (i = 0; i < 2; i++) {
685         UPDATE_TABLE(motion_val_buf[i]);
686         UPDATE_TABLE(ref_index_buf[i]);
687     }
688
689     dst->mb_var        = src->mb_var;
690     dst->mc_mb_var     = src->mc_mb_var;
691     dst->mb_mean       = src->mb_mean;
692     dst->mbskip_table  = src->mbskip_table;
693     dst->qscale_table  = src->qscale_table;
694     dst->mb_type       = src->mb_type;
695     for (i = 0; i < 2; i++) {
696         dst->motion_val[i] = src->motion_val[i];
697         dst->ref_index[i]  = src->ref_index[i];
698     }
699
700     dst->alloc_mb_width  = src->alloc_mb_width;
701     dst->alloc_mb_height = src->alloc_mb_height;
702
703     return 0;
704 }
705
706 int ff_mpeg_ref_picture(MpegEncContext *s, Picture *dst, Picture *src)
707 {
708     int ret;
709
710     av_assert0(!dst->f->buf[0]);
711     av_assert0(src->f->buf[0]);
712
713     src->tf.f = src->f;
714     dst->tf.f = dst->f;
715     ret = ff_thread_ref_frame(&dst->tf, &src->tf);
716     if (ret < 0)
717         goto fail;
718
719     ret = update_picture_tables(dst, src);
720     if (ret < 0)
721         goto fail;
722
723     if (src->hwaccel_picture_private) {
724         dst->hwaccel_priv_buf = av_buffer_ref(src->hwaccel_priv_buf);
725         if (!dst->hwaccel_priv_buf)
726             goto fail;
727         dst->hwaccel_picture_private = dst->hwaccel_priv_buf->data;
728     }
729
730     dst->field_picture           = src->field_picture;
731     dst->mb_var_sum              = src->mb_var_sum;
732     dst->mc_mb_var_sum           = src->mc_mb_var_sum;
733     dst->b_frame_score           = src->b_frame_score;
734     dst->needs_realloc           = src->needs_realloc;
735     dst->reference               = src->reference;
736     dst->shared                  = src->shared;
737
738     return 0;
739 fail:
740     ff_mpeg_unref_picture(s, dst);
741     return ret;
742 }
743
744 static void exchange_uv(MpegEncContext *s)
745 {
746     int16_t (*tmp)[64];
747
748     tmp           = s->pblocks[4];
749     s->pblocks[4] = s->pblocks[5];
750     s->pblocks[5] = tmp;
751 }
752
753 static int init_duplicate_context(MpegEncContext *s)
754 {
755     int y_size = s->b8_stride * (2 * s->mb_height + 1);
756     int c_size = s->mb_stride * (s->mb_height + 1);
757     int yc_size = y_size + 2 * c_size;
758     int i;
759
760     if (s->mb_height & 1)
761         yc_size += 2*s->b8_stride + 2*s->mb_stride;
762
763     s->edge_emu_buffer =
764     s->me.scratchpad   =
765     s->me.temp         =
766     s->rd_scratchpad   =
767     s->b_scratchpad    =
768     s->obmc_scratchpad = NULL;
769
770     if (s->encoding) {
771         FF_ALLOCZ_OR_GOTO(s->avctx, s->me.map,
772                           ME_MAP_SIZE * sizeof(uint32_t), fail)
773         FF_ALLOCZ_OR_GOTO(s->avctx, s->me.score_map,
774                           ME_MAP_SIZE * sizeof(uint32_t), fail)
775         if (s->avctx->noise_reduction) {
776             FF_ALLOCZ_OR_GOTO(s->avctx, s->dct_error_sum,
777                               2 * 64 * sizeof(int), fail)
778         }
779     }
780     FF_ALLOCZ_OR_GOTO(s->avctx, s->blocks, 64 * 12 * 2 * sizeof(int16_t), fail)
781     s->block = s->blocks[0];
782
783     for (i = 0; i < 12; i++) {
784         s->pblocks[i] = &s->block[i];
785     }
786     if (s->avctx->codec_tag == AV_RL32("VCR2"))
787         exchange_uv(s);
788
789     if (s->out_format == FMT_H263) {
790         /* ac values */
791         FF_ALLOCZ_OR_GOTO(s->avctx, s->ac_val_base,
792                           yc_size * sizeof(int16_t) * 16, fail);
793         s->ac_val[0] = s->ac_val_base + s->b8_stride + 1;
794         s->ac_val[1] = s->ac_val_base + y_size + s->mb_stride + 1;
795         s->ac_val[2] = s->ac_val[1] + c_size;
796     }
797
798     return 0;
799 fail:
800     return -1; // free() through ff_MPV_common_end()
801 }
802
803 static void free_duplicate_context(MpegEncContext *s)
804 {
805     if (s == NULL)
806         return;
807
808     av_freep(&s->edge_emu_buffer);
809     av_freep(&s->me.scratchpad);
810     s->me.temp =
811     s->rd_scratchpad =
812     s->b_scratchpad =
813     s->obmc_scratchpad = NULL;
814
815     av_freep(&s->dct_error_sum);
816     av_freep(&s->me.map);
817     av_freep(&s->me.score_map);
818     av_freep(&s->blocks);
819     av_freep(&s->ac_val_base);
820     s->block = NULL;
821 }
822
823 static void backup_duplicate_context(MpegEncContext *bak, MpegEncContext *src)
824 {
825 #define COPY(a) bak->a = src->a
826     COPY(edge_emu_buffer);
827     COPY(me.scratchpad);
828     COPY(me.temp);
829     COPY(rd_scratchpad);
830     COPY(b_scratchpad);
831     COPY(obmc_scratchpad);
832     COPY(me.map);
833     COPY(me.score_map);
834     COPY(blocks);
835     COPY(block);
836     COPY(start_mb_y);
837     COPY(end_mb_y);
838     COPY(me.map_generation);
839     COPY(pb);
840     COPY(dct_error_sum);
841     COPY(dct_count[0]);
842     COPY(dct_count[1]);
843     COPY(ac_val_base);
844     COPY(ac_val[0]);
845     COPY(ac_val[1]);
846     COPY(ac_val[2]);
847 #undef COPY
848 }
849
850 int ff_update_duplicate_context(MpegEncContext *dst, MpegEncContext *src)
851 {
852     MpegEncContext bak;
853     int i, ret;
854     // FIXME copy only needed parts
855     // START_TIMER
856     backup_duplicate_context(&bak, dst);
857     memcpy(dst, src, sizeof(MpegEncContext));
858     backup_duplicate_context(dst, &bak);
859     for (i = 0; i < 12; i++) {
860         dst->pblocks[i] = &dst->block[i];
861     }
862     if (dst->avctx->codec_tag == AV_RL32("VCR2"))
863         exchange_uv(dst);
864     if (!dst->edge_emu_buffer &&
865         (ret = frame_size_alloc(dst, dst->linesize)) < 0) {
866         av_log(dst->avctx, AV_LOG_ERROR, "failed to allocate context "
867                "scratch buffers.\n");
868         return ret;
869     }
870     // STOP_TIMER("update_duplicate_context")
871     // about 10k cycles / 0.01 sec for  1000frames on 1ghz with 2 threads
872     return 0;
873 }
874
875 int ff_mpeg_update_thread_context(AVCodecContext *dst,
876                                   const AVCodecContext *src)
877 {
878     int i, ret;
879     MpegEncContext *s = dst->priv_data, *s1 = src->priv_data;
880
881     if (dst == src)
882         return 0;
883
884     av_assert0(s != s1);
885
886     // FIXME can parameters change on I-frames?
887     // in that case dst may need a reinit
888     if (!s->context_initialized) {
889         memcpy(s, s1, sizeof(MpegEncContext));
890
891         s->avctx                 = dst;
892         s->bitstream_buffer      = NULL;
893         s->bitstream_buffer_size = s->allocated_bitstream_buffer_size = 0;
894
895         if (s1->context_initialized){
896 //             s->picture_range_start  += MAX_PICTURE_COUNT;
897 //             s->picture_range_end    += MAX_PICTURE_COUNT;
898             if((ret = ff_MPV_common_init(s)) < 0){
899                 memset(s, 0, sizeof(MpegEncContext));
900                 s->avctx = dst;
901                 return ret;
902             }
903         }
904     }
905
906     if (s->height != s1->height || s->width != s1->width || s->context_reinit) {
907         s->context_reinit = 0;
908         s->height = s1->height;
909         s->width  = s1->width;
910         if ((ret = ff_MPV_common_frame_size_change(s)) < 0)
911             return ret;
912     }
913
914     s->avctx->coded_height  = s1->avctx->coded_height;
915     s->avctx->coded_width   = s1->avctx->coded_width;
916     s->avctx->width         = s1->avctx->width;
917     s->avctx->height        = s1->avctx->height;
918
919     s->coded_picture_number = s1->coded_picture_number;
920     s->picture_number       = s1->picture_number;
921
922     av_assert0(!s->picture || s->picture != s1->picture);
923     if(s->picture)
924     for (i = 0; i < MAX_PICTURE_COUNT; i++) {
925         ff_mpeg_unref_picture(s, &s->picture[i]);
926         if (s1->picture[i].f->buf[0] &&
927             (ret = ff_mpeg_ref_picture(s, &s->picture[i], &s1->picture[i])) < 0)
928             return ret;
929     }
930
931 #define UPDATE_PICTURE(pic)\
932 do {\
933     ff_mpeg_unref_picture(s, &s->pic);\
934     if (s1->pic.f && s1->pic.f->buf[0])\
935         ret = ff_mpeg_ref_picture(s, &s->pic, &s1->pic);\
936     else\
937         ret = update_picture_tables(&s->pic, &s1->pic);\
938     if (ret < 0)\
939         return ret;\
940 } while (0)
941
942     UPDATE_PICTURE(current_picture);
943     UPDATE_PICTURE(last_picture);
944     UPDATE_PICTURE(next_picture);
945
946     s->last_picture_ptr    = REBASE_PICTURE(s1->last_picture_ptr,    s, s1);
947     s->current_picture_ptr = REBASE_PICTURE(s1->current_picture_ptr, s, s1);
948     s->next_picture_ptr    = REBASE_PICTURE(s1->next_picture_ptr,    s, s1);
949
950     // Error/bug resilience
951     s->next_p_frame_damaged = s1->next_p_frame_damaged;
952     s->workaround_bugs      = s1->workaround_bugs;
953     s->padding_bug_score    = s1->padding_bug_score;
954
955     // MPEG4 timing info
956     memcpy(&s->last_time_base, &s1->last_time_base,
957            (char *) &s1->pb_field_time + sizeof(s1->pb_field_time) -
958            (char *) &s1->last_time_base);
959
960     // B-frame info
961     s->max_b_frames = s1->max_b_frames;
962     s->low_delay    = s1->low_delay;
963     s->droppable    = s1->droppable;
964
965     // DivX handling (doesn't work)
966     s->divx_packed  = s1->divx_packed;
967
968     if (s1->bitstream_buffer) {
969         if (s1->bitstream_buffer_size +
970             FF_INPUT_BUFFER_PADDING_SIZE > s->allocated_bitstream_buffer_size)
971             av_fast_malloc(&s->bitstream_buffer,
972                            &s->allocated_bitstream_buffer_size,
973                            s1->allocated_bitstream_buffer_size);
974             s->bitstream_buffer_size = s1->bitstream_buffer_size;
975         memcpy(s->bitstream_buffer, s1->bitstream_buffer,
976                s1->bitstream_buffer_size);
977         memset(s->bitstream_buffer + s->bitstream_buffer_size, 0,
978                FF_INPUT_BUFFER_PADDING_SIZE);
979     }
980
981     // linesize dependend scratch buffer allocation
982     if (!s->edge_emu_buffer)
983         if (s1->linesize) {
984             if (frame_size_alloc(s, s1->linesize) < 0) {
985                 av_log(s->avctx, AV_LOG_ERROR, "Failed to allocate context "
986                        "scratch buffers.\n");
987                 return AVERROR(ENOMEM);
988             }
989         } else {
990             av_log(s->avctx, AV_LOG_ERROR, "Context scratch buffers could not "
991                    "be allocated due to unknown size.\n");
992         }
993
994     // MPEG2/interlacing info
995     memcpy(&s->progressive_sequence, &s1->progressive_sequence,
996            (char *) &s1->rtp_mode - (char *) &s1->progressive_sequence);
997
998     if (!s1->first_field) {
999         s->last_pict_type = s1->pict_type;
1000         if (s1->current_picture_ptr)
1001             s->last_lambda_for[s1->pict_type] = s1->current_picture_ptr->f->quality;
1002     }
1003
1004     return 0;
1005 }
1006
1007 /**
1008  * Set the given MpegEncContext to common defaults
1009  * (same for encoding and decoding).
1010  * The changed fields will not depend upon the
1011  * prior state of the MpegEncContext.
1012  */
1013 void ff_MPV_common_defaults(MpegEncContext *s)
1014 {
1015     s->y_dc_scale_table      =
1016     s->c_dc_scale_table      = ff_mpeg1_dc_scale_table;
1017     s->chroma_qscale_table   = ff_default_chroma_qscale_table;
1018     s->progressive_frame     = 1;
1019     s->progressive_sequence  = 1;
1020     s->picture_structure     = PICT_FRAME;
1021
1022     s->coded_picture_number  = 0;
1023     s->picture_number        = 0;
1024
1025     s->f_code                = 1;
1026     s->b_code                = 1;
1027
1028     s->slice_context_count   = 1;
1029 }
1030
1031 /**
1032  * Set the given MpegEncContext to defaults for decoding.
1033  * the changed fields will not depend upon
1034  * the prior state of the MpegEncContext.
1035  */
1036 void ff_MPV_decode_defaults(MpegEncContext *s)
1037 {
1038     ff_MPV_common_defaults(s);
1039 }
1040
1041 static int init_er(MpegEncContext *s)
1042 {
1043     ERContext *er = &s->er;
1044     int mb_array_size = s->mb_height * s->mb_stride;
1045     int i;
1046
1047     er->avctx       = s->avctx;
1048     er->dsp         = &s->dsp;
1049
1050     er->mb_index2xy = s->mb_index2xy;
1051     er->mb_num      = s->mb_num;
1052     er->mb_width    = s->mb_width;
1053     er->mb_height   = s->mb_height;
1054     er->mb_stride   = s->mb_stride;
1055     er->b8_stride   = s->b8_stride;
1056
1057     er->er_temp_buffer     = av_malloc(s->mb_height * s->mb_stride);
1058     er->error_status_table = av_mallocz(mb_array_size);
1059     if (!er->er_temp_buffer || !er->error_status_table)
1060         goto fail;
1061
1062     er->mbskip_table  = s->mbskip_table;
1063     er->mbintra_table = s->mbintra_table;
1064
1065     for (i = 0; i < FF_ARRAY_ELEMS(s->dc_val); i++)
1066         er->dc_val[i] = s->dc_val[i];
1067
1068     er->decode_mb = mpeg_er_decode_mb;
1069     er->opaque    = s;
1070
1071     return 0;
1072 fail:
1073     av_freep(&er->er_temp_buffer);
1074     av_freep(&er->error_status_table);
1075     return AVERROR(ENOMEM);
1076 }
1077
1078 /**
1079  * Initialize and allocates MpegEncContext fields dependent on the resolution.
1080  */
1081 static int init_context_frame(MpegEncContext *s)
1082 {
1083     int y_size, c_size, yc_size, i, mb_array_size, mv_table_size, x, y;
1084
1085     s->mb_width   = (s->width + 15) / 16;
1086     s->mb_stride  = s->mb_width + 1;
1087     s->b8_stride  = s->mb_width * 2 + 1;
1088     mb_array_size = s->mb_height * s->mb_stride;
1089     mv_table_size = (s->mb_height + 2) * s->mb_stride + 1;
1090
1091     /* set default edge pos, will be overridden
1092      * in decode_header if needed */
1093     s->h_edge_pos = s->mb_width * 16;
1094     s->v_edge_pos = s->mb_height * 16;
1095
1096     s->mb_num     = s->mb_width * s->mb_height;
1097
1098     s->block_wrap[0] =
1099     s->block_wrap[1] =
1100     s->block_wrap[2] =
1101     s->block_wrap[3] = s->b8_stride;
1102     s->block_wrap[4] =
1103     s->block_wrap[5] = s->mb_stride;
1104
1105     y_size  = s->b8_stride * (2 * s->mb_height + 1);
1106     c_size  = s->mb_stride * (s->mb_height + 1);
1107     yc_size = y_size + 2   * c_size;
1108
1109     if (s->mb_height & 1)
1110         yc_size += 2*s->b8_stride + 2*s->mb_stride;
1111
1112     FF_ALLOCZ_OR_GOTO(s->avctx, s->mb_index2xy, (s->mb_num + 1) * sizeof(int), fail); // error ressilience code looks cleaner with this
1113     for (y = 0; y < s->mb_height; y++)
1114         for (x = 0; x < s->mb_width; x++)
1115             s->mb_index2xy[x + y * s->mb_width] = x + y * s->mb_stride;
1116
1117     s->mb_index2xy[s->mb_height * s->mb_width] = (s->mb_height - 1) * s->mb_stride + s->mb_width; // FIXME really needed?
1118
1119     if (s->encoding) {
1120         /* Allocate MV tables */
1121         FF_ALLOCZ_OR_GOTO(s->avctx, s->p_mv_table_base,                 mv_table_size * 2 * sizeof(int16_t), fail)
1122         FF_ALLOCZ_OR_GOTO(s->avctx, s->b_forw_mv_table_base,            mv_table_size * 2 * sizeof(int16_t), fail)
1123         FF_ALLOCZ_OR_GOTO(s->avctx, s->b_back_mv_table_base,            mv_table_size * 2 * sizeof(int16_t), fail)
1124         FF_ALLOCZ_OR_GOTO(s->avctx, s->b_bidir_forw_mv_table_base,      mv_table_size * 2 * sizeof(int16_t), fail)
1125         FF_ALLOCZ_OR_GOTO(s->avctx, s->b_bidir_back_mv_table_base,      mv_table_size * 2 * sizeof(int16_t), fail)
1126         FF_ALLOCZ_OR_GOTO(s->avctx, s->b_direct_mv_table_base,          mv_table_size * 2 * sizeof(int16_t), fail)
1127         s->p_mv_table            = s->p_mv_table_base + s->mb_stride + 1;
1128         s->b_forw_mv_table       = s->b_forw_mv_table_base + s->mb_stride + 1;
1129         s->b_back_mv_table       = s->b_back_mv_table_base + s->mb_stride + 1;
1130         s->b_bidir_forw_mv_table = s->b_bidir_forw_mv_table_base + s->mb_stride + 1;
1131         s->b_bidir_back_mv_table = s->b_bidir_back_mv_table_base + s->mb_stride + 1;
1132         s->b_direct_mv_table     = s->b_direct_mv_table_base + s->mb_stride + 1;
1133
1134         /* Allocate MB type table */
1135         FF_ALLOCZ_OR_GOTO(s->avctx, s->mb_type, mb_array_size * sizeof(uint16_t), fail) // needed for encoding
1136
1137         FF_ALLOCZ_OR_GOTO(s->avctx, s->lambda_table, mb_array_size * sizeof(int), fail)
1138
1139         FF_ALLOC_OR_GOTO(s->avctx, s->cplx_tab,
1140                          mb_array_size * sizeof(float), fail);
1141         FF_ALLOC_OR_GOTO(s->avctx, s->bits_tab,
1142                          mb_array_size * sizeof(float), fail);
1143
1144     }
1145
1146     if (s->codec_id == AV_CODEC_ID_MPEG4 ||
1147         (s->flags & CODEC_FLAG_INTERLACED_ME)) {
1148         /* interlaced direct mode decoding tables */
1149         for (i = 0; i < 2; i++) {
1150             int j, k;
1151             for (j = 0; j < 2; j++) {
1152                 for (k = 0; k < 2; k++) {
1153                     FF_ALLOCZ_OR_GOTO(s->avctx,
1154                                       s->b_field_mv_table_base[i][j][k],
1155                                       mv_table_size * 2 * sizeof(int16_t),
1156                                       fail);
1157                     s->b_field_mv_table[i][j][k] = s->b_field_mv_table_base[i][j][k] +
1158                                                    s->mb_stride + 1;
1159                 }
1160                 FF_ALLOCZ_OR_GOTO(s->avctx, s->b_field_select_table [i][j], mb_array_size * 2 * sizeof(uint8_t), fail)
1161                 FF_ALLOCZ_OR_GOTO(s->avctx, s->p_field_mv_table_base[i][j], mv_table_size * 2 * sizeof(int16_t), fail)
1162                 s->p_field_mv_table[i][j] = s->p_field_mv_table_base[i][j] + s->mb_stride + 1;
1163             }
1164             FF_ALLOCZ_OR_GOTO(s->avctx, s->p_field_select_table[i], mb_array_size * 2 * sizeof(uint8_t), fail)
1165         }
1166     }
1167     if (s->out_format == FMT_H263) {
1168         /* cbp values */
1169         FF_ALLOCZ_OR_GOTO(s->avctx, s->coded_block_base, y_size + (s->mb_height&1)*2*s->b8_stride, fail);
1170         s->coded_block = s->coded_block_base + s->b8_stride + 1;
1171
1172         /* cbp, ac_pred, pred_dir */
1173         FF_ALLOCZ_OR_GOTO(s->avctx, s->cbp_table     , mb_array_size * sizeof(uint8_t), fail);
1174         FF_ALLOCZ_OR_GOTO(s->avctx, s->pred_dir_table, mb_array_size * sizeof(uint8_t), fail);
1175     }
1176
1177     if (s->h263_pred || s->h263_plus || !s->encoding) {
1178         /* dc values */
1179         // MN: we need these for  error resilience of intra-frames
1180         FF_ALLOCZ_OR_GOTO(s->avctx, s->dc_val_base, yc_size * sizeof(int16_t), fail);
1181         s->dc_val[0] = s->dc_val_base + s->b8_stride + 1;
1182         s->dc_val[1] = s->dc_val_base + y_size + s->mb_stride + 1;
1183         s->dc_val[2] = s->dc_val[1] + c_size;
1184         for (i = 0; i < yc_size; i++)
1185             s->dc_val_base[i] = 1024;
1186     }
1187
1188     /* which mb is a intra block */
1189     FF_ALLOCZ_OR_GOTO(s->avctx, s->mbintra_table, mb_array_size, fail);
1190     memset(s->mbintra_table, 1, mb_array_size);
1191
1192     /* init macroblock skip table */
1193     FF_ALLOCZ_OR_GOTO(s->avctx, s->mbskip_table, mb_array_size + 2, fail);
1194     // Note the + 1 is for  a quicker mpeg4 slice_end detection
1195
1196     return init_er(s);
1197 fail:
1198     return AVERROR(ENOMEM);
1199 }
1200
1201 /**
1202  * init common structure for both encoder and decoder.
1203  * this assumes that some variables like width/height are already set
1204  */
1205 av_cold int ff_MPV_common_init(MpegEncContext *s)
1206 {
1207     int i;
1208     int nb_slices = (HAVE_THREADS &&
1209                      s->avctx->active_thread_type & FF_THREAD_SLICE) ?
1210                     s->avctx->thread_count : 1;
1211
1212     if (s->encoding && s->avctx->slices)
1213         nb_slices = s->avctx->slices;
1214
1215     if (s->codec_id == AV_CODEC_ID_MPEG2VIDEO && !s->progressive_sequence)
1216         s->mb_height = (s->height + 31) / 32 * 2;
1217     else
1218         s->mb_height = (s->height + 15) / 16;
1219
1220     if (s->avctx->pix_fmt == AV_PIX_FMT_NONE) {
1221         av_log(s->avctx, AV_LOG_ERROR,
1222                "decoding to AV_PIX_FMT_NONE is not supported.\n");
1223         return -1;
1224     }
1225
1226     if (nb_slices > MAX_THREADS || (nb_slices > s->mb_height && s->mb_height)) {
1227         int max_slices;
1228         if (s->mb_height)
1229             max_slices = FFMIN(MAX_THREADS, s->mb_height);
1230         else
1231             max_slices = MAX_THREADS;
1232         av_log(s->avctx, AV_LOG_WARNING, "too many threads/slices (%d),"
1233                " reducing to %d\n", nb_slices, max_slices);
1234         nb_slices = max_slices;
1235     }
1236
1237     if ((s->width || s->height) &&
1238         av_image_check_size(s->width, s->height, 0, s->avctx))
1239         return -1;
1240
1241     ff_dct_common_init(s);
1242
1243     s->flags  = s->avctx->flags;
1244     s->flags2 = s->avctx->flags2;
1245
1246     /* set chroma shifts */
1247     avcodec_get_chroma_sub_sample(s->avctx->pix_fmt,
1248                                   &s->chroma_x_shift,
1249                                   &s->chroma_y_shift);
1250
1251     /* convert fourcc to upper case */
1252     s->codec_tag          = avpriv_toupper4(s->avctx->codec_tag);
1253
1254     s->stream_codec_tag   = avpriv_toupper4(s->avctx->stream_codec_tag);
1255
1256     FF_ALLOCZ_OR_GOTO(s->avctx, s->picture,
1257                       MAX_PICTURE_COUNT * sizeof(Picture), fail);
1258     for (i = 0; i < MAX_PICTURE_COUNT; i++) {
1259         s->picture[i].f = av_frame_alloc();
1260         if (!s->picture[i].f)
1261             goto fail;
1262     }
1263     memset(&s->next_picture, 0, sizeof(s->next_picture));
1264     memset(&s->last_picture, 0, sizeof(s->last_picture));
1265     memset(&s->current_picture, 0, sizeof(s->current_picture));
1266     memset(&s->new_picture, 0, sizeof(s->new_picture));
1267     s->next_picture.f = av_frame_alloc();
1268     if (!s->next_picture.f)
1269         goto fail;
1270     s->last_picture.f = av_frame_alloc();
1271     if (!s->last_picture.f)
1272         goto fail;
1273     s->current_picture.f = av_frame_alloc();
1274     if (!s->current_picture.f)
1275         goto fail;
1276     s->new_picture.f = av_frame_alloc();
1277     if (!s->new_picture.f)
1278         goto fail;
1279
1280         if (init_context_frame(s))
1281             goto fail;
1282
1283         s->parse_context.state = -1;
1284
1285         s->context_initialized = 1;
1286         s->thread_context[0]   = s;
1287
1288 //     if (s->width && s->height) {
1289         if (nb_slices > 1) {
1290             for (i = 1; i < nb_slices; i++) {
1291                 s->thread_context[i] = av_malloc(sizeof(MpegEncContext));
1292                 memcpy(s->thread_context[i], s, sizeof(MpegEncContext));
1293             }
1294
1295             for (i = 0; i < nb_slices; i++) {
1296                 if (init_duplicate_context(s->thread_context[i]) < 0)
1297                     goto fail;
1298                     s->thread_context[i]->start_mb_y =
1299                         (s->mb_height * (i) + nb_slices / 2) / nb_slices;
1300                     s->thread_context[i]->end_mb_y   =
1301                         (s->mb_height * (i + 1) + nb_slices / 2) / nb_slices;
1302             }
1303         } else {
1304             if (init_duplicate_context(s) < 0)
1305                 goto fail;
1306             s->start_mb_y = 0;
1307             s->end_mb_y   = s->mb_height;
1308         }
1309         s->slice_context_count = nb_slices;
1310 //     }
1311
1312     return 0;
1313  fail:
1314     ff_MPV_common_end(s);
1315     return -1;
1316 }
1317
1318 /**
1319  * Frees and resets MpegEncContext fields depending on the resolution.
1320  * Is used during resolution changes to avoid a full reinitialization of the
1321  * codec.
1322  */
1323 static int free_context_frame(MpegEncContext *s)
1324 {
1325     int i, j, k;
1326
1327     av_freep(&s->mb_type);
1328     av_freep(&s->p_mv_table_base);
1329     av_freep(&s->b_forw_mv_table_base);
1330     av_freep(&s->b_back_mv_table_base);
1331     av_freep(&s->b_bidir_forw_mv_table_base);
1332     av_freep(&s->b_bidir_back_mv_table_base);
1333     av_freep(&s->b_direct_mv_table_base);
1334     s->p_mv_table            = NULL;
1335     s->b_forw_mv_table       = NULL;
1336     s->b_back_mv_table       = NULL;
1337     s->b_bidir_forw_mv_table = NULL;
1338     s->b_bidir_back_mv_table = NULL;
1339     s->b_direct_mv_table     = NULL;
1340     for (i = 0; i < 2; i++) {
1341         for (j = 0; j < 2; j++) {
1342             for (k = 0; k < 2; k++) {
1343                 av_freep(&s->b_field_mv_table_base[i][j][k]);
1344                 s->b_field_mv_table[i][j][k] = NULL;
1345             }
1346             av_freep(&s->b_field_select_table[i][j]);
1347             av_freep(&s->p_field_mv_table_base[i][j]);
1348             s->p_field_mv_table[i][j] = NULL;
1349         }
1350         av_freep(&s->p_field_select_table[i]);
1351     }
1352
1353     av_freep(&s->dc_val_base);
1354     av_freep(&s->coded_block_base);
1355     av_freep(&s->mbintra_table);
1356     av_freep(&s->cbp_table);
1357     av_freep(&s->pred_dir_table);
1358
1359     av_freep(&s->mbskip_table);
1360
1361     av_freep(&s->er.error_status_table);
1362     av_freep(&s->er.er_temp_buffer);
1363     av_freep(&s->mb_index2xy);
1364     av_freep(&s->lambda_table);
1365
1366     av_freep(&s->cplx_tab);
1367     av_freep(&s->bits_tab);
1368
1369     s->linesize = s->uvlinesize = 0;
1370
1371     return 0;
1372 }
1373
1374 int ff_MPV_common_frame_size_change(MpegEncContext *s)
1375 {
1376     int i, err = 0;
1377
1378     if (s->slice_context_count > 1) {
1379         for (i = 0; i < s->slice_context_count; i++) {
1380             free_duplicate_context(s->thread_context[i]);
1381         }
1382         for (i = 1; i < s->slice_context_count; i++) {
1383             av_freep(&s->thread_context[i]);
1384         }
1385     } else
1386         free_duplicate_context(s);
1387
1388     if ((err = free_context_frame(s)) < 0)
1389         return err;
1390
1391     if (s->picture)
1392         for (i = 0; i < MAX_PICTURE_COUNT; i++) {
1393                 s->picture[i].needs_realloc = 1;
1394         }
1395
1396     s->last_picture_ptr         =
1397     s->next_picture_ptr         =
1398     s->current_picture_ptr      = NULL;
1399
1400     // init
1401     if (s->codec_id == AV_CODEC_ID_MPEG2VIDEO && !s->progressive_sequence)
1402         s->mb_height = (s->height + 31) / 32 * 2;
1403     else
1404         s->mb_height = (s->height + 15) / 16;
1405
1406     if ((s->width || s->height) &&
1407         av_image_check_size(s->width, s->height, 0, s->avctx))
1408         return AVERROR_INVALIDDATA;
1409
1410     if ((err = init_context_frame(s)))
1411         goto fail;
1412
1413     s->thread_context[0]   = s;
1414
1415     if (s->width && s->height) {
1416         int nb_slices = s->slice_context_count;
1417         if (nb_slices > 1) {
1418             for (i = 1; i < nb_slices; i++) {
1419                 s->thread_context[i] = av_malloc(sizeof(MpegEncContext));
1420                 memcpy(s->thread_context[i], s, sizeof(MpegEncContext));
1421             }
1422
1423             for (i = 0; i < nb_slices; i++) {
1424                 if (init_duplicate_context(s->thread_context[i]) < 0)
1425                     goto fail;
1426                     s->thread_context[i]->start_mb_y =
1427                         (s->mb_height * (i) + nb_slices / 2) / nb_slices;
1428                     s->thread_context[i]->end_mb_y   =
1429                         (s->mb_height * (i + 1) + nb_slices / 2) / nb_slices;
1430             }
1431         } else {
1432             err = init_duplicate_context(s);
1433             if (err < 0)
1434                 goto fail;
1435             s->start_mb_y = 0;
1436             s->end_mb_y   = s->mb_height;
1437         }
1438         s->slice_context_count = nb_slices;
1439     }
1440
1441     return 0;
1442  fail:
1443     ff_MPV_common_end(s);
1444     return err;
1445 }
1446
1447 /* init common structure for both encoder and decoder */
1448 void ff_MPV_common_end(MpegEncContext *s)
1449 {
1450     int i;
1451
1452     if (s->slice_context_count > 1) {
1453         for (i = 0; i < s->slice_context_count; i++) {
1454             free_duplicate_context(s->thread_context[i]);
1455         }
1456         for (i = 1; i < s->slice_context_count; i++) {
1457             av_freep(&s->thread_context[i]);
1458         }
1459         s->slice_context_count = 1;
1460     } else free_duplicate_context(s);
1461
1462     av_freep(&s->parse_context.buffer);
1463     s->parse_context.buffer_size = 0;
1464
1465     av_freep(&s->bitstream_buffer);
1466     s->allocated_bitstream_buffer_size = 0;
1467
1468     if (s->picture) {
1469         for (i = 0; i < MAX_PICTURE_COUNT; i++) {
1470             ff_free_picture_tables(&s->picture[i]);
1471             ff_mpeg_unref_picture(s, &s->picture[i]);
1472             av_frame_free(&s->picture[i].f);
1473         }
1474     }
1475     av_freep(&s->picture);
1476     ff_free_picture_tables(&s->last_picture);
1477     ff_mpeg_unref_picture(s, &s->last_picture);
1478     av_frame_free(&s->last_picture.f);
1479     ff_free_picture_tables(&s->current_picture);
1480     ff_mpeg_unref_picture(s, &s->current_picture);
1481     av_frame_free(&s->current_picture.f);
1482     ff_free_picture_tables(&s->next_picture);
1483     ff_mpeg_unref_picture(s, &s->next_picture);
1484     av_frame_free(&s->next_picture.f);
1485     ff_free_picture_tables(&s->new_picture);
1486     ff_mpeg_unref_picture(s, &s->new_picture);
1487     av_frame_free(&s->new_picture.f);
1488
1489     free_context_frame(s);
1490
1491     s->context_initialized      = 0;
1492     s->last_picture_ptr         =
1493     s->next_picture_ptr         =
1494     s->current_picture_ptr      = NULL;
1495     s->linesize = s->uvlinesize = 0;
1496 }
1497
1498 av_cold void ff_init_rl(RLTable *rl,
1499                         uint8_t static_store[2][2 * MAX_RUN + MAX_LEVEL + 3])
1500 {
1501     int8_t  max_level[MAX_RUN + 1], max_run[MAX_LEVEL + 1];
1502     uint8_t index_run[MAX_RUN + 1];
1503     int last, run, level, start, end, i;
1504
1505     /* If table is static, we can quit if rl->max_level[0] is not NULL */
1506     if (static_store && rl->max_level[0])
1507         return;
1508
1509     /* compute max_level[], max_run[] and index_run[] */
1510     for (last = 0; last < 2; last++) {
1511         if (last == 0) {
1512             start = 0;
1513             end = rl->last;
1514         } else {
1515             start = rl->last;
1516             end = rl->n;
1517         }
1518
1519         memset(max_level, 0, MAX_RUN + 1);
1520         memset(max_run, 0, MAX_LEVEL + 1);
1521         memset(index_run, rl->n, MAX_RUN + 1);
1522         for (i = start; i < end; i++) {
1523             run   = rl->table_run[i];
1524             level = rl->table_level[i];
1525             if (index_run[run] == rl->n)
1526                 index_run[run] = i;
1527             if (level > max_level[run])
1528                 max_level[run] = level;
1529             if (run > max_run[level])
1530                 max_run[level] = run;
1531         }
1532         if (static_store)
1533             rl->max_level[last] = static_store[last];
1534         else
1535             rl->max_level[last] = av_malloc(MAX_RUN + 1);
1536         memcpy(rl->max_level[last], max_level, MAX_RUN + 1);
1537         if (static_store)
1538             rl->max_run[last]   = static_store[last] + MAX_RUN + 1;
1539         else
1540             rl->max_run[last]   = av_malloc(MAX_LEVEL + 1);
1541         memcpy(rl->max_run[last], max_run, MAX_LEVEL + 1);
1542         if (static_store)
1543             rl->index_run[last] = static_store[last] + MAX_RUN + MAX_LEVEL + 2;
1544         else
1545             rl->index_run[last] = av_malloc(MAX_RUN + 1);
1546         memcpy(rl->index_run[last], index_run, MAX_RUN + 1);
1547     }
1548 }
1549
1550 av_cold void ff_init_vlc_rl(RLTable *rl)
1551 {
1552     int i, q;
1553
1554     for (q = 0; q < 32; q++) {
1555         int qmul = q * 2;
1556         int qadd = (q - 1) | 1;
1557
1558         if (q == 0) {
1559             qmul = 1;
1560             qadd = 0;
1561         }
1562         for (i = 0; i < rl->vlc.table_size; i++) {
1563             int code = rl->vlc.table[i][0];
1564             int len  = rl->vlc.table[i][1];
1565             int level, run;
1566
1567             if (len == 0) { // illegal code
1568                 run   = 66;
1569                 level = MAX_LEVEL;
1570             } else if (len < 0) { // more bits needed
1571                 run   = 0;
1572                 level = code;
1573             } else {
1574                 if (code == rl->n) { // esc
1575                     run   = 66;
1576                     level =  0;
1577                 } else {
1578                     run   = rl->table_run[code] + 1;
1579                     level = rl->table_level[code] * qmul + qadd;
1580                     if (code >= rl->last) run += 192;
1581                 }
1582             }
1583             rl->rl_vlc[q][i].len   = len;
1584             rl->rl_vlc[q][i].level = level;
1585             rl->rl_vlc[q][i].run   = run;
1586         }
1587     }
1588 }
1589
1590 static void release_unused_pictures(MpegEncContext *s)
1591 {
1592     int i;
1593
1594     /* release non reference frames */
1595     for (i = 0; i < MAX_PICTURE_COUNT; i++) {
1596         if (!s->picture[i].reference)
1597             ff_mpeg_unref_picture(s, &s->picture[i]);
1598     }
1599 }
1600
1601 static inline int pic_is_unused(MpegEncContext *s, Picture *pic)
1602 {
1603     if (pic == s->last_picture_ptr)
1604         return 0;
1605     if (pic->f->buf[0] == NULL)
1606         return 1;
1607     if (pic->needs_realloc && !(pic->reference & DELAYED_PIC_REF))
1608         return 1;
1609     return 0;
1610 }
1611
1612 static int find_unused_picture(MpegEncContext *s, int shared)
1613 {
1614     int i;
1615
1616     if (shared) {
1617         for (i = 0; i < MAX_PICTURE_COUNT; i++) {
1618             if (s->picture[i].f->buf[0] == NULL && &s->picture[i] != s->last_picture_ptr)
1619                 return i;
1620         }
1621     } else {
1622         for (i = 0; i < MAX_PICTURE_COUNT; i++) {
1623             if (pic_is_unused(s, &s->picture[i]))
1624                 return i;
1625         }
1626     }
1627
1628     av_log(s->avctx, AV_LOG_FATAL,
1629            "Internal error, picture buffer overflow\n");
1630     /* We could return -1, but the codec would crash trying to draw into a
1631      * non-existing frame anyway. This is safer than waiting for a random crash.
1632      * Also the return of this is never useful, an encoder must only allocate
1633      * as much as allowed in the specification. This has no relationship to how
1634      * much libavcodec could allocate (and MAX_PICTURE_COUNT is always large
1635      * enough for such valid streams).
1636      * Plus, a decoder has to check stream validity and remove frames if too
1637      * many reference frames are around. Waiting for "OOM" is not correct at
1638      * all. Similarly, missing reference frames have to be replaced by
1639      * interpolated/MC frames, anything else is a bug in the codec ...
1640      */
1641     abort();
1642     return -1;
1643 }
1644
1645 int ff_find_unused_picture(MpegEncContext *s, int shared)
1646 {
1647     int ret = find_unused_picture(s, shared);
1648
1649     if (ret >= 0 && ret < MAX_PICTURE_COUNT) {
1650         if (s->picture[ret].needs_realloc) {
1651             s->picture[ret].needs_realloc = 0;
1652             ff_free_picture_tables(&s->picture[ret]);
1653             ff_mpeg_unref_picture(s, &s->picture[ret]);
1654         }
1655     }
1656     return ret;
1657 }
1658
1659 /**
1660  * generic function called after decoding
1661  * the header and before a frame is decoded.
1662  */
1663 int ff_MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx)
1664 {
1665     int i, ret;
1666     Picture *pic;
1667     s->mb_skipped = 0;
1668
1669     if (!ff_thread_can_start_frame(avctx)) {
1670         av_log(avctx, AV_LOG_ERROR, "Attempt to start a frame outside SETUP state\n");
1671         return -1;
1672     }
1673
1674     /* mark & release old frames */
1675     if (s->pict_type != AV_PICTURE_TYPE_B && s->last_picture_ptr &&
1676         s->last_picture_ptr != s->next_picture_ptr &&
1677         s->last_picture_ptr->f->buf[0]) {
1678         ff_mpeg_unref_picture(s, s->last_picture_ptr);
1679     }
1680
1681     /* release forgotten pictures */
1682     /* if (mpeg124/h263) */
1683     for (i = 0; i < MAX_PICTURE_COUNT; i++) {
1684         if (&s->picture[i] != s->last_picture_ptr &&
1685             &s->picture[i] != s->next_picture_ptr &&
1686             s->picture[i].reference && !s->picture[i].needs_realloc) {
1687             if (!(avctx->active_thread_type & FF_THREAD_FRAME))
1688                 av_log(avctx, AV_LOG_ERROR,
1689                        "releasing zombie picture\n");
1690             ff_mpeg_unref_picture(s, &s->picture[i]);
1691         }
1692     }
1693
1694     ff_mpeg_unref_picture(s, &s->current_picture);
1695
1696     release_unused_pictures(s);
1697
1698     if (s->current_picture_ptr &&
1699         s->current_picture_ptr->f->buf[0] == NULL) {
1700         // we already have a unused image
1701         // (maybe it was set before reading the header)
1702         pic = s->current_picture_ptr;
1703     } else {
1704         i   = ff_find_unused_picture(s, 0);
1705         if (i < 0) {
1706             av_log(s->avctx, AV_LOG_ERROR, "no frame buffer available\n");
1707             return i;
1708         }
1709         pic = &s->picture[i];
1710     }
1711
1712     pic->reference = 0;
1713     if (!s->droppable) {
1714         if (s->pict_type != AV_PICTURE_TYPE_B)
1715             pic->reference = 3;
1716     }
1717
1718     pic->f->coded_picture_number = s->coded_picture_number++;
1719
1720     if (ff_alloc_picture(s, pic, 0) < 0)
1721         return -1;
1722
1723     s->current_picture_ptr = pic;
1724     // FIXME use only the vars from current_pic
1725     s->current_picture_ptr->f->top_field_first = s->top_field_first;
1726     if (s->codec_id == AV_CODEC_ID_MPEG1VIDEO ||
1727         s->codec_id == AV_CODEC_ID_MPEG2VIDEO) {
1728         if (s->picture_structure != PICT_FRAME)
1729             s->current_picture_ptr->f->top_field_first =
1730                 (s->picture_structure == PICT_TOP_FIELD) == s->first_field;
1731     }
1732     s->current_picture_ptr->f->interlaced_frame = !s->progressive_frame &&
1733                                                  !s->progressive_sequence;
1734     s->current_picture_ptr->field_picture      =  s->picture_structure != PICT_FRAME;
1735
1736     s->current_picture_ptr->f->pict_type = s->pict_type;
1737     // if (s->flags && CODEC_FLAG_QSCALE)
1738     //     s->current_picture_ptr->quality = s->new_picture_ptr->quality;
1739     s->current_picture_ptr->f->key_frame = s->pict_type == AV_PICTURE_TYPE_I;
1740
1741     if ((ret = ff_mpeg_ref_picture(s, &s->current_picture,
1742                                    s->current_picture_ptr)) < 0)
1743         return ret;
1744
1745     if (s->pict_type != AV_PICTURE_TYPE_B) {
1746         s->last_picture_ptr = s->next_picture_ptr;
1747         if (!s->droppable)
1748             s->next_picture_ptr = s->current_picture_ptr;
1749     }
1750     av_dlog(s->avctx, "L%p N%p C%p L%p N%p C%p type:%d drop:%d\n",
1751             s->last_picture_ptr, s->next_picture_ptr,s->current_picture_ptr,
1752             s->last_picture_ptr    ? s->last_picture_ptr->f->data[0]    : NULL,
1753             s->next_picture_ptr    ? s->next_picture_ptr->f->data[0]    : NULL,
1754             s->current_picture_ptr ? s->current_picture_ptr->f->data[0] : NULL,
1755             s->pict_type, s->droppable);
1756
1757     if ((s->last_picture_ptr == NULL ||
1758          s->last_picture_ptr->f->buf[0] == NULL) &&
1759         (s->pict_type != AV_PICTURE_TYPE_I ||
1760          s->picture_structure != PICT_FRAME)) {
1761         int h_chroma_shift, v_chroma_shift;
1762         av_pix_fmt_get_chroma_sub_sample(s->avctx->pix_fmt,
1763                                          &h_chroma_shift, &v_chroma_shift);
1764         if (s->pict_type == AV_PICTURE_TYPE_B && s->next_picture_ptr && s->next_picture_ptr->f->buf[0])
1765             av_log(avctx, AV_LOG_DEBUG,
1766                    "allocating dummy last picture for B frame\n");
1767         else if (s->pict_type != AV_PICTURE_TYPE_I)
1768             av_log(avctx, AV_LOG_ERROR,
1769                    "warning: first frame is no keyframe\n");
1770         else if (s->picture_structure != PICT_FRAME)
1771             av_log(avctx, AV_LOG_DEBUG,
1772                    "allocate dummy last picture for field based first keyframe\n");
1773
1774         /* Allocate a dummy frame */
1775         i = ff_find_unused_picture(s, 0);
1776         if (i < 0) {
1777             av_log(s->avctx, AV_LOG_ERROR, "no frame buffer available\n");
1778             return i;
1779         }
1780         s->last_picture_ptr = &s->picture[i];
1781
1782         s->last_picture_ptr->reference   = 3;
1783         s->last_picture_ptr->f->key_frame = 0;
1784         s->last_picture_ptr->f->pict_type = AV_PICTURE_TYPE_P;
1785
1786         if (ff_alloc_picture(s, s->last_picture_ptr, 0) < 0) {
1787             s->last_picture_ptr = NULL;
1788             return -1;
1789         }
1790
1791         if (!avctx->hwaccel && !(avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU)) {
1792             for(i=0; i<avctx->height; i++)
1793                 memset(s->last_picture_ptr->f->data[0] + s->last_picture_ptr->f->linesize[0]*i,
1794                        0x80, avctx->width);
1795             for(i=0; i<FF_CEIL_RSHIFT(avctx->height, v_chroma_shift); i++) {
1796                 memset(s->last_picture_ptr->f->data[1] + s->last_picture_ptr->f->linesize[1]*i,
1797                        0x80, FF_CEIL_RSHIFT(avctx->width, h_chroma_shift));
1798                 memset(s->last_picture_ptr->f->data[2] + s->last_picture_ptr->f->linesize[2]*i,
1799                        0x80, FF_CEIL_RSHIFT(avctx->width, h_chroma_shift));
1800             }
1801
1802             if(s->codec_id == AV_CODEC_ID_FLV1 || s->codec_id == AV_CODEC_ID_H263){
1803                 for(i=0; i<avctx->height; i++)
1804                 memset(s->last_picture_ptr->f->data[0] + s->last_picture_ptr->f->linesize[0]*i, 16, avctx->width);
1805             }
1806         }
1807
1808         ff_thread_report_progress(&s->last_picture_ptr->tf, INT_MAX, 0);
1809         ff_thread_report_progress(&s->last_picture_ptr->tf, INT_MAX, 1);
1810     }
1811     if ((s->next_picture_ptr == NULL ||
1812          s->next_picture_ptr->f->buf[0] == NULL) &&
1813         s->pict_type == AV_PICTURE_TYPE_B) {
1814         /* Allocate a dummy frame */
1815         i = ff_find_unused_picture(s, 0);
1816         if (i < 0) {
1817             av_log(s->avctx, AV_LOG_ERROR, "no frame buffer available\n");
1818             return i;
1819         }
1820         s->next_picture_ptr = &s->picture[i];
1821
1822         s->next_picture_ptr->reference   = 3;
1823         s->next_picture_ptr->f->key_frame = 0;
1824         s->next_picture_ptr->f->pict_type = AV_PICTURE_TYPE_P;
1825
1826         if (ff_alloc_picture(s, s->next_picture_ptr, 0) < 0) {
1827             s->next_picture_ptr = NULL;
1828             return -1;
1829         }
1830         ff_thread_report_progress(&s->next_picture_ptr->tf, INT_MAX, 0);
1831         ff_thread_report_progress(&s->next_picture_ptr->tf, INT_MAX, 1);
1832     }
1833
1834 #if 0 // BUFREF-FIXME
1835     memset(s->last_picture.f->data, 0, sizeof(s->last_picture.f->data));
1836     memset(s->next_picture.f->data, 0, sizeof(s->next_picture.f->data));
1837 #endif
1838     if (s->last_picture_ptr) {
1839         ff_mpeg_unref_picture(s, &s->last_picture);
1840         if (s->last_picture_ptr->f->buf[0] &&
1841             (ret = ff_mpeg_ref_picture(s, &s->last_picture,
1842                                        s->last_picture_ptr)) < 0)
1843             return ret;
1844     }
1845     if (s->next_picture_ptr) {
1846         ff_mpeg_unref_picture(s, &s->next_picture);
1847         if (s->next_picture_ptr->f->buf[0] &&
1848             (ret = ff_mpeg_ref_picture(s, &s->next_picture,
1849                                        s->next_picture_ptr)) < 0)
1850             return ret;
1851     }
1852
1853     av_assert0(s->pict_type == AV_PICTURE_TYPE_I || (s->last_picture_ptr &&
1854                                                  s->last_picture_ptr->f->buf[0]));
1855
1856     if (s->picture_structure!= PICT_FRAME) {
1857         int i;
1858         for (i = 0; i < 4; i++) {
1859             if (s->picture_structure == PICT_BOTTOM_FIELD) {
1860                 s->current_picture.f->data[i] +=
1861                     s->current_picture.f->linesize[i];
1862             }
1863             s->current_picture.f->linesize[i] *= 2;
1864             s->last_picture.f->linesize[i]    *= 2;
1865             s->next_picture.f->linesize[i]    *= 2;
1866         }
1867     }
1868
1869     s->err_recognition = avctx->err_recognition;
1870
1871     /* set dequantizer, we can't do it during init as
1872      * it might change for mpeg4 and we can't do it in the header
1873      * decode as init is not called for mpeg4 there yet */
1874     if (s->mpeg_quant || s->codec_id == AV_CODEC_ID_MPEG2VIDEO) {
1875         s->dct_unquantize_intra = s->dct_unquantize_mpeg2_intra;
1876         s->dct_unquantize_inter = s->dct_unquantize_mpeg2_inter;
1877     } else if (s->out_format == FMT_H263 || s->out_format == FMT_H261) {
1878         s->dct_unquantize_intra = s->dct_unquantize_h263_intra;
1879         s->dct_unquantize_inter = s->dct_unquantize_h263_inter;
1880     } else {
1881         s->dct_unquantize_intra = s->dct_unquantize_mpeg1_intra;
1882         s->dct_unquantize_inter = s->dct_unquantize_mpeg1_inter;
1883     }
1884
1885     return 0;
1886 }
1887
1888 /* called after a frame has been decoded. */
1889 void ff_MPV_frame_end(MpegEncContext *s)
1890 {
1891     emms_c();
1892
1893     if (s->current_picture.reference)
1894         ff_thread_report_progress(&s->current_picture_ptr->tf, INT_MAX, 0);
1895 }
1896
1897 /**
1898  * Draw a line from (ex, ey) -> (sx, sy).
1899  * @param w width of the image
1900  * @param h height of the image
1901  * @param stride stride/linesize of the image
1902  * @param color color of the arrow
1903  */
1904 static void draw_line(uint8_t *buf, int sx, int sy, int ex, int ey,
1905                       int w, int h, int stride, int color)
1906 {
1907     int x, y, fr, f;
1908
1909     sx = av_clip(sx, 0, w - 1);
1910     sy = av_clip(sy, 0, h - 1);
1911     ex = av_clip(ex, 0, w - 1);
1912     ey = av_clip(ey, 0, h - 1);
1913
1914     buf[sy * stride + sx] += color;
1915
1916     if (FFABS(ex - sx) > FFABS(ey - sy)) {
1917         if (sx > ex) {
1918             FFSWAP(int, sx, ex);
1919             FFSWAP(int, sy, ey);
1920         }
1921         buf += sx + sy * stride;
1922         ex  -= sx;
1923         f    = ((ey - sy) << 16) / ex;
1924         for (x = 0; x <= ex; x++) {
1925             y  = (x * f) >> 16;
1926             fr = (x * f) & 0xFFFF;
1927             buf[y * stride + x]       += (color * (0x10000 - fr)) >> 16;
1928             if(fr) buf[(y + 1) * stride + x] += (color *            fr ) >> 16;
1929         }
1930     } else {
1931         if (sy > ey) {
1932             FFSWAP(int, sx, ex);
1933             FFSWAP(int, sy, ey);
1934         }
1935         buf += sx + sy * stride;
1936         ey  -= sy;
1937         if (ey)
1938             f = ((ex - sx) << 16) / ey;
1939         else
1940             f = 0;
1941         for(y= 0; y <= ey; y++){
1942             x  = (y*f) >> 16;
1943             fr = (y*f) & 0xFFFF;
1944             buf[y * stride + x]     += (color * (0x10000 - fr)) >> 16;
1945             if(fr) buf[y * stride + x + 1] += (color *            fr ) >> 16;
1946         }
1947     }
1948 }
1949
1950 /**
1951  * Draw an arrow from (ex, ey) -> (sx, sy).
1952  * @param w width of the image
1953  * @param h height of the image
1954  * @param stride stride/linesize of the image
1955  * @param color color of the arrow
1956  */
1957 static void draw_arrow(uint8_t *buf, int sx, int sy, int ex,
1958                        int ey, int w, int h, int stride, int color)
1959 {
1960     int dx,dy;
1961
1962     sx = av_clip(sx, -100, w + 100);
1963     sy = av_clip(sy, -100, h + 100);
1964     ex = av_clip(ex, -100, w + 100);
1965     ey = av_clip(ey, -100, h + 100);
1966
1967     dx = ex - sx;
1968     dy = ey - sy;
1969
1970     if (dx * dx + dy * dy > 3 * 3) {
1971         int rx =  dx + dy;
1972         int ry = -dx + dy;
1973         int length = ff_sqrt((rx * rx + ry * ry) << 8);
1974
1975         // FIXME subpixel accuracy
1976         rx = ROUNDED_DIV(rx * 3 << 4, length);
1977         ry = ROUNDED_DIV(ry * 3 << 4, length);
1978
1979         draw_line(buf, sx, sy, sx + rx, sy + ry, w, h, stride, color);
1980         draw_line(buf, sx, sy, sx - ry, sy + rx, w, h, stride, color);
1981     }
1982     draw_line(buf, sx, sy, ex, ey, w, h, stride, color);
1983 }
1984
1985 /**
1986  * Print debugging info for the given picture.
1987  */
1988 void ff_print_debug_info2(AVCodecContext *avctx, AVFrame *pict, uint8_t *mbskip_table,
1989                          uint32_t *mbtype_table, int8_t *qscale_table, int16_t (*motion_val[2])[2],
1990                          int *low_delay,
1991                          int mb_width, int mb_height, int mb_stride, int quarter_sample)
1992 {
1993     if (avctx->hwaccel || !mbtype_table
1994         || (avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU))
1995         return;
1996
1997
1998     if (avctx->debug & (FF_DEBUG_SKIP | FF_DEBUG_QP | FF_DEBUG_MB_TYPE)) {
1999         int x,y;
2000
2001         av_log(avctx, AV_LOG_DEBUG, "New frame, type: %c\n",
2002                av_get_picture_type_char(pict->pict_type));
2003         for (y = 0; y < mb_height; y++) {
2004             for (x = 0; x < mb_width; x++) {
2005                 if (avctx->debug & FF_DEBUG_SKIP) {
2006                     int count = mbskip_table[x + y * mb_stride];
2007                     if (count > 9)
2008                         count = 9;
2009                     av_log(avctx, AV_LOG_DEBUG, "%1d", count);
2010                 }
2011                 if (avctx->debug & FF_DEBUG_QP) {
2012                     av_log(avctx, AV_LOG_DEBUG, "%2d",
2013                            qscale_table[x + y * mb_stride]);
2014                 }
2015                 if (avctx->debug & FF_DEBUG_MB_TYPE) {
2016                     int mb_type = mbtype_table[x + y * mb_stride];
2017                     // Type & MV direction
2018                     if (IS_PCM(mb_type))
2019                         av_log(avctx, AV_LOG_DEBUG, "P");
2020                     else if (IS_INTRA(mb_type) && IS_ACPRED(mb_type))
2021                         av_log(avctx, AV_LOG_DEBUG, "A");
2022                     else if (IS_INTRA4x4(mb_type))
2023                         av_log(avctx, AV_LOG_DEBUG, "i");
2024                     else if (IS_INTRA16x16(mb_type))
2025                         av_log(avctx, AV_LOG_DEBUG, "I");
2026                     else if (IS_DIRECT(mb_type) && IS_SKIP(mb_type))
2027                         av_log(avctx, AV_LOG_DEBUG, "d");
2028                     else if (IS_DIRECT(mb_type))
2029                         av_log(avctx, AV_LOG_DEBUG, "D");
2030                     else if (IS_GMC(mb_type) && IS_SKIP(mb_type))
2031                         av_log(avctx, AV_LOG_DEBUG, "g");
2032                     else if (IS_GMC(mb_type))
2033                         av_log(avctx, AV_LOG_DEBUG, "G");
2034                     else if (IS_SKIP(mb_type))
2035                         av_log(avctx, AV_LOG_DEBUG, "S");
2036                     else if (!USES_LIST(mb_type, 1))
2037                         av_log(avctx, AV_LOG_DEBUG, ">");
2038                     else if (!USES_LIST(mb_type, 0))
2039                         av_log(avctx, AV_LOG_DEBUG, "<");
2040                     else {
2041                         av_assert2(USES_LIST(mb_type, 0) && USES_LIST(mb_type, 1));
2042                         av_log(avctx, AV_LOG_DEBUG, "X");
2043                     }
2044
2045                     // segmentation
2046                     if (IS_8X8(mb_type))
2047                         av_log(avctx, AV_LOG_DEBUG, "+");
2048                     else if (IS_16X8(mb_type))
2049                         av_log(avctx, AV_LOG_DEBUG, "-");
2050                     else if (IS_8X16(mb_type))
2051                         av_log(avctx, AV_LOG_DEBUG, "|");
2052                     else if (IS_INTRA(mb_type) || IS_16X16(mb_type))
2053                         av_log(avctx, AV_LOG_DEBUG, " ");
2054                     else
2055                         av_log(avctx, AV_LOG_DEBUG, "?");
2056
2057
2058                     if (IS_INTERLACED(mb_type))
2059                         av_log(avctx, AV_LOG_DEBUG, "=");
2060                     else
2061                         av_log(avctx, AV_LOG_DEBUG, " ");
2062                 }
2063             }
2064             av_log(avctx, AV_LOG_DEBUG, "\n");
2065         }
2066     }
2067
2068     if ((avctx->debug & (FF_DEBUG_VIS_QP | FF_DEBUG_VIS_MB_TYPE)) ||
2069         (avctx->debug_mv)) {
2070         const int shift = 1 + quarter_sample;
2071         int mb_y;
2072         uint8_t *ptr;
2073         int i;
2074         int h_chroma_shift, v_chroma_shift, block_height;
2075         const int width          = avctx->width;
2076         const int height         = avctx->height;
2077         const int mv_sample_log2 = avctx->codec_id == AV_CODEC_ID_H264 || avctx->codec_id == AV_CODEC_ID_SVQ3 ? 2 : 1;
2078         const int mv_stride      = (mb_width << mv_sample_log2) +
2079                                    (avctx->codec->id == AV_CODEC_ID_H264 ? 0 : 1);
2080
2081         *low_delay = 0; // needed to see the vectors without trashing the buffers
2082
2083         avcodec_get_chroma_sub_sample(avctx->pix_fmt, &h_chroma_shift, &v_chroma_shift);
2084
2085         av_frame_make_writable(pict);
2086
2087         pict->opaque = NULL;
2088         ptr          = pict->data[0];
2089         block_height = 16 >> v_chroma_shift;
2090
2091         for (mb_y = 0; mb_y < mb_height; mb_y++) {
2092             int mb_x;
2093             for (mb_x = 0; mb_x < mb_width; mb_x++) {
2094                 const int mb_index = mb_x + mb_y * mb_stride;
2095                 if ((avctx->debug_mv) && motion_val[0]) {
2096                     int type;
2097                     for (type = 0; type < 3; type++) {
2098                         int direction = 0;
2099                         switch (type) {
2100                         case 0:
2101                             if ((!(avctx->debug_mv & FF_DEBUG_VIS_MV_P_FOR)) ||
2102                                 (pict->pict_type!= AV_PICTURE_TYPE_P))
2103                                 continue;
2104                             direction = 0;
2105                             break;
2106                         case 1:
2107                             if ((!(avctx->debug_mv & FF_DEBUG_VIS_MV_B_FOR)) ||
2108                                 (pict->pict_type!= AV_PICTURE_TYPE_B))
2109                                 continue;
2110                             direction = 0;
2111                             break;
2112                         case 2:
2113                             if ((!(avctx->debug_mv & FF_DEBUG_VIS_MV_B_BACK)) ||
2114                                 (pict->pict_type!= AV_PICTURE_TYPE_B))
2115                                 continue;
2116                             direction = 1;
2117                             break;
2118                         }
2119                         if (!USES_LIST(mbtype_table[mb_index], direction))
2120                             continue;
2121
2122                         if (IS_8X8(mbtype_table[mb_index])) {
2123                             int i;
2124                             for (i = 0; i < 4; i++) {
2125                                 int sx = mb_x * 16 + 4 + 8 * (i & 1);
2126                                 int sy = mb_y * 16 + 4 + 8 * (i >> 1);
2127                                 int xy = (mb_x * 2 + (i & 1) +
2128                                           (mb_y * 2 + (i >> 1)) * mv_stride) << (mv_sample_log2 - 1);
2129                                 int mx = (motion_val[direction][xy][0] >> shift) + sx;
2130                                 int my = (motion_val[direction][xy][1] >> shift) + sy;
2131                                 draw_arrow(ptr, sx, sy, mx, my, width,
2132                                            height, pict->linesize[0], 100);
2133                             }
2134                         } else if (IS_16X8(mbtype_table[mb_index])) {
2135                             int i;
2136                             for (i = 0; i < 2; i++) {
2137                                 int sx = mb_x * 16 + 8;
2138                                 int sy = mb_y * 16 + 4 + 8 * i;
2139                                 int xy = (mb_x * 2 + (mb_y * 2 + i) * mv_stride) << (mv_sample_log2 - 1);
2140                                 int mx = (motion_val[direction][xy][0] >> shift);
2141                                 int my = (motion_val[direction][xy][1] >> shift);
2142
2143                                 if (IS_INTERLACED(mbtype_table[mb_index]))
2144                                     my *= 2;
2145
2146                             draw_arrow(ptr, sx, sy, mx + sx, my + sy, width,
2147                                        height, pict->linesize[0], 100);
2148                             }
2149                         } else if (IS_8X16(mbtype_table[mb_index])) {
2150                             int i;
2151                             for (i = 0; i < 2; i++) {
2152                                 int sx = mb_x * 16 + 4 + 8 * i;
2153                                 int sy = mb_y * 16 + 8;
2154                                 int xy = (mb_x * 2 + i + mb_y * 2 * mv_stride) << (mv_sample_log2 - 1);
2155                                 int mx = motion_val[direction][xy][0] >> shift;
2156                                 int my = motion_val[direction][xy][1] >> shift;
2157
2158                                 if (IS_INTERLACED(mbtype_table[mb_index]))
2159                                     my *= 2;
2160
2161                                 draw_arrow(ptr, sx, sy, mx + sx, my + sy, width,
2162                                            height, pict->linesize[0], 100);
2163                             }
2164                         } else {
2165                               int sx= mb_x * 16 + 8;
2166                               int sy= mb_y * 16 + 8;
2167                               int xy= (mb_x + mb_y * mv_stride) << mv_sample_log2;
2168                               int mx= (motion_val[direction][xy][0]>>shift) + sx;
2169                               int my= (motion_val[direction][xy][1]>>shift) + sy;
2170                               draw_arrow(ptr, sx, sy, mx, my, width, height, pict->linesize[0], 100);
2171                         }
2172                     }
2173                 }
2174                 if ((avctx->debug & FF_DEBUG_VIS_QP)) {
2175                     uint64_t c = (qscale_table[mb_index] * 128 / 31) *
2176                                  0x0101010101010101ULL;
2177                     int y;
2178                     for (y = 0; y < block_height; y++) {
2179                         *(uint64_t *)(pict->data[1] + 8 * mb_x +
2180                                       (block_height * mb_y + y) *
2181                                       pict->linesize[1]) = c;
2182                         *(uint64_t *)(pict->data[2] + 8 * mb_x +
2183                                       (block_height * mb_y + y) *
2184                                       pict->linesize[2]) = c;
2185                     }
2186                 }
2187                 if ((avctx->debug & FF_DEBUG_VIS_MB_TYPE) &&
2188                     motion_val[0]) {
2189                     int mb_type = mbtype_table[mb_index];
2190                     uint64_t u,v;
2191                     int y;
2192 #define COLOR(theta, r) \
2193     u = (int)(128 + r * cos(theta * 3.141592 / 180)); \
2194     v = (int)(128 + r * sin(theta * 3.141592 / 180));
2195
2196
2197                     u = v = 128;
2198                     if (IS_PCM(mb_type)) {
2199                         COLOR(120, 48)
2200                     } else if ((IS_INTRA(mb_type) && IS_ACPRED(mb_type)) ||
2201                                IS_INTRA16x16(mb_type)) {
2202                         COLOR(30, 48)
2203                     } else if (IS_INTRA4x4(mb_type)) {
2204                         COLOR(90, 48)
2205                     } else if (IS_DIRECT(mb_type) && IS_SKIP(mb_type)) {
2206                         // COLOR(120, 48)
2207                     } else if (IS_DIRECT(mb_type)) {
2208                         COLOR(150, 48)
2209                     } else if (IS_GMC(mb_type) && IS_SKIP(mb_type)) {
2210                         COLOR(170, 48)
2211                     } else if (IS_GMC(mb_type)) {
2212                         COLOR(190, 48)
2213                     } else if (IS_SKIP(mb_type)) {
2214                         // COLOR(180, 48)
2215                     } else if (!USES_LIST(mb_type, 1)) {
2216                         COLOR(240, 48)
2217                     } else if (!USES_LIST(mb_type, 0)) {
2218                         COLOR(0, 48)
2219                     } else {
2220                         av_assert2(USES_LIST(mb_type, 0) && USES_LIST(mb_type, 1));
2221                         COLOR(300,48)
2222                     }
2223
2224                     u *= 0x0101010101010101ULL;
2225                     v *= 0x0101010101010101ULL;
2226                     for (y = 0; y < block_height; y++) {
2227                         *(uint64_t *)(pict->data[1] + 8 * mb_x +
2228                                       (block_height * mb_y + y) * pict->linesize[1]) = u;
2229                         *(uint64_t *)(pict->data[2] + 8 * mb_x +
2230                                       (block_height * mb_y + y) * pict->linesize[2]) = v;
2231                     }
2232
2233                     // segmentation
2234                     if (IS_8X8(mb_type) || IS_16X8(mb_type)) {
2235                         *(uint64_t *)(pict->data[0] + 16 * mb_x + 0 +
2236                                       (16 * mb_y + 8) * pict->linesize[0]) ^= 0x8080808080808080ULL;
2237                         *(uint64_t *)(pict->data[0] + 16 * mb_x + 8 +
2238                                       (16 * mb_y + 8) * pict->linesize[0]) ^= 0x8080808080808080ULL;
2239                     }
2240                     if (IS_8X8(mb_type) || IS_8X16(mb_type)) {
2241                         for (y = 0; y < 16; y++)
2242                             pict->data[0][16 * mb_x + 8 + (16 * mb_y + y) *
2243                                           pict->linesize[0]] ^= 0x80;
2244                     }
2245                     if (IS_8X8(mb_type) && mv_sample_log2 >= 2) {
2246                         int dm = 1 << (mv_sample_log2 - 2);
2247                         for (i = 0; i < 4; i++) {
2248                             int sx = mb_x * 16 + 8 * (i & 1);
2249                             int sy = mb_y * 16 + 8 * (i >> 1);
2250                             int xy = (mb_x * 2 + (i & 1) +
2251                                      (mb_y * 2 + (i >> 1)) * mv_stride) << (mv_sample_log2 - 1);
2252                             // FIXME bidir
2253                             int32_t *mv = (int32_t *) &motion_val[0][xy];
2254                             if (mv[0] != mv[dm] ||
2255                                 mv[dm * mv_stride] != mv[dm * (mv_stride + 1)])
2256                                 for (y = 0; y < 8; y++)
2257                                     pict->data[0][sx + 4 + (sy + y) * pict->linesize[0]] ^= 0x80;
2258                             if (mv[0] != mv[dm * mv_stride] || mv[dm] != mv[dm * (mv_stride + 1)])
2259                                 *(uint64_t *)(pict->data[0] + sx + (sy + 4) *
2260                                               pict->linesize[0]) ^= 0x8080808080808080ULL;
2261                         }
2262                     }
2263
2264                     if (IS_INTERLACED(mb_type) &&
2265                         avctx->codec->id == AV_CODEC_ID_H264) {
2266                         // hmm
2267                     }
2268                 }
2269                 mbskip_table[mb_index] = 0;
2270             }
2271         }
2272     }
2273 }
2274
2275 void ff_print_debug_info(MpegEncContext *s, Picture *p, AVFrame *pict)
2276 {
2277     ff_print_debug_info2(s->avctx, pict, s->mbskip_table, p->mb_type,
2278                          p->qscale_table, p->motion_val, &s->low_delay,
2279                          s->mb_width, s->mb_height, s->mb_stride, s->quarter_sample);
2280 }
2281
2282 int ff_mpv_export_qp_table(MpegEncContext *s, AVFrame *f, Picture *p, int qp_type)
2283 {
2284     AVBufferRef *ref = av_buffer_ref(p->qscale_table_buf);
2285     int offset = 2*s->mb_stride + 1;
2286     if(!ref)
2287         return AVERROR(ENOMEM);
2288     av_assert0(ref->size >= offset + s->mb_stride * ((f->height+15)/16));
2289     ref->size -= offset;
2290     ref->data += offset;
2291     return av_frame_set_qp_table(f, ref, s->mb_stride, qp_type);
2292 }
2293
2294 static inline int hpel_motion_lowres(MpegEncContext *s,
2295                                      uint8_t *dest, uint8_t *src,
2296                                      int field_based, int field_select,
2297                                      int src_x, int src_y,
2298                                      int width, int height, ptrdiff_t stride,
2299                                      int h_edge_pos, int v_edge_pos,
2300                                      int w, int h, h264_chroma_mc_func *pix_op,
2301                                      int motion_x, int motion_y)
2302 {
2303     const int lowres   = s->avctx->lowres;
2304     const int op_index = FFMIN(lowres, 3);
2305     const int s_mask   = (2 << lowres) - 1;
2306     int emu = 0;
2307     int sx, sy;
2308
2309     if (s->quarter_sample) {
2310         motion_x /= 2;
2311         motion_y /= 2;
2312     }
2313
2314     sx = motion_x & s_mask;
2315     sy = motion_y & s_mask;
2316     src_x += motion_x >> lowres + 1;
2317     src_y += motion_y >> lowres + 1;
2318
2319     src   += src_y * stride + src_x;
2320
2321     if ((unsigned)src_x > FFMAX( h_edge_pos - (!!sx) - w,                 0) ||
2322         (unsigned)src_y > FFMAX((v_edge_pos >> field_based) - (!!sy) - h, 0)) {
2323         s->vdsp.emulated_edge_mc(s->edge_emu_buffer, src,
2324                                  s->linesize, s->linesize,
2325                                  w + 1, (h + 1) << field_based,
2326                                  src_x, src_y   << field_based,
2327                                  h_edge_pos, v_edge_pos);
2328         src = s->edge_emu_buffer;
2329         emu = 1;
2330     }
2331
2332     sx = (sx << 2) >> lowres;
2333     sy = (sy << 2) >> lowres;
2334     if (field_select)
2335         src += s->linesize;
2336     pix_op[op_index](dest, src, stride, h, sx, sy);
2337     return emu;
2338 }
2339
2340 /* apply one mpeg motion vector to the three components */
2341 static av_always_inline void mpeg_motion_lowres(MpegEncContext *s,
2342                                                 uint8_t *dest_y,
2343                                                 uint8_t *dest_cb,
2344                                                 uint8_t *dest_cr,
2345                                                 int field_based,
2346                                                 int bottom_field,
2347                                                 int field_select,
2348                                                 uint8_t **ref_picture,
2349                                                 h264_chroma_mc_func *pix_op,
2350                                                 int motion_x, int motion_y,
2351                                                 int h, int mb_y)
2352 {
2353     uint8_t *ptr_y, *ptr_cb, *ptr_cr;
2354     int mx, my, src_x, src_y, uvsrc_x, uvsrc_y, sx, sy, uvsx, uvsy;
2355     ptrdiff_t uvlinesize, linesize;
2356     const int lowres     = s->avctx->lowres;
2357     const int op_index   = FFMIN(lowres-1+s->chroma_x_shift, 3);
2358     const int block_s    = 8>>lowres;
2359     const int s_mask     = (2 << lowres) - 1;
2360     const int h_edge_pos = s->h_edge_pos >> lowres;
2361     const int v_edge_pos = s->v_edge_pos >> lowres;
2362     linesize   = s->current_picture.f->linesize[0] << field_based;
2363     uvlinesize = s->current_picture.f->linesize[1] << field_based;
2364
2365     // FIXME obviously not perfect but qpel will not work in lowres anyway
2366     if (s->quarter_sample) {
2367         motion_x /= 2;
2368         motion_y /= 2;
2369     }
2370
2371     if(field_based){
2372         motion_y += (bottom_field - field_select)*((1 << lowres)-1);
2373     }
2374
2375     sx = motion_x & s_mask;
2376     sy = motion_y & s_mask;
2377     src_x = s->mb_x * 2 * block_s + (motion_x >> lowres + 1);
2378     src_y = (mb_y * 2 * block_s >> field_based) + (motion_y >> lowres + 1);
2379
2380     if (s->out_format == FMT_H263) {
2381         uvsx    = ((motion_x >> 1) & s_mask) | (sx & 1);
2382         uvsy    = ((motion_y >> 1) & s_mask) | (sy & 1);
2383         uvsrc_x = src_x >> 1;
2384         uvsrc_y = src_y >> 1;
2385     } else if (s->out_format == FMT_H261) {
2386         // even chroma mv's are full pel in H261
2387         mx      = motion_x / 4;
2388         my      = motion_y / 4;
2389         uvsx    = (2 * mx) & s_mask;
2390         uvsy    = (2 * my) & s_mask;
2391         uvsrc_x = s->mb_x * block_s + (mx >> lowres);
2392         uvsrc_y =    mb_y * block_s + (my >> lowres);
2393     } else {
2394         if(s->chroma_y_shift){
2395             mx      = motion_x / 2;
2396             my      = motion_y / 2;
2397             uvsx    = mx & s_mask;
2398             uvsy    = my & s_mask;
2399             uvsrc_x = s->mb_x * block_s                 + (mx >> lowres + 1);
2400             uvsrc_y =   (mb_y * block_s >> field_based) + (my >> lowres + 1);
2401         } else {
2402             if(s->chroma_x_shift){
2403             //Chroma422
2404                 mx = motion_x / 2;
2405                 uvsx = mx & s_mask;
2406                 uvsy = motion_y & s_mask;
2407                 uvsrc_y = src_y;
2408                 uvsrc_x = s->mb_x*block_s               + (mx >> (lowres+1));
2409             } else {
2410             //Chroma444
2411                 uvsx = motion_x & s_mask;
2412                 uvsy = motion_y & s_mask;
2413                 uvsrc_x = src_x;
2414                 uvsrc_y = src_y;
2415             }
2416         }
2417     }
2418
2419     ptr_y  = ref_picture[0] + src_y   * linesize   + src_x;
2420     ptr_cb = ref_picture[1] + uvsrc_y * uvlinesize + uvsrc_x;
2421     ptr_cr = ref_picture[2] + uvsrc_y * uvlinesize + uvsrc_x;
2422
2423     if ((unsigned) src_x > FFMAX( h_edge_pos - (!!sx) - 2 * block_s,       0) || uvsrc_y<0 ||
2424         (unsigned) src_y > FFMAX((v_edge_pos >> field_based) - (!!sy) - h, 0)) {
2425         s->vdsp.emulated_edge_mc(s->edge_emu_buffer, ptr_y,
2426                                  linesize >> field_based, linesize >> field_based,
2427                                  17, 17 + field_based,
2428                                 src_x, src_y << field_based, h_edge_pos,
2429                                 v_edge_pos);
2430         ptr_y = s->edge_emu_buffer;
2431         if (!CONFIG_GRAY || !(s->flags & CODEC_FLAG_GRAY)) {
2432             uint8_t *uvbuf = s->edge_emu_buffer + 18 * s->linesize;
2433             s->vdsp.emulated_edge_mc(uvbuf,  ptr_cb,
2434                                      uvlinesize >> field_based, uvlinesize >> field_based,
2435                                      9, 9 + field_based,
2436                                     uvsrc_x, uvsrc_y << field_based,
2437                                     h_edge_pos >> 1, v_edge_pos >> 1);
2438             s->vdsp.emulated_edge_mc(uvbuf + 16,  ptr_cr,
2439                                      uvlinesize >> field_based,uvlinesize >> field_based,
2440                                      9, 9 + field_based,
2441                                     uvsrc_x, uvsrc_y << field_based,
2442                                     h_edge_pos >> 1, v_edge_pos >> 1);
2443             ptr_cb = uvbuf;
2444             ptr_cr = uvbuf + 16;
2445         }
2446     }
2447
2448     // FIXME use this for field pix too instead of the obnoxious hack which changes picture.f->data
2449     if (bottom_field) {
2450         dest_y  += s->linesize;
2451         dest_cb += s->uvlinesize;
2452         dest_cr += s->uvlinesize;
2453     }
2454
2455     if (field_select) {
2456         ptr_y   += s->linesize;
2457         ptr_cb  += s->uvlinesize;
2458         ptr_cr  += s->uvlinesize;
2459     }
2460
2461     sx = (sx << 2) >> lowres;
2462     sy = (sy << 2) >> lowres;
2463     pix_op[lowres - 1](dest_y, ptr_y, linesize, h, sx, sy);
2464
2465     if (!CONFIG_GRAY || !(s->flags & CODEC_FLAG_GRAY)) {
2466         int hc = s->chroma_y_shift ? (h+1-bottom_field)>>1 : h;
2467         uvsx = (uvsx << 2) >> lowres;
2468         uvsy = (uvsy << 2) >> lowres;
2469         if (hc) {
2470             pix_op[op_index](dest_cb, ptr_cb, uvlinesize, hc, uvsx, uvsy);
2471             pix_op[op_index](dest_cr, ptr_cr, uvlinesize, hc, uvsx, uvsy);
2472         }
2473     }
2474     // FIXME h261 lowres loop filter
2475 }
2476
2477 static inline void chroma_4mv_motion_lowres(MpegEncContext *s,
2478                                             uint8_t *dest_cb, uint8_t *dest_cr,
2479                                             uint8_t **ref_picture,
2480                                             h264_chroma_mc_func * pix_op,
2481                                             int mx, int my)
2482 {
2483     const int lowres     = s->avctx->lowres;
2484     const int op_index   = FFMIN(lowres, 3);
2485     const int block_s    = 8 >> lowres;
2486     const int s_mask     = (2 << lowres) - 1;
2487     const int h_edge_pos = s->h_edge_pos >> lowres + 1;
2488     const int v_edge_pos = s->v_edge_pos >> lowres + 1;
2489     int emu = 0, src_x, src_y, sx, sy;
2490     ptrdiff_t offset;
2491     uint8_t *ptr;
2492
2493     if (s->quarter_sample) {
2494         mx /= 2;
2495         my /= 2;
2496     }
2497
2498     /* In case of 8X8, we construct a single chroma motion vector
2499        with a special rounding */
2500     mx = ff_h263_round_chroma(mx);
2501     my = ff_h263_round_chroma(my);
2502
2503     sx = mx & s_mask;
2504     sy = my & s_mask;
2505     src_x = s->mb_x * block_s + (mx >> lowres + 1);
2506     src_y = s->mb_y * block_s + (my >> lowres + 1);
2507
2508     offset = src_y * s->uvlinesize + src_x;
2509     ptr = ref_picture[1] + offset;
2510     if ((unsigned) src_x > FFMAX(h_edge_pos - (!!sx) - block_s, 0) ||
2511         (unsigned) src_y > FFMAX(v_edge_pos - (!!sy) - block_s, 0)) {
2512         s->vdsp.emulated_edge_mc(s->edge_emu_buffer, ptr,
2513                                  s->uvlinesize, s->uvlinesize,
2514                                  9, 9,
2515                                  src_x, src_y, h_edge_pos, v_edge_pos);
2516         ptr = s->edge_emu_buffer;
2517         emu = 1;
2518     }
2519     sx = (sx << 2) >> lowres;
2520     sy = (sy << 2) >> lowres;
2521     pix_op[op_index](dest_cb, ptr, s->uvlinesize, block_s, sx, sy);
2522
2523     ptr = ref_picture[2] + offset;
2524     if (emu) {
2525         s->vdsp.emulated_edge_mc(s->edge_emu_buffer, ptr,
2526                                  s->uvlinesize, s->uvlinesize,
2527                                  9, 9,
2528                                  src_x, src_y, h_edge_pos, v_edge_pos);
2529         ptr = s->edge_emu_buffer;
2530     }
2531     pix_op[op_index](dest_cr, ptr, s->uvlinesize, block_s, sx, sy);
2532 }
2533
2534 /**
2535  * motion compensation of a single macroblock
2536  * @param s context
2537  * @param dest_y luma destination pointer
2538  * @param dest_cb chroma cb/u destination pointer
2539  * @param dest_cr chroma cr/v destination pointer
2540  * @param dir direction (0->forward, 1->backward)
2541  * @param ref_picture array[3] of pointers to the 3 planes of the reference picture
2542  * @param pix_op halfpel motion compensation function (average or put normally)
2543  * the motion vectors are taken from s->mv and the MV type from s->mv_type
2544  */
2545 static inline void MPV_motion_lowres(MpegEncContext *s,
2546                                      uint8_t *dest_y, uint8_t *dest_cb,
2547                                      uint8_t *dest_cr,
2548                                      int dir, uint8_t **ref_picture,
2549                                      h264_chroma_mc_func *pix_op)
2550 {
2551     int mx, my;
2552     int mb_x, mb_y, i;
2553     const int lowres  = s->avctx->lowres;
2554     const int block_s = 8 >>lowres;
2555
2556     mb_x = s->mb_x;
2557     mb_y = s->mb_y;
2558
2559     switch (s->mv_type) {
2560     case MV_TYPE_16X16:
2561         mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
2562                            0, 0, 0,
2563                            ref_picture, pix_op,
2564                            s->mv[dir][0][0], s->mv[dir][0][1],
2565                            2 * block_s, mb_y);
2566         break;
2567     case MV_TYPE_8X8:
2568         mx = 0;
2569         my = 0;
2570         for (i = 0; i < 4; i++) {
2571             hpel_motion_lowres(s, dest_y + ((i & 1) + (i >> 1) *
2572                                s->linesize) * block_s,
2573                                ref_picture[0], 0, 0,
2574                                (2 * mb_x + (i & 1)) * block_s,
2575                                (2 * mb_y + (i >> 1)) * block_s,
2576                                s->width, s->height, s->linesize,
2577                                s->h_edge_pos >> lowres, s->v_edge_pos >> lowres,
2578                                block_s, block_s, pix_op,
2579                                s->mv[dir][i][0], s->mv[dir][i][1]);
2580
2581             mx += s->mv[dir][i][0];
2582             my += s->mv[dir][i][1];
2583         }
2584
2585         if (!CONFIG_GRAY || !(s->flags & CODEC_FLAG_GRAY))
2586             chroma_4mv_motion_lowres(s, dest_cb, dest_cr, ref_picture,
2587                                      pix_op, mx, my);
2588         break;
2589     case MV_TYPE_FIELD:
2590         if (s->picture_structure == PICT_FRAME) {
2591             /* top field */
2592             mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
2593                                1, 0, s->field_select[dir][0],
2594                                ref_picture, pix_op,
2595                                s->mv[dir][0][0], s->mv[dir][0][1],
2596                                block_s, mb_y);
2597             /* bottom field */
2598             mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
2599                                1, 1, s->field_select[dir][1],
2600                                ref_picture, pix_op,
2601                                s->mv[dir][1][0], s->mv[dir][1][1],
2602                                block_s, mb_y);
2603         } else {
2604             if (s->picture_structure != s->field_select[dir][0] + 1 &&
2605                 s->pict_type != AV_PICTURE_TYPE_B && !s->first_field) {
2606                 ref_picture = s->current_picture_ptr->f->data;
2607
2608             }
2609             mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
2610                                0, 0, s->field_select[dir][0],
2611                                ref_picture, pix_op,
2612                                s->mv[dir][0][0],
2613                                s->mv[dir][0][1], 2 * block_s, mb_y >> 1);
2614             }
2615         break;
2616     case MV_TYPE_16X8:
2617         for (i = 0; i < 2; i++) {
2618             uint8_t **ref2picture;
2619
2620             if (s->picture_structure == s->field_select[dir][i] + 1 ||
2621                 s->pict_type == AV_PICTURE_TYPE_B || s->first_field) {
2622                 ref2picture = ref_picture;
2623             } else {
2624                 ref2picture = s->current_picture_ptr->f->data;
2625             }
2626
2627             mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
2628                                0, 0, s->field_select[dir][i],
2629                                ref2picture, pix_op,
2630                                s->mv[dir][i][0], s->mv[dir][i][1] +
2631                                2 * block_s * i, block_s, mb_y >> 1);
2632
2633             dest_y  +=  2 * block_s *  s->linesize;
2634             dest_cb += (2 * block_s >> s->chroma_y_shift) * s->uvlinesize;
2635             dest_cr += (2 * block_s >> s->chroma_y_shift) * s->uvlinesize;
2636         }
2637         break;
2638     case MV_TYPE_DMV:
2639         if (s->picture_structure == PICT_FRAME) {
2640             for (i = 0; i < 2; i++) {
2641                 int j;
2642                 for (j = 0; j < 2; j++) {
2643                     mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
2644                                        1, j, j ^ i,
2645                                        ref_picture, pix_op,
2646                                        s->mv[dir][2 * i + j][0],
2647                                        s->mv[dir][2 * i + j][1],
2648                                        block_s, mb_y);
2649                 }
2650                 pix_op = s->h264chroma.avg_h264_chroma_pixels_tab;
2651             }
2652         } else {
2653             for (i = 0; i < 2; i++) {
2654                 mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
2655                                    0, 0, s->picture_structure != i + 1,
2656                                    ref_picture, pix_op,
2657                                    s->mv[dir][2 * i][0],s->mv[dir][2 * i][1],
2658                                    2 * block_s, mb_y >> 1);
2659
2660                 // after put we make avg of the same block
2661                 pix_op = s->h264chroma.avg_h264_chroma_pixels_tab;
2662
2663                 // opposite parity is always in the same
2664                 // frame if this is second field
2665                 if (!s->first_field) {
2666                     ref_picture = s->current_picture_ptr->f->data;
2667                 }
2668             }
2669         }
2670         break;
2671     default:
2672         av_assert2(0);
2673     }
2674 }
2675
2676 /**
2677  * find the lowest MB row referenced in the MVs
2678  */
2679 int ff_MPV_lowest_referenced_row(MpegEncContext *s, int dir)
2680 {
2681     int my_max = INT_MIN, my_min = INT_MAX, qpel_shift = !s->quarter_sample;
2682     int my, off, i, mvs;
2683
2684     if (s->picture_structure != PICT_FRAME || s->mcsel)
2685         goto unhandled;
2686
2687     switch (s->mv_type) {
2688         case MV_TYPE_16X16:
2689             mvs = 1;
2690             break;
2691         case MV_TYPE_16X8:
2692             mvs = 2;
2693             break;
2694         case MV_TYPE_8X8:
2695             mvs = 4;
2696             break;
2697         default:
2698             goto unhandled;
2699     }
2700
2701     for (i = 0; i < mvs; i++) {
2702         my = s->mv[dir][i][1]<<qpel_shift;
2703         my_max = FFMAX(my_max, my);
2704         my_min = FFMIN(my_min, my);
2705     }
2706
2707     off = (FFMAX(-my_min, my_max) + 63) >> 6;
2708
2709     return FFMIN(FFMAX(s->mb_y + off, 0), s->mb_height-1);
2710 unhandled:
2711     return s->mb_height-1;
2712 }
2713
2714 /* put block[] to dest[] */
2715 static inline void put_dct(MpegEncContext *s,
2716                            int16_t *block, int i, uint8_t *dest, int line_size, int qscale)
2717 {
2718     s->dct_unquantize_intra(s, block, i, qscale);
2719     s->dsp.idct_put (dest, line_size, block);
2720 }
2721
2722 /* add block[] to dest[] */
2723 static inline void add_dct(MpegEncContext *s,
2724                            int16_t *block, int i, uint8_t *dest, int line_size)
2725 {
2726     if (s->block_last_index[i] >= 0) {
2727         s->dsp.idct_add (dest, line_size, block);
2728     }
2729 }
2730
2731 static inline void add_dequant_dct(MpegEncContext *s,
2732                            int16_t *block, int i, uint8_t *dest, int line_size, int qscale)
2733 {
2734     if (s->block_last_index[i] >= 0) {
2735         s->dct_unquantize_inter(s, block, i, qscale);
2736
2737         s->dsp.idct_add (dest, line_size, block);
2738     }
2739 }
2740
2741 /**
2742  * Clean dc, ac, coded_block for the current non-intra MB.
2743  */
2744 void ff_clean_intra_table_entries(MpegEncContext *s)
2745 {
2746     int wrap = s->b8_stride;
2747     int xy = s->block_index[0];
2748
2749     s->dc_val[0][xy           ] =
2750     s->dc_val[0][xy + 1       ] =
2751     s->dc_val[0][xy     + wrap] =
2752     s->dc_val[0][xy + 1 + wrap] = 1024;
2753     /* ac pred */
2754     memset(s->ac_val[0][xy       ], 0, 32 * sizeof(int16_t));
2755     memset(s->ac_val[0][xy + wrap], 0, 32 * sizeof(int16_t));
2756     if (s->msmpeg4_version>=3) {
2757         s->coded_block[xy           ] =
2758         s->coded_block[xy + 1       ] =
2759         s->coded_block[xy     + wrap] =
2760         s->coded_block[xy + 1 + wrap] = 0;
2761     }
2762     /* chroma */
2763     wrap = s->mb_stride;
2764     xy = s->mb_x + s->mb_y * wrap;
2765     s->dc_val[1][xy] =
2766     s->dc_val[2][xy] = 1024;
2767     /* ac pred */
2768     memset(s->ac_val[1][xy], 0, 16 * sizeof(int16_t));
2769     memset(s->ac_val[2][xy], 0, 16 * sizeof(int16_t));
2770
2771     s->mbintra_table[xy]= 0;
2772 }
2773
2774 /* generic function called after a macroblock has been parsed by the
2775    decoder or after it has been encoded by the encoder.
2776
2777    Important variables used:
2778    s->mb_intra : true if intra macroblock
2779    s->mv_dir   : motion vector direction
2780    s->mv_type  : motion vector type
2781    s->mv       : motion vector
2782    s->interlaced_dct : true if interlaced dct used (mpeg2)
2783  */
2784 static av_always_inline
2785 void MPV_decode_mb_internal(MpegEncContext *s, int16_t block[12][64],
2786                             int lowres_flag, int is_mpeg12)
2787 {
2788     const int mb_xy = s->mb_y * s->mb_stride + s->mb_x;
2789
2790     if (CONFIG_XVMC &&
2791         s->avctx->hwaccel && s->avctx->hwaccel->decode_mb) {
2792         s->avctx->hwaccel->decode_mb(s);//xvmc uses pblocks
2793         return;
2794     }
2795
2796     if(s->avctx->debug&FF_DEBUG_DCT_COEFF) {
2797        /* print DCT coefficients */
2798        int i,j;
2799        av_log(s->avctx, AV_LOG_DEBUG, "DCT coeffs of MB at %dx%d:\n", s->mb_x, s->mb_y);
2800        for(i=0; i<6; i++){
2801            for(j=0; j<64; j++){
2802                av_log(s->avctx, AV_LOG_DEBUG, "%5d", block[i][s->dsp.idct_permutation[j]]);
2803            }
2804            av_log(s->avctx, AV_LOG_DEBUG, "\n");
2805        }
2806     }
2807
2808     s->current_picture.qscale_table[mb_xy] = s->qscale;
2809
2810     /* update DC predictors for P macroblocks */
2811     if (!s->mb_intra) {
2812         if (!is_mpeg12 && (s->h263_pred || s->h263_aic)) {
2813             if(s->mbintra_table[mb_xy])
2814                 ff_clean_intra_table_entries(s);
2815         } else {
2816             s->last_dc[0] =
2817             s->last_dc[1] =
2818             s->last_dc[2] = 128 << s->intra_dc_precision;
2819         }
2820     }
2821     else if (!is_mpeg12 && (s->h263_pred || s->h263_aic))
2822         s->mbintra_table[mb_xy]=1;
2823
2824     if (   (s->flags&CODEC_FLAG_PSNR)
2825         || s->avctx->frame_skip_threshold || s->avctx->frame_skip_factor
2826         || !(s->encoding && (s->intra_only || s->pict_type==AV_PICTURE_TYPE_B) && s->avctx->mb_decision != FF_MB_DECISION_RD)) { //FIXME precalc
2827         uint8_t *dest_y, *dest_cb, *dest_cr;
2828         int dct_linesize, dct_offset;
2829         op_pixels_func (*op_pix)[4];
2830         qpel_mc_func (*op_qpix)[16];
2831         const int linesize   = s->current_picture.f->linesize[0]; //not s->linesize as this would be wrong for field pics
2832         const int uvlinesize = s->current_picture.f->linesize[1];
2833         const int readable= s->pict_type != AV_PICTURE_TYPE_B || s->encoding || s->avctx->draw_horiz_band || lowres_flag;
2834         const int block_size= lowres_flag ? 8>>s->avctx->lowres : 8;
2835
2836         /* avoid copy if macroblock skipped in last frame too */
2837         /* skip only during decoding as we might trash the buffers during encoding a bit */
2838         if(!s->encoding){
2839             uint8_t *mbskip_ptr = &s->mbskip_table[mb_xy];
2840
2841             if (s->mb_skipped) {
2842                 s->mb_skipped= 0;
2843                 av_assert2(s->pict_type!=AV_PICTURE_TYPE_I);
2844                 *mbskip_ptr = 1;
2845             } else if(!s->current_picture.reference) {
2846                 *mbskip_ptr = 1;
2847             } else{
2848                 *mbskip_ptr = 0; /* not skipped */
2849             }
2850         }
2851
2852         dct_linesize = linesize << s->interlaced_dct;
2853         dct_offset   = s->interlaced_dct ? linesize : linesize * block_size;
2854
2855         if(readable){
2856             dest_y=  s->dest[0];
2857             dest_cb= s->dest[1];
2858             dest_cr= s->dest[2];
2859         }else{
2860             dest_y = s->b_scratchpad;
2861             dest_cb= s->b_scratchpad+16*linesize;
2862             dest_cr= s->b_scratchpad+32*linesize;
2863         }
2864
2865         if (!s->mb_intra) {
2866             /* motion handling */
2867             /* decoding or more than one mb_type (MC was already done otherwise) */
2868             if(!s->encoding){
2869
2870                 if(HAVE_THREADS && s->avctx->active_thread_type&FF_THREAD_FRAME) {
2871                     if (s->mv_dir & MV_DIR_FORWARD) {
2872                         ff_thread_await_progress(&s->last_picture_ptr->tf,
2873                                                  ff_MPV_lowest_referenced_row(s, 0),
2874                                                  0);
2875                     }
2876                     if (s->mv_dir & MV_DIR_BACKWARD) {
2877                         ff_thread_await_progress(&s->next_picture_ptr->tf,
2878                                                  ff_MPV_lowest_referenced_row(s, 1),
2879                                                  0);
2880                     }
2881                 }
2882
2883                 if(lowres_flag){
2884                     h264_chroma_mc_func *op_pix = s->h264chroma.put_h264_chroma_pixels_tab;
2885
2886                     if (s->mv_dir & MV_DIR_FORWARD) {
2887                         MPV_motion_lowres(s, dest_y, dest_cb, dest_cr, 0, s->last_picture.f->data, op_pix);
2888                         op_pix = s->h264chroma.avg_h264_chroma_pixels_tab;
2889                     }
2890                     if (s->mv_dir & MV_DIR_BACKWARD) {
2891                         MPV_motion_lowres(s, dest_y, dest_cb, dest_cr, 1, s->next_picture.f->data, op_pix);
2892                     }
2893                 }else{
2894                     op_qpix = s->me.qpel_put;
2895                     if ((!s->no_rounding) || s->pict_type==AV_PICTURE_TYPE_B){
2896                         op_pix = s->hdsp.put_pixels_tab;
2897                     }else{
2898                         op_pix = s->hdsp.put_no_rnd_pixels_tab;
2899                     }
2900                     if (s->mv_dir & MV_DIR_FORWARD) {
2901                         ff_MPV_motion(s, dest_y, dest_cb, dest_cr, 0, s->last_picture.f->data, op_pix, op_qpix);
2902                         op_pix = s->hdsp.avg_pixels_tab;
2903                         op_qpix= s->me.qpel_avg;
2904                     }
2905                     if (s->mv_dir & MV_DIR_BACKWARD) {
2906                         ff_MPV_motion(s, dest_y, dest_cb, dest_cr, 1, s->next_picture.f->data, op_pix, op_qpix);
2907                     }
2908                 }
2909             }
2910
2911             /* skip dequant / idct if we are really late ;) */
2912             if(s->avctx->skip_idct){
2913                 if(  (s->avctx->skip_idct >= AVDISCARD_NONREF && s->pict_type == AV_PICTURE_TYPE_B)
2914                    ||(s->avctx->skip_idct >= AVDISCARD_NONKEY && s->pict_type != AV_PICTURE_TYPE_I)
2915                    || s->avctx->skip_idct >= AVDISCARD_ALL)
2916                     goto skip_idct;
2917             }
2918
2919             /* add dct residue */
2920             if(s->encoding || !(   s->msmpeg4_version || s->codec_id==AV_CODEC_ID_MPEG1VIDEO || s->codec_id==AV_CODEC_ID_MPEG2VIDEO
2921                                 || (s->codec_id==AV_CODEC_ID_MPEG4 && !s->mpeg_quant))){
2922                 add_dequant_dct(s, block[0], 0, dest_y                          , dct_linesize, s->qscale);
2923                 add_dequant_dct(s, block[1], 1, dest_y              + block_size, dct_linesize, s->qscale);
2924                 add_dequant_dct(s, block[2], 2, dest_y + dct_offset             , dct_linesize, s->qscale);
2925                 add_dequant_dct(s, block[3], 3, dest_y + dct_offset + block_size, dct_linesize, s->qscale);
2926
2927                 if(!CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
2928                     if (s->chroma_y_shift){
2929                         add_dequant_dct(s, block[4], 4, dest_cb, uvlinesize, s->chroma_qscale);
2930                         add_dequant_dct(s, block[5], 5, dest_cr, uvlinesize, s->chroma_qscale);
2931                     }else{
2932                         dct_linesize >>= 1;
2933                         dct_offset >>=1;
2934                         add_dequant_dct(s, block[4], 4, dest_cb,              dct_linesize, s->chroma_qscale);
2935                         add_dequant_dct(s, block[5], 5, dest_cr,              dct_linesize, s->chroma_qscale);
2936                         add_dequant_dct(s, block[6], 6, dest_cb + dct_offset, dct_linesize, s->chroma_qscale);
2937                         add_dequant_dct(s, block[7], 7, dest_cr + dct_offset, dct_linesize, s->chroma_qscale);
2938                     }
2939                 }
2940             } else if(is_mpeg12 || (s->codec_id != AV_CODEC_ID_WMV2)){
2941                 add_dct(s, block[0], 0, dest_y                          , dct_linesize);
2942                 add_dct(s, block[1], 1, dest_y              + block_size, dct_linesize);
2943                 add_dct(s, block[2], 2, dest_y + dct_offset             , dct_linesize);
2944                 add_dct(s, block[3], 3, dest_y + dct_offset + block_size, dct_linesize);
2945
2946                 if(!CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
2947                     if(s->chroma_y_shift){//Chroma420
2948                         add_dct(s, block[4], 4, dest_cb, uvlinesize);
2949                         add_dct(s, block[5], 5, dest_cr, uvlinesize);
2950                     }else{
2951                         //chroma422
2952                         dct_linesize = uvlinesize << s->interlaced_dct;
2953                         dct_offset   = s->interlaced_dct ? uvlinesize : uvlinesize*block_size;
2954
2955                         add_dct(s, block[4], 4, dest_cb, dct_linesize);
2956                         add_dct(s, block[5], 5, dest_cr, dct_linesize);
2957                         add_dct(s, block[6], 6, dest_cb+dct_offset, dct_linesize);
2958                         add_dct(s, block[7], 7, dest_cr+dct_offset, dct_linesize);
2959                         if(!s->chroma_x_shift){//Chroma444
2960                             add_dct(s, block[8], 8, dest_cb+block_size, dct_linesize);
2961                             add_dct(s, block[9], 9, dest_cr+block_size, dct_linesize);
2962                             add_dct(s, block[10], 10, dest_cb+block_size+dct_offset, dct_linesize);
2963                             add_dct(s, block[11], 11, dest_cr+block_size+dct_offset, dct_linesize);
2964                         }
2965                     }
2966                 }//fi gray
2967             }
2968             else if (CONFIG_WMV2_DECODER || CONFIG_WMV2_ENCODER) {
2969                 ff_wmv2_add_mb(s, block, dest_y, dest_cb, dest_cr);
2970             }
2971         } else {
2972             /* dct only in intra block */
2973             if(s->encoding || !(s->codec_id==AV_CODEC_ID_MPEG1VIDEO || s->codec_id==AV_CODEC_ID_MPEG2VIDEO)){
2974                 put_dct(s, block[0], 0, dest_y                          , dct_linesize, s->qscale);
2975                 put_dct(s, block[1], 1, dest_y              + block_size, dct_linesize, s->qscale);
2976                 put_dct(s, block[2], 2, dest_y + dct_offset             , dct_linesize, s->qscale);
2977                 put_dct(s, block[3], 3, dest_y + dct_offset + block_size, dct_linesize, s->qscale);
2978
2979                 if(!CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
2980                     if(s->chroma_y_shift){
2981                         put_dct(s, block[4], 4, dest_cb, uvlinesize, s->chroma_qscale);
2982                         put_dct(s, block[5], 5, dest_cr, uvlinesize, s->chroma_qscale);
2983                     }else{
2984                         dct_offset >>=1;
2985                         dct_linesize >>=1;
2986                         put_dct(s, block[4], 4, dest_cb,              dct_linesize, s->chroma_qscale);
2987                         put_dct(s, block[5], 5, dest_cr,              dct_linesize, s->chroma_qscale);
2988                         put_dct(s, block[6], 6, dest_cb + dct_offset, dct_linesize, s->chroma_qscale);
2989                         put_dct(s, block[7], 7, dest_cr + dct_offset, dct_linesize, s->chroma_qscale);
2990                     }
2991                 }
2992             }else{
2993                 s->dsp.idct_put(dest_y                          , dct_linesize, block[0]);
2994                 s->dsp.idct_put(dest_y              + block_size, dct_linesize, block[1]);
2995                 s->dsp.idct_put(dest_y + dct_offset             , dct_linesize, block[2]);
2996                 s->dsp.idct_put(dest_y + dct_offset + block_size, dct_linesize, block[3]);
2997
2998                 if(!CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
2999                     if(s->chroma_y_shift){
3000                         s->dsp.idct_put(dest_cb, uvlinesize, block[4]);
3001                         s->dsp.idct_put(dest_cr, uvlinesize, block[5]);
3002                     }else{
3003
3004                         dct_linesize = uvlinesize << s->interlaced_dct;
3005                         dct_offset   = s->interlaced_dct ? uvlinesize : uvlinesize*block_size;
3006
3007                         s->dsp.idct_put(dest_cb,              dct_linesize, block[4]);
3008                         s->dsp.idct_put(dest_cr,              dct_linesize, block[5]);
3009                         s->dsp.idct_put(dest_cb + dct_offset, dct_linesize, block[6]);
3010                         s->dsp.idct_put(dest_cr + dct_offset, dct_linesize, block[7]);
3011                         if(!s->chroma_x_shift){//Chroma444
3012                             s->dsp.idct_put(dest_cb + block_size,              dct_linesize, block[8]);
3013                             s->dsp.idct_put(dest_cr + block_size,              dct_linesize, block[9]);
3014                             s->dsp.idct_put(dest_cb + block_size + dct_offset, dct_linesize, block[10]);
3015                             s->dsp.idct_put(dest_cr + block_size + dct_offset, dct_linesize, block[11]);
3016                         }
3017                     }
3018                 }//gray
3019             }
3020         }
3021 skip_idct:
3022         if(!readable){
3023             s->hdsp.put_pixels_tab[0][0](s->dest[0], dest_y ,   linesize,16);
3024             s->hdsp.put_pixels_tab[s->chroma_x_shift][0](s->dest[1], dest_cb, uvlinesize,16 >> s->chroma_y_shift);
3025             s->hdsp.put_pixels_tab[s->chroma_x_shift][0](s->dest[2], dest_cr, uvlinesize,16 >> s->chroma_y_shift);
3026         }
3027     }
3028 }
3029
3030 void ff_MPV_decode_mb(MpegEncContext *s, int16_t block[12][64]){
3031 #if !CONFIG_SMALL
3032     if(s->out_format == FMT_MPEG1) {
3033         if(s->avctx->lowres) MPV_decode_mb_internal(s, block, 1, 1);
3034         else                 MPV_decode_mb_internal(s, block, 0, 1);
3035     } else
3036 #endif
3037     if(s->avctx->lowres) MPV_decode_mb_internal(s, block, 1, 0);
3038     else                  MPV_decode_mb_internal(s, block, 0, 0);
3039 }
3040
3041 void ff_mpeg_draw_horiz_band(MpegEncContext *s, int y, int h)
3042 {
3043     ff_draw_horiz_band(s->avctx, s->current_picture_ptr->f,
3044                        s->last_picture_ptr ? s->last_picture_ptr->f : NULL, y, h, s->picture_structure,
3045                        s->first_field, s->low_delay);
3046 }
3047
3048 void ff_init_block_index(MpegEncContext *s){ //FIXME maybe rename
3049     const int linesize   = s->current_picture.f->linesize[0]; //not s->linesize as this would be wrong for field pics
3050     const int uvlinesize = s->current_picture.f->linesize[1];
3051     const int mb_size= 4 - s->avctx->lowres;
3052
3053     s->block_index[0]= s->b8_stride*(s->mb_y*2    ) - 2 + s->mb_x*2;
3054     s->block_index[1]= s->b8_stride*(s->mb_y*2    ) - 1 + s->mb_x*2;
3055     s->block_index[2]= s->b8_stride*(s->mb_y*2 + 1) - 2 + s->mb_x*2;
3056     s->block_index[3]= s->b8_stride*(s->mb_y*2 + 1) - 1 + s->mb_x*2;
3057     s->block_index[4]= s->mb_stride*(s->mb_y + 1)                + s->b8_stride*s->mb_height*2 + s->mb_x - 1;
3058     s->block_index[5]= s->mb_stride*(s->mb_y + s->mb_height + 2) + s->b8_stride*s->mb_height*2 + s->mb_x - 1;
3059     //block_index is not used by mpeg2, so it is not affected by chroma_format
3060
3061     s->dest[0] = s->current_picture.f->data[0] + ((s->mb_x - 1) <<  mb_size);
3062     s->dest[1] = s->current_picture.f->data[1] + ((s->mb_x - 1) << (mb_size - s->chroma_x_shift));
3063     s->dest[2] = s->current_picture.f->data[2] + ((s->mb_x - 1) << (mb_size - s->chroma_x_shift));
3064
3065     if(!(s->pict_type==AV_PICTURE_TYPE_B && s->avctx->draw_horiz_band && s->picture_structure==PICT_FRAME))
3066     {
3067         if(s->picture_structure==PICT_FRAME){
3068         s->dest[0] += s->mb_y *   linesize << mb_size;
3069         s->dest[1] += s->mb_y * uvlinesize << (mb_size - s->chroma_y_shift);
3070         s->dest[2] += s->mb_y * uvlinesize << (mb_size - s->chroma_y_shift);
3071         }else{
3072             s->dest[0] += (s->mb_y>>1) *   linesize << mb_size;
3073             s->dest[1] += (s->mb_y>>1) * uvlinesize << (mb_size - s->chroma_y_shift);
3074             s->dest[2] += (s->mb_y>>1) * uvlinesize << (mb_size - s->chroma_y_shift);
3075             av_assert1((s->mb_y&1) == (s->picture_structure == PICT_BOTTOM_FIELD));
3076         }
3077     }
3078 }
3079
3080 /**
3081  * Permute an 8x8 block.
3082  * @param block the block which will be permuted according to the given permutation vector
3083  * @param permutation the permutation vector
3084  * @param last the last non zero coefficient in scantable order, used to speed the permutation up
3085  * @param scantable the used scantable, this is only used to speed the permutation up, the block is not
3086  *                  (inverse) permutated to scantable order!
3087  */
3088 void ff_block_permute(int16_t *block, uint8_t *permutation, const uint8_t *scantable, int last)
3089 {
3090     int i;
3091     int16_t temp[64];
3092
3093     if(last<=0) return;
3094     //if(permutation[1]==1) return; //FIXME it is ok but not clean and might fail for some permutations
3095
3096     for(i=0; i<=last; i++){
3097         const int j= scantable[i];
3098         temp[j]= block[j];
3099         block[j]=0;
3100     }
3101
3102     for(i=0; i<=last; i++){
3103         const int j= scantable[i];
3104         const int perm_j= permutation[j];
3105         block[perm_j]= temp[j];
3106     }
3107 }
3108
3109 void ff_mpeg_flush(AVCodecContext *avctx){
3110     int i;
3111     MpegEncContext *s = avctx->priv_data;
3112
3113     if(s==NULL || s->picture==NULL)
3114         return;
3115
3116     for (i = 0; i < MAX_PICTURE_COUNT; i++)
3117         ff_mpeg_unref_picture(s, &s->picture[i]);
3118     s->current_picture_ptr = s->last_picture_ptr = s->next_picture_ptr = NULL;
3119
3120     ff_mpeg_unref_picture(s, &s->current_picture);
3121     ff_mpeg_unref_picture(s, &s->last_picture);
3122     ff_mpeg_unref_picture(s, &s->next_picture);
3123
3124     s->mb_x= s->mb_y= 0;
3125     s->closed_gop= 0;
3126
3127     s->parse_context.state= -1;
3128     s->parse_context.frame_start_found= 0;
3129     s->parse_context.overread= 0;
3130     s->parse_context.overread_index= 0;
3131     s->parse_context.index= 0;
3132     s->parse_context.last_index= 0;
3133     s->bitstream_buffer_size=0;
3134     s->pp_time=0;
3135 }
3136
3137 /**
3138  * set qscale and update qscale dependent variables.
3139  */
3140 void ff_set_qscale(MpegEncContext * s, int qscale)
3141 {
3142     if (qscale < 1)
3143         qscale = 1;
3144     else if (qscale > 31)
3145         qscale = 31;
3146
3147     s->qscale = qscale;
3148     s->chroma_qscale= s->chroma_qscale_table[qscale];
3149
3150     s->y_dc_scale= s->y_dc_scale_table[ qscale ];
3151     s->c_dc_scale= s->c_dc_scale_table[ s->chroma_qscale ];
3152 }
3153
3154 void ff_MPV_report_decode_progress(MpegEncContext *s)
3155 {
3156     if (s->pict_type != AV_PICTURE_TYPE_B && !s->partitioned_frame && !s->er.error_occurred)
3157         ff_thread_report_progress(&s->current_picture_ptr->tf, s->mb_y, 0);
3158 }
3159
3160 #if CONFIG_ERROR_RESILIENCE
3161 void ff_mpeg_set_erpic(ERPicture *dst, Picture *src)
3162 {
3163     int i;
3164
3165     memset(dst, 0, sizeof(*dst));
3166     if (!src)
3167         return;
3168
3169     dst->f = src->f;
3170     dst->tf = &src->tf;
3171
3172     for (i = 0; i < 2; i++) {
3173         dst->motion_val[i] = src->motion_val[i];
3174         dst->ref_index[i] = src->ref_index[i];
3175     }
3176
3177     dst->mb_type = src->mb_type;
3178     dst->field_picture = src->field_picture;
3179 }
3180
3181 void ff_mpeg_er_frame_start(MpegEncContext *s)
3182 {
3183     ERContext *er = &s->er;
3184
3185     ff_mpeg_set_erpic(&er->cur_pic, s->current_picture_ptr);
3186     ff_mpeg_set_erpic(&er->next_pic, s->next_picture_ptr);
3187     ff_mpeg_set_erpic(&er->last_pic, s->last_picture_ptr);
3188
3189     er->pp_time           = s->pp_time;
3190     er->pb_time           = s->pb_time;
3191     er->quarter_sample    = s->quarter_sample;
3192     er->partitioned_frame = s->partitioned_frame;
3193
3194     ff_er_frame_start(er);
3195 }
3196 #endif /* CONFIG_ERROR_RESILIENCE */