]> git.sesse.net Git - ffmpeg/blob - libavcodec/mpegvideo.c
Merge remote-tracking branch 'qatar/master'
[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
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.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     s->b4_stride  = s->mb_width * 4 + 1;
1089     mb_array_size = s->mb_height * s->mb_stride;
1090     mv_table_size = (s->mb_height + 2) * s->mb_stride + 1;
1091
1092     /* set default edge pos, will be overriden
1093      * in decode_header if needed */
1094     s->h_edge_pos = s->mb_width * 16;
1095     s->v_edge_pos = s->mb_height * 16;
1096
1097     s->mb_num     = s->mb_width * s->mb_height;
1098
1099     s->block_wrap[0] =
1100     s->block_wrap[1] =
1101     s->block_wrap[2] =
1102     s->block_wrap[3] = s->b8_stride;
1103     s->block_wrap[4] =
1104     s->block_wrap[5] = s->mb_stride;
1105
1106     y_size  = s->b8_stride * (2 * s->mb_height + 1);
1107     c_size  = s->mb_stride * (s->mb_height + 1);
1108     yc_size = y_size + 2   * c_size;
1109
1110     if (s->mb_height & 1)
1111         yc_size += 2*s->b8_stride + 2*s->mb_stride;
1112
1113     FF_ALLOCZ_OR_GOTO(s->avctx, s->mb_index2xy, (s->mb_num + 1) * sizeof(int), fail); // error ressilience code looks cleaner with this
1114     for (y = 0; y < s->mb_height; y++)
1115         for (x = 0; x < s->mb_width; x++)
1116             s->mb_index2xy[x + y * s->mb_width] = x + y * s->mb_stride;
1117
1118     s->mb_index2xy[s->mb_height * s->mb_width] = (s->mb_height - 1) * s->mb_stride + s->mb_width; // FIXME really needed?
1119
1120     if (s->encoding) {
1121         /* Allocate MV tables */
1122         FF_ALLOCZ_OR_GOTO(s->avctx, s->p_mv_table_base,                 mv_table_size * 2 * sizeof(int16_t), fail)
1123         FF_ALLOCZ_OR_GOTO(s->avctx, s->b_forw_mv_table_base,            mv_table_size * 2 * sizeof(int16_t), fail)
1124         FF_ALLOCZ_OR_GOTO(s->avctx, s->b_back_mv_table_base,            mv_table_size * 2 * sizeof(int16_t), fail)
1125         FF_ALLOCZ_OR_GOTO(s->avctx, s->b_bidir_forw_mv_table_base,      mv_table_size * 2 * sizeof(int16_t), fail)
1126         FF_ALLOCZ_OR_GOTO(s->avctx, s->b_bidir_back_mv_table_base,      mv_table_size * 2 * sizeof(int16_t), fail)
1127         FF_ALLOCZ_OR_GOTO(s->avctx, s->b_direct_mv_table_base,          mv_table_size * 2 * sizeof(int16_t), fail)
1128         s->p_mv_table            = s->p_mv_table_base + s->mb_stride + 1;
1129         s->b_forw_mv_table       = s->b_forw_mv_table_base + s->mb_stride + 1;
1130         s->b_back_mv_table       = s->b_back_mv_table_base + s->mb_stride + 1;
1131         s->b_bidir_forw_mv_table = s->b_bidir_forw_mv_table_base + s->mb_stride + 1;
1132         s->b_bidir_back_mv_table = s->b_bidir_back_mv_table_base + s->mb_stride + 1;
1133         s->b_direct_mv_table     = s->b_direct_mv_table_base + s->mb_stride + 1;
1134
1135         /* Allocate MB type table */
1136         FF_ALLOCZ_OR_GOTO(s->avctx, s->mb_type, mb_array_size * sizeof(uint16_t), fail) // needed for encoding
1137
1138         FF_ALLOCZ_OR_GOTO(s->avctx, s->lambda_table, mb_array_size * sizeof(int), fail)
1139
1140         FF_ALLOC_OR_GOTO(s->avctx, s->cplx_tab,
1141                          mb_array_size * sizeof(float), fail);
1142         FF_ALLOC_OR_GOTO(s->avctx, s->bits_tab,
1143                          mb_array_size * sizeof(float), fail);
1144
1145     }
1146
1147     if (s->codec_id == AV_CODEC_ID_MPEG4 ||
1148         (s->flags & CODEC_FLAG_INTERLACED_ME)) {
1149         /* interlaced direct mode decoding tables */
1150         for (i = 0; i < 2; i++) {
1151             int j, k;
1152             for (j = 0; j < 2; j++) {
1153                 for (k = 0; k < 2; k++) {
1154                     FF_ALLOCZ_OR_GOTO(s->avctx,
1155                                       s->b_field_mv_table_base[i][j][k],
1156                                       mv_table_size * 2 * sizeof(int16_t),
1157                                       fail);
1158                     s->b_field_mv_table[i][j][k] = s->b_field_mv_table_base[i][j][k] +
1159                                                    s->mb_stride + 1;
1160                 }
1161                 FF_ALLOCZ_OR_GOTO(s->avctx, s->b_field_select_table [i][j], mb_array_size * 2 * sizeof(uint8_t), fail)
1162                 FF_ALLOCZ_OR_GOTO(s->avctx, s->p_field_mv_table_base[i][j], mv_table_size * 2 * sizeof(int16_t), fail)
1163                 s->p_field_mv_table[i][j] = s->p_field_mv_table_base[i][j] + s->mb_stride + 1;
1164             }
1165             FF_ALLOCZ_OR_GOTO(s->avctx, s->p_field_select_table[i], mb_array_size * 2 * sizeof(uint8_t), fail)
1166         }
1167     }
1168     if (s->out_format == FMT_H263) {
1169         /* cbp values */
1170         FF_ALLOCZ_OR_GOTO(s->avctx, s->coded_block_base, y_size + (s->mb_height&1)*2*s->b8_stride, fail);
1171         s->coded_block = s->coded_block_base + s->b8_stride + 1;
1172
1173         /* cbp, ac_pred, pred_dir */
1174         FF_ALLOCZ_OR_GOTO(s->avctx, s->cbp_table     , mb_array_size * sizeof(uint8_t), fail);
1175         FF_ALLOCZ_OR_GOTO(s->avctx, s->pred_dir_table, mb_array_size * sizeof(uint8_t), fail);
1176     }
1177
1178     if (s->h263_pred || s->h263_plus || !s->encoding) {
1179         /* dc values */
1180         // MN: we need these for  error resilience of intra-frames
1181         FF_ALLOCZ_OR_GOTO(s->avctx, s->dc_val_base, yc_size * sizeof(int16_t), fail);
1182         s->dc_val[0] = s->dc_val_base + s->b8_stride + 1;
1183         s->dc_val[1] = s->dc_val_base + y_size + s->mb_stride + 1;
1184         s->dc_val[2] = s->dc_val[1] + c_size;
1185         for (i = 0; i < yc_size; i++)
1186             s->dc_val_base[i] = 1024;
1187     }
1188
1189     /* which mb is a intra block */
1190     FF_ALLOCZ_OR_GOTO(s->avctx, s->mbintra_table, mb_array_size, fail);
1191     memset(s->mbintra_table, 1, mb_array_size);
1192
1193     /* init macroblock skip table */
1194     FF_ALLOCZ_OR_GOTO(s->avctx, s->mbskip_table, mb_array_size + 2, fail);
1195     // Note the + 1 is for  a quicker mpeg4 slice_end detection
1196
1197     return init_er(s);
1198 fail:
1199     return AVERROR(ENOMEM);
1200 }
1201
1202 /**
1203  * init common structure for both encoder and decoder.
1204  * this assumes that some variables like width/height are already set
1205  */
1206 av_cold int ff_MPV_common_init(MpegEncContext *s)
1207 {
1208     int i;
1209     int nb_slices = (HAVE_THREADS &&
1210                      s->avctx->active_thread_type & FF_THREAD_SLICE) ?
1211                     s->avctx->thread_count : 1;
1212
1213     if (s->encoding && s->avctx->slices)
1214         nb_slices = s->avctx->slices;
1215
1216     if (s->codec_id == AV_CODEC_ID_MPEG2VIDEO && !s->progressive_sequence)
1217         s->mb_height = (s->height + 31) / 32 * 2;
1218     else
1219         s->mb_height = (s->height + 15) / 16;
1220
1221     if (s->avctx->pix_fmt == AV_PIX_FMT_NONE) {
1222         av_log(s->avctx, AV_LOG_ERROR,
1223                "decoding to AV_PIX_FMT_NONE is not supported.\n");
1224         return -1;
1225     }
1226
1227     if (nb_slices > MAX_THREADS || (nb_slices > s->mb_height && s->mb_height)) {
1228         int max_slices;
1229         if (s->mb_height)
1230             max_slices = FFMIN(MAX_THREADS, s->mb_height);
1231         else
1232             max_slices = MAX_THREADS;
1233         av_log(s->avctx, AV_LOG_WARNING, "too many threads/slices (%d),"
1234                " reducing to %d\n", nb_slices, max_slices);
1235         nb_slices = max_slices;
1236     }
1237
1238     if ((s->width || s->height) &&
1239         av_image_check_size(s->width, s->height, 0, s->avctx))
1240         return -1;
1241
1242     ff_dct_common_init(s);
1243
1244     s->flags  = s->avctx->flags;
1245     s->flags2 = s->avctx->flags2;
1246
1247     /* set chroma shifts */
1248     avcodec_get_chroma_sub_sample(s->avctx->pix_fmt,
1249                                   &s->chroma_x_shift,
1250                                   &s->chroma_y_shift);
1251
1252     /* convert fourcc to upper case */
1253     s->codec_tag          = avpriv_toupper4(s->avctx->codec_tag);
1254
1255     s->stream_codec_tag   = avpriv_toupper4(s->avctx->stream_codec_tag);
1256
1257     FF_ALLOCZ_OR_GOTO(s->avctx, s->picture,
1258                       MAX_PICTURE_COUNT * sizeof(Picture), fail);
1259     for (i = 0; i < MAX_PICTURE_COUNT; i++) {
1260         av_frame_unref(&s->picture[i].f);
1261     }
1262     memset(&s->next_picture, 0, sizeof(s->next_picture));
1263     memset(&s->last_picture, 0, sizeof(s->last_picture));
1264     memset(&s->current_picture, 0, sizeof(s->current_picture));
1265     av_frame_unref(&s->next_picture.f);
1266     av_frame_unref(&s->last_picture.f);
1267     av_frame_unref(&s->current_picture.f);
1268
1269         if (init_context_frame(s))
1270             goto fail;
1271
1272         s->parse_context.state = -1;
1273
1274         s->context_initialized = 1;
1275         s->thread_context[0]   = s;
1276
1277 //     if (s->width && s->height) {
1278         if (nb_slices > 1) {
1279             for (i = 1; i < nb_slices; i++) {
1280                 s->thread_context[i] = av_malloc(sizeof(MpegEncContext));
1281                 memcpy(s->thread_context[i], s, sizeof(MpegEncContext));
1282             }
1283
1284             for (i = 0; i < nb_slices; i++) {
1285                 if (init_duplicate_context(s->thread_context[i]) < 0)
1286                     goto fail;
1287                     s->thread_context[i]->start_mb_y =
1288                         (s->mb_height * (i) + nb_slices / 2) / nb_slices;
1289                     s->thread_context[i]->end_mb_y   =
1290                         (s->mb_height * (i + 1) + nb_slices / 2) / nb_slices;
1291             }
1292         } else {
1293             if (init_duplicate_context(s) < 0)
1294                 goto fail;
1295             s->start_mb_y = 0;
1296             s->end_mb_y   = s->mb_height;
1297         }
1298         s->slice_context_count = nb_slices;
1299 //     }
1300
1301     return 0;
1302  fail:
1303     ff_MPV_common_end(s);
1304     return -1;
1305 }
1306
1307 /**
1308  * Frees and resets MpegEncContext fields depending on the resolution.
1309  * Is used during resolution changes to avoid a full reinitialization of the
1310  * codec.
1311  */
1312 static int free_context_frame(MpegEncContext *s)
1313 {
1314     int i, j, k;
1315
1316     av_freep(&s->mb_type);
1317     av_freep(&s->p_mv_table_base);
1318     av_freep(&s->b_forw_mv_table_base);
1319     av_freep(&s->b_back_mv_table_base);
1320     av_freep(&s->b_bidir_forw_mv_table_base);
1321     av_freep(&s->b_bidir_back_mv_table_base);
1322     av_freep(&s->b_direct_mv_table_base);
1323     s->p_mv_table            = NULL;
1324     s->b_forw_mv_table       = NULL;
1325     s->b_back_mv_table       = NULL;
1326     s->b_bidir_forw_mv_table = NULL;
1327     s->b_bidir_back_mv_table = NULL;
1328     s->b_direct_mv_table     = NULL;
1329     for (i = 0; i < 2; i++) {
1330         for (j = 0; j < 2; j++) {
1331             for (k = 0; k < 2; k++) {
1332                 av_freep(&s->b_field_mv_table_base[i][j][k]);
1333                 s->b_field_mv_table[i][j][k] = NULL;
1334             }
1335             av_freep(&s->b_field_select_table[i][j]);
1336             av_freep(&s->p_field_mv_table_base[i][j]);
1337             s->p_field_mv_table[i][j] = NULL;
1338         }
1339         av_freep(&s->p_field_select_table[i]);
1340     }
1341
1342     av_freep(&s->dc_val_base);
1343     av_freep(&s->coded_block_base);
1344     av_freep(&s->mbintra_table);
1345     av_freep(&s->cbp_table);
1346     av_freep(&s->pred_dir_table);
1347
1348     av_freep(&s->mbskip_table);
1349
1350     av_freep(&s->er.error_status_table);
1351     av_freep(&s->er.er_temp_buffer);
1352     av_freep(&s->mb_index2xy);
1353     av_freep(&s->lambda_table);
1354
1355     av_freep(&s->cplx_tab);
1356     av_freep(&s->bits_tab);
1357
1358     s->linesize = s->uvlinesize = 0;
1359
1360     return 0;
1361 }
1362
1363 int ff_MPV_common_frame_size_change(MpegEncContext *s)
1364 {
1365     int i, err = 0;
1366
1367     if (s->slice_context_count > 1) {
1368         for (i = 0; i < s->slice_context_count; i++) {
1369             free_duplicate_context(s->thread_context[i]);
1370         }
1371         for (i = 1; i < s->slice_context_count; i++) {
1372             av_freep(&s->thread_context[i]);
1373         }
1374     } else
1375         free_duplicate_context(s);
1376
1377     if ((err = free_context_frame(s)) < 0)
1378         return err;
1379
1380     if (s->picture)
1381         for (i = 0; i < MAX_PICTURE_COUNT; i++) {
1382                 s->picture[i].needs_realloc = 1;
1383         }
1384
1385     s->last_picture_ptr         =
1386     s->next_picture_ptr         =
1387     s->current_picture_ptr      = NULL;
1388
1389     // init
1390     if (s->codec_id == AV_CODEC_ID_MPEG2VIDEO && !s->progressive_sequence)
1391         s->mb_height = (s->height + 31) / 32 * 2;
1392     else
1393         s->mb_height = (s->height + 15) / 16;
1394
1395     if ((s->width || s->height) &&
1396         av_image_check_size(s->width, s->height, 0, s->avctx))
1397         return AVERROR_INVALIDDATA;
1398
1399     if ((err = init_context_frame(s)))
1400         goto fail;
1401
1402     s->thread_context[0]   = s;
1403
1404     if (s->width && s->height) {
1405         int nb_slices = s->slice_context_count;
1406         if (nb_slices > 1) {
1407             for (i = 1; i < nb_slices; i++) {
1408                 s->thread_context[i] = av_malloc(sizeof(MpegEncContext));
1409                 memcpy(s->thread_context[i], s, sizeof(MpegEncContext));
1410             }
1411
1412             for (i = 0; i < nb_slices; i++) {
1413                 if (init_duplicate_context(s->thread_context[i]) < 0)
1414                     goto fail;
1415                     s->thread_context[i]->start_mb_y =
1416                         (s->mb_height * (i) + nb_slices / 2) / nb_slices;
1417                     s->thread_context[i]->end_mb_y   =
1418                         (s->mb_height * (i + 1) + nb_slices / 2) / nb_slices;
1419             }
1420         } else {
1421             err = init_duplicate_context(s);
1422             if (err < 0)
1423                 goto fail;
1424             s->start_mb_y = 0;
1425             s->end_mb_y   = s->mb_height;
1426         }
1427         s->slice_context_count = nb_slices;
1428     }
1429
1430     return 0;
1431  fail:
1432     ff_MPV_common_end(s);
1433     return err;
1434 }
1435
1436 /* init common structure for both encoder and decoder */
1437 void ff_MPV_common_end(MpegEncContext *s)
1438 {
1439     int i;
1440
1441     if (s->slice_context_count > 1) {
1442         for (i = 0; i < s->slice_context_count; i++) {
1443             free_duplicate_context(s->thread_context[i]);
1444         }
1445         for (i = 1; i < s->slice_context_count; i++) {
1446             av_freep(&s->thread_context[i]);
1447         }
1448         s->slice_context_count = 1;
1449     } else free_duplicate_context(s);
1450
1451     av_freep(&s->parse_context.buffer);
1452     s->parse_context.buffer_size = 0;
1453
1454     av_freep(&s->bitstream_buffer);
1455     s->allocated_bitstream_buffer_size = 0;
1456
1457     if (s->picture) {
1458         for (i = 0; i < MAX_PICTURE_COUNT; i++) {
1459             ff_free_picture_tables(&s->picture[i]);
1460             ff_mpeg_unref_picture(s, &s->picture[i]);
1461         }
1462     }
1463     av_freep(&s->picture);
1464     ff_free_picture_tables(&s->last_picture);
1465     ff_mpeg_unref_picture(s, &s->last_picture);
1466     ff_free_picture_tables(&s->current_picture);
1467     ff_mpeg_unref_picture(s, &s->current_picture);
1468     ff_free_picture_tables(&s->next_picture);
1469     ff_mpeg_unref_picture(s, &s->next_picture);
1470
1471     free_context_frame(s);
1472
1473     s->context_initialized      = 0;
1474     s->last_picture_ptr         =
1475     s->next_picture_ptr         =
1476     s->current_picture_ptr      = NULL;
1477     s->linesize = s->uvlinesize = 0;
1478 }
1479
1480 av_cold void ff_init_rl(RLTable *rl,
1481                         uint8_t static_store[2][2 * MAX_RUN + MAX_LEVEL + 3])
1482 {
1483     int8_t  max_level[MAX_RUN + 1], max_run[MAX_LEVEL + 1];
1484     uint8_t index_run[MAX_RUN + 1];
1485     int last, run, level, start, end, i;
1486
1487     /* If table is static, we can quit if rl->max_level[0] is not NULL */
1488     if (static_store && rl->max_level[0])
1489         return;
1490
1491     /* compute max_level[], max_run[] and index_run[] */
1492     for (last = 0; last < 2; last++) {
1493         if (last == 0) {
1494             start = 0;
1495             end = rl->last;
1496         } else {
1497             start = rl->last;
1498             end = rl->n;
1499         }
1500
1501         memset(max_level, 0, MAX_RUN + 1);
1502         memset(max_run, 0, MAX_LEVEL + 1);
1503         memset(index_run, rl->n, MAX_RUN + 1);
1504         for (i = start; i < end; i++) {
1505             run   = rl->table_run[i];
1506             level = rl->table_level[i];
1507             if (index_run[run] == rl->n)
1508                 index_run[run] = i;
1509             if (level > max_level[run])
1510                 max_level[run] = level;
1511             if (run > max_run[level])
1512                 max_run[level] = run;
1513         }
1514         if (static_store)
1515             rl->max_level[last] = static_store[last];
1516         else
1517             rl->max_level[last] = av_malloc(MAX_RUN + 1);
1518         memcpy(rl->max_level[last], max_level, MAX_RUN + 1);
1519         if (static_store)
1520             rl->max_run[last]   = static_store[last] + MAX_RUN + 1;
1521         else
1522             rl->max_run[last]   = av_malloc(MAX_LEVEL + 1);
1523         memcpy(rl->max_run[last], max_run, MAX_LEVEL + 1);
1524         if (static_store)
1525             rl->index_run[last] = static_store[last] + MAX_RUN + MAX_LEVEL + 2;
1526         else
1527             rl->index_run[last] = av_malloc(MAX_RUN + 1);
1528         memcpy(rl->index_run[last], index_run, MAX_RUN + 1);
1529     }
1530 }
1531
1532 av_cold void ff_init_vlc_rl(RLTable *rl)
1533 {
1534     int i, q;
1535
1536     for (q = 0; q < 32; q++) {
1537         int qmul = q * 2;
1538         int qadd = (q - 1) | 1;
1539
1540         if (q == 0) {
1541             qmul = 1;
1542             qadd = 0;
1543         }
1544         for (i = 0; i < rl->vlc.table_size; i++) {
1545             int code = rl->vlc.table[i][0];
1546             int len  = rl->vlc.table[i][1];
1547             int level, run;
1548
1549             if (len == 0) { // illegal code
1550                 run   = 66;
1551                 level = MAX_LEVEL;
1552             } else if (len < 0) { // more bits needed
1553                 run   = 0;
1554                 level = code;
1555             } else {
1556                 if (code == rl->n) { // esc
1557                     run   = 66;
1558                     level =  0;
1559                 } else {
1560                     run   = rl->table_run[code] + 1;
1561                     level = rl->table_level[code] * qmul + qadd;
1562                     if (code >= rl->last) run += 192;
1563                 }
1564             }
1565             rl->rl_vlc[q][i].len   = len;
1566             rl->rl_vlc[q][i].level = level;
1567             rl->rl_vlc[q][i].run   = run;
1568         }
1569     }
1570 }
1571
1572 static void release_unused_pictures(MpegEncContext *s)
1573 {
1574     int i;
1575
1576     /* release non reference frames */
1577     for (i = 0; i < MAX_PICTURE_COUNT; i++) {
1578         if (!s->picture[i].reference)
1579             ff_mpeg_unref_picture(s, &s->picture[i]);
1580     }
1581 }
1582
1583 static inline int pic_is_unused(MpegEncContext *s, Picture *pic)
1584 {
1585     if (pic == s->last_picture_ptr)
1586         return 0;
1587     if (pic->f.buf[0] == NULL)
1588         return 1;
1589     if (pic->needs_realloc && !(pic->reference & DELAYED_PIC_REF))
1590         return 1;
1591     return 0;
1592 }
1593
1594 static int find_unused_picture(MpegEncContext *s, int shared)
1595 {
1596     int i;
1597
1598     if (shared) {
1599         for (i = 0; i < MAX_PICTURE_COUNT; i++) {
1600             if (s->picture[i].f.buf[0] == NULL && &s->picture[i] != s->last_picture_ptr)
1601                 return i;
1602         }
1603     } else {
1604         for (i = 0; i < MAX_PICTURE_COUNT; i++) {
1605             if (pic_is_unused(s, &s->picture[i]))
1606                 return i;
1607         }
1608     }
1609
1610     av_log(s->avctx, AV_LOG_FATAL,
1611            "Internal error, picture buffer overflow\n");
1612     /* We could return -1, but the codec would crash trying to draw into a
1613      * non-existing frame anyway. This is safer than waiting for a random crash.
1614      * Also the return of this is never useful, an encoder must only allocate
1615      * as much as allowed in the specification. This has no relationship to how
1616      * much libavcodec could allocate (and MAX_PICTURE_COUNT is always large
1617      * enough for such valid streams).
1618      * Plus, a decoder has to check stream validity and remove frames if too
1619      * many reference frames are around. Waiting for "OOM" is not correct at
1620      * all. Similarly, missing reference frames have to be replaced by
1621      * interpolated/MC frames, anything else is a bug in the codec ...
1622      */
1623     abort();
1624     return -1;
1625 }
1626
1627 int ff_find_unused_picture(MpegEncContext *s, int shared)
1628 {
1629     int ret = find_unused_picture(s, shared);
1630
1631     if (ret >= 0 && ret < MAX_PICTURE_COUNT) {
1632         if (s->picture[ret].needs_realloc) {
1633             s->picture[ret].needs_realloc = 0;
1634             ff_free_picture_tables(&s->picture[ret]);
1635             ff_mpeg_unref_picture(s, &s->picture[ret]);
1636         }
1637     }
1638     return ret;
1639 }
1640
1641 /**
1642  * generic function called after decoding
1643  * the header and before a frame is decoded.
1644  */
1645 int ff_MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx)
1646 {
1647     int i, ret;
1648     Picture *pic;
1649     s->mb_skipped = 0;
1650
1651     if (!ff_thread_can_start_frame(avctx)) {
1652         av_log(avctx, AV_LOG_ERROR, "Attempt to start a frame outside SETUP state\n");
1653         return -1;
1654     }
1655
1656     /* mark & release old frames */
1657     if (s->pict_type != AV_PICTURE_TYPE_B && s->last_picture_ptr &&
1658         s->last_picture_ptr != s->next_picture_ptr &&
1659         s->last_picture_ptr->f.buf[0]) {
1660         ff_mpeg_unref_picture(s, s->last_picture_ptr);
1661     }
1662
1663     /* release forgotten pictures */
1664     /* if (mpeg124/h263) */
1665     for (i = 0; i < MAX_PICTURE_COUNT; i++) {
1666         if (&s->picture[i] != s->last_picture_ptr &&
1667             &s->picture[i] != s->next_picture_ptr &&
1668             s->picture[i].reference && !s->picture[i].needs_realloc) {
1669             if (!(avctx->active_thread_type & FF_THREAD_FRAME))
1670                 av_log(avctx, AV_LOG_ERROR,
1671                        "releasing zombie picture\n");
1672             ff_mpeg_unref_picture(s, &s->picture[i]);
1673         }
1674     }
1675
1676     ff_mpeg_unref_picture(s, &s->current_picture);
1677
1678     release_unused_pictures(s);
1679
1680     if (s->current_picture_ptr &&
1681         s->current_picture_ptr->f.buf[0] == NULL) {
1682         // we already have a unused image
1683         // (maybe it was set before reading the header)
1684         pic = s->current_picture_ptr;
1685     } else {
1686         i   = ff_find_unused_picture(s, 0);
1687         if (i < 0) {
1688             av_log(s->avctx, AV_LOG_ERROR, "no frame buffer available\n");
1689             return i;
1690         }
1691         pic = &s->picture[i];
1692     }
1693
1694     pic->reference = 0;
1695     if (!s->droppable) {
1696         if (s->pict_type != AV_PICTURE_TYPE_B)
1697             pic->reference = 3;
1698     }
1699
1700     pic->f.coded_picture_number = s->coded_picture_number++;
1701
1702     if (ff_alloc_picture(s, pic, 0) < 0)
1703         return -1;
1704
1705     s->current_picture_ptr = pic;
1706     // FIXME use only the vars from current_pic
1707     s->current_picture_ptr->f.top_field_first = s->top_field_first;
1708     if (s->codec_id == AV_CODEC_ID_MPEG1VIDEO ||
1709         s->codec_id == AV_CODEC_ID_MPEG2VIDEO) {
1710         if (s->picture_structure != PICT_FRAME)
1711             s->current_picture_ptr->f.top_field_first =
1712                 (s->picture_structure == PICT_TOP_FIELD) == s->first_field;
1713     }
1714     s->current_picture_ptr->f.interlaced_frame = !s->progressive_frame &&
1715                                                  !s->progressive_sequence;
1716     s->current_picture_ptr->field_picture      =  s->picture_structure != PICT_FRAME;
1717
1718     s->current_picture_ptr->f.pict_type = s->pict_type;
1719     // if (s->flags && CODEC_FLAG_QSCALE)
1720     //     s->current_picture_ptr->quality = s->new_picture_ptr->quality;
1721     s->current_picture_ptr->f.key_frame = s->pict_type == AV_PICTURE_TYPE_I;
1722
1723     if ((ret = ff_mpeg_ref_picture(s, &s->current_picture,
1724                                    s->current_picture_ptr)) < 0)
1725         return ret;
1726
1727     if (s->pict_type != AV_PICTURE_TYPE_B) {
1728         s->last_picture_ptr = s->next_picture_ptr;
1729         if (!s->droppable)
1730             s->next_picture_ptr = s->current_picture_ptr;
1731     }
1732     av_dlog(s->avctx, "L%p N%p C%p L%p N%p C%p type:%d drop:%d\n",
1733             s->last_picture_ptr, s->next_picture_ptr,s->current_picture_ptr,
1734             s->last_picture_ptr    ? s->last_picture_ptr->f.data[0]    : NULL,
1735             s->next_picture_ptr    ? s->next_picture_ptr->f.data[0]    : NULL,
1736             s->current_picture_ptr ? s->current_picture_ptr->f.data[0] : NULL,
1737             s->pict_type, s->droppable);
1738
1739     if ((s->last_picture_ptr == NULL ||
1740          s->last_picture_ptr->f.buf[0] == NULL) &&
1741         (s->pict_type != AV_PICTURE_TYPE_I ||
1742          s->picture_structure != PICT_FRAME)) {
1743         int h_chroma_shift, v_chroma_shift;
1744         av_pix_fmt_get_chroma_sub_sample(s->avctx->pix_fmt,
1745                                          &h_chroma_shift, &v_chroma_shift);
1746         if (s->pict_type == AV_PICTURE_TYPE_B && s->next_picture_ptr && s->next_picture_ptr->f.buf[0])
1747             av_log(avctx, AV_LOG_DEBUG,
1748                    "allocating dummy last picture for B frame\n");
1749         else if (s->pict_type != AV_PICTURE_TYPE_I)
1750             av_log(avctx, AV_LOG_ERROR,
1751                    "warning: first frame is no keyframe\n");
1752         else if (s->picture_structure != PICT_FRAME)
1753             av_log(avctx, AV_LOG_DEBUG,
1754                    "allocate dummy last picture for field based first keyframe\n");
1755
1756         /* Allocate a dummy frame */
1757         i = ff_find_unused_picture(s, 0);
1758         if (i < 0) {
1759             av_log(s->avctx, AV_LOG_ERROR, "no frame buffer available\n");
1760             return i;
1761         }
1762         s->last_picture_ptr = &s->picture[i];
1763
1764         s->last_picture_ptr->reference   = 3;
1765         s->last_picture_ptr->f.key_frame = 0;
1766         s->last_picture_ptr->f.pict_type = AV_PICTURE_TYPE_P;
1767
1768         if (ff_alloc_picture(s, s->last_picture_ptr, 0) < 0) {
1769             s->last_picture_ptr = NULL;
1770             return -1;
1771         }
1772
1773         if (!avctx->hwaccel) {
1774             for(i=0; i<avctx->height; i++)
1775                 memset(s->last_picture_ptr->f.data[0] + s->last_picture_ptr->f.linesize[0]*i,
1776                        0x80, avctx->width);
1777             for(i=0; i<FF_CEIL_RSHIFT(avctx->height, v_chroma_shift); i++) {
1778                 memset(s->last_picture_ptr->f.data[1] + s->last_picture_ptr->f.linesize[1]*i,
1779                        0x80, FF_CEIL_RSHIFT(avctx->width, h_chroma_shift));
1780                 memset(s->last_picture_ptr->f.data[2] + s->last_picture_ptr->f.linesize[2]*i,
1781                        0x80, FF_CEIL_RSHIFT(avctx->width, h_chroma_shift));
1782             }
1783
1784             if(s->codec_id == AV_CODEC_ID_FLV1 || s->codec_id == AV_CODEC_ID_H263){
1785                 for(i=0; i<avctx->height; i++)
1786                 memset(s->last_picture_ptr->f.data[0] + s->last_picture_ptr->f.linesize[0]*i, 16, avctx->width);
1787             }
1788         }
1789
1790         ff_thread_report_progress(&s->last_picture_ptr->tf, INT_MAX, 0);
1791         ff_thread_report_progress(&s->last_picture_ptr->tf, INT_MAX, 1);
1792     }
1793     if ((s->next_picture_ptr == NULL ||
1794          s->next_picture_ptr->f.buf[0] == NULL) &&
1795         s->pict_type == AV_PICTURE_TYPE_B) {
1796         /* Allocate a dummy frame */
1797         i = ff_find_unused_picture(s, 0);
1798         if (i < 0) {
1799             av_log(s->avctx, AV_LOG_ERROR, "no frame buffer available\n");
1800             return i;
1801         }
1802         s->next_picture_ptr = &s->picture[i];
1803
1804         s->next_picture_ptr->reference   = 3;
1805         s->next_picture_ptr->f.key_frame = 0;
1806         s->next_picture_ptr->f.pict_type = AV_PICTURE_TYPE_P;
1807
1808         if (ff_alloc_picture(s, s->next_picture_ptr, 0) < 0) {
1809             s->next_picture_ptr = NULL;
1810             return -1;
1811         }
1812         ff_thread_report_progress(&s->next_picture_ptr->tf, INT_MAX, 0);
1813         ff_thread_report_progress(&s->next_picture_ptr->tf, INT_MAX, 1);
1814     }
1815
1816 #if 0 // BUFREF-FIXME
1817     memset(s->last_picture.f.data, 0, sizeof(s->last_picture.f.data));
1818     memset(s->next_picture.f.data, 0, sizeof(s->next_picture.f.data));
1819 #endif
1820     if (s->last_picture_ptr) {
1821         ff_mpeg_unref_picture(s, &s->last_picture);
1822         if (s->last_picture_ptr->f.buf[0] &&
1823             (ret = ff_mpeg_ref_picture(s, &s->last_picture,
1824                                        s->last_picture_ptr)) < 0)
1825             return ret;
1826     }
1827     if (s->next_picture_ptr) {
1828         ff_mpeg_unref_picture(s, &s->next_picture);
1829         if (s->next_picture_ptr->f.buf[0] &&
1830             (ret = ff_mpeg_ref_picture(s, &s->next_picture,
1831                                        s->next_picture_ptr)) < 0)
1832             return ret;
1833     }
1834
1835     av_assert0(s->pict_type == AV_PICTURE_TYPE_I || (s->last_picture_ptr &&
1836                                                  s->last_picture_ptr->f.buf[0]));
1837
1838     if (s->picture_structure!= PICT_FRAME) {
1839         int i;
1840         for (i = 0; i < 4; i++) {
1841             if (s->picture_structure == PICT_BOTTOM_FIELD) {
1842                 s->current_picture.f.data[i] +=
1843                     s->current_picture.f.linesize[i];
1844             }
1845             s->current_picture.f.linesize[i] *= 2;
1846             s->last_picture.f.linesize[i]    *= 2;
1847             s->next_picture.f.linesize[i]    *= 2;
1848         }
1849     }
1850
1851     s->err_recognition = avctx->err_recognition;
1852
1853     /* set dequantizer, we can't do it during init as
1854      * it might change for mpeg4 and we can't do it in the header
1855      * decode as init is not called for mpeg4 there yet */
1856     if (s->mpeg_quant || s->codec_id == AV_CODEC_ID_MPEG2VIDEO) {
1857         s->dct_unquantize_intra = s->dct_unquantize_mpeg2_intra;
1858         s->dct_unquantize_inter = s->dct_unquantize_mpeg2_inter;
1859     } else if (s->out_format == FMT_H263 || s->out_format == FMT_H261) {
1860         s->dct_unquantize_intra = s->dct_unquantize_h263_intra;
1861         s->dct_unquantize_inter = s->dct_unquantize_h263_inter;
1862     } else {
1863         s->dct_unquantize_intra = s->dct_unquantize_mpeg1_intra;
1864         s->dct_unquantize_inter = s->dct_unquantize_mpeg1_inter;
1865     }
1866
1867     return 0;
1868 }
1869
1870 /* called after a frame has been decoded. */
1871 void ff_MPV_frame_end(MpegEncContext *s)
1872 {
1873     emms_c();
1874
1875     if (s->current_picture.reference)
1876         ff_thread_report_progress(&s->current_picture_ptr->tf, INT_MAX, 0);
1877 }
1878
1879 /**
1880  * Draw a line from (ex, ey) -> (sx, sy).
1881  * @param w width of the image
1882  * @param h height of the image
1883  * @param stride stride/linesize of the image
1884  * @param color color of the arrow
1885  */
1886 static void draw_line(uint8_t *buf, int sx, int sy, int ex, int ey,
1887                       int w, int h, int stride, int color)
1888 {
1889     int x, y, fr, f;
1890
1891     sx = av_clip(sx, 0, w - 1);
1892     sy = av_clip(sy, 0, h - 1);
1893     ex = av_clip(ex, 0, w - 1);
1894     ey = av_clip(ey, 0, h - 1);
1895
1896     buf[sy * stride + sx] += color;
1897
1898     if (FFABS(ex - sx) > FFABS(ey - sy)) {
1899         if (sx > ex) {
1900             FFSWAP(int, sx, ex);
1901             FFSWAP(int, sy, ey);
1902         }
1903         buf += sx + sy * stride;
1904         ex  -= sx;
1905         f    = ((ey - sy) << 16) / ex;
1906         for (x = 0; x <= ex; x++) {
1907             y  = (x * f) >> 16;
1908             fr = (x * f) & 0xFFFF;
1909             buf[y * stride + x]       += (color * (0x10000 - fr)) >> 16;
1910             if(fr) buf[(y + 1) * stride + x] += (color *            fr ) >> 16;
1911         }
1912     } else {
1913         if (sy > ey) {
1914             FFSWAP(int, sx, ex);
1915             FFSWAP(int, sy, ey);
1916         }
1917         buf += sx + sy * stride;
1918         ey  -= sy;
1919         if (ey)
1920             f = ((ex - sx) << 16) / ey;
1921         else
1922             f = 0;
1923         for(y= 0; y <= ey; y++){
1924             x  = (y*f) >> 16;
1925             fr = (y*f) & 0xFFFF;
1926             buf[y * stride + x]     += (color * (0x10000 - fr)) >> 16;
1927             if(fr) buf[y * stride + x + 1] += (color *            fr ) >> 16;
1928         }
1929     }
1930 }
1931
1932 /**
1933  * Draw an arrow from (ex, ey) -> (sx, sy).
1934  * @param w width of the image
1935  * @param h height of the image
1936  * @param stride stride/linesize of the image
1937  * @param color color of the arrow
1938  */
1939 static void draw_arrow(uint8_t *buf, int sx, int sy, int ex,
1940                        int ey, int w, int h, int stride, int color)
1941 {
1942     int dx,dy;
1943
1944     sx = av_clip(sx, -100, w + 100);
1945     sy = av_clip(sy, -100, h + 100);
1946     ex = av_clip(ex, -100, w + 100);
1947     ey = av_clip(ey, -100, h + 100);
1948
1949     dx = ex - sx;
1950     dy = ey - sy;
1951
1952     if (dx * dx + dy * dy > 3 * 3) {
1953         int rx =  dx + dy;
1954         int ry = -dx + dy;
1955         int length = ff_sqrt((rx * rx + ry * ry) << 8);
1956
1957         // FIXME subpixel accuracy
1958         rx = ROUNDED_DIV(rx * 3 << 4, length);
1959         ry = ROUNDED_DIV(ry * 3 << 4, length);
1960
1961         draw_line(buf, sx, sy, sx + rx, sy + ry, w, h, stride, color);
1962         draw_line(buf, sx, sy, sx - ry, sy + rx, w, h, stride, color);
1963     }
1964     draw_line(buf, sx, sy, ex, ey, w, h, stride, color);
1965 }
1966
1967 /**
1968  * Print debugging info for the given picture.
1969  */
1970 void ff_print_debug_info2(AVCodecContext *avctx, Picture *p, AVFrame *pict, uint8_t *mbskip_table,
1971                          int *low_delay,
1972                          int mb_width, int mb_height, int mb_stride, int quarter_sample)
1973 {
1974     if (avctx->hwaccel || !p || !p->mb_type
1975         || (avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU))
1976         return;
1977
1978
1979     if (avctx->debug & (FF_DEBUG_SKIP | FF_DEBUG_QP | FF_DEBUG_MB_TYPE)) {
1980         int x,y;
1981
1982         av_log(avctx, AV_LOG_DEBUG, "New frame, type: %c\n",
1983                av_get_picture_type_char(pict->pict_type));
1984         for (y = 0; y < mb_height; y++) {
1985             for (x = 0; x < mb_width; x++) {
1986                 if (avctx->debug & FF_DEBUG_SKIP) {
1987                     int count = mbskip_table[x + y * mb_stride];
1988                     if (count > 9)
1989                         count = 9;
1990                     av_log(avctx, AV_LOG_DEBUG, "%1d", count);
1991                 }
1992                 if (avctx->debug & FF_DEBUG_QP) {
1993                     av_log(avctx, AV_LOG_DEBUG, "%2d",
1994                            p->qscale_table[x + y * mb_stride]);
1995                 }
1996                 if (avctx->debug & FF_DEBUG_MB_TYPE) {
1997                     int mb_type = p->mb_type[x + y * mb_stride];
1998                     // Type & MV direction
1999                     if (IS_PCM(mb_type))
2000                         av_log(avctx, AV_LOG_DEBUG, "P");
2001                     else if (IS_INTRA(mb_type) && IS_ACPRED(mb_type))
2002                         av_log(avctx, AV_LOG_DEBUG, "A");
2003                     else if (IS_INTRA4x4(mb_type))
2004                         av_log(avctx, AV_LOG_DEBUG, "i");
2005                     else if (IS_INTRA16x16(mb_type))
2006                         av_log(avctx, AV_LOG_DEBUG, "I");
2007                     else if (IS_DIRECT(mb_type) && IS_SKIP(mb_type))
2008                         av_log(avctx, AV_LOG_DEBUG, "d");
2009                     else if (IS_DIRECT(mb_type))
2010                         av_log(avctx, AV_LOG_DEBUG, "D");
2011                     else if (IS_GMC(mb_type) && IS_SKIP(mb_type))
2012                         av_log(avctx, AV_LOG_DEBUG, "g");
2013                     else if (IS_GMC(mb_type))
2014                         av_log(avctx, AV_LOG_DEBUG, "G");
2015                     else if (IS_SKIP(mb_type))
2016                         av_log(avctx, AV_LOG_DEBUG, "S");
2017                     else if (!USES_LIST(mb_type, 1))
2018                         av_log(avctx, AV_LOG_DEBUG, ">");
2019                     else if (!USES_LIST(mb_type, 0))
2020                         av_log(avctx, AV_LOG_DEBUG, "<");
2021                     else {
2022                         av_assert2(USES_LIST(mb_type, 0) && USES_LIST(mb_type, 1));
2023                         av_log(avctx, AV_LOG_DEBUG, "X");
2024                     }
2025
2026                     // segmentation
2027                     if (IS_8X8(mb_type))
2028                         av_log(avctx, AV_LOG_DEBUG, "+");
2029                     else if (IS_16X8(mb_type))
2030                         av_log(avctx, AV_LOG_DEBUG, "-");
2031                     else if (IS_8X16(mb_type))
2032                         av_log(avctx, AV_LOG_DEBUG, "|");
2033                     else if (IS_INTRA(mb_type) || IS_16X16(mb_type))
2034                         av_log(avctx, AV_LOG_DEBUG, " ");
2035                     else
2036                         av_log(avctx, AV_LOG_DEBUG, "?");
2037
2038
2039                     if (IS_INTERLACED(mb_type))
2040                         av_log(avctx, AV_LOG_DEBUG, "=");
2041                     else
2042                         av_log(avctx, AV_LOG_DEBUG, " ");
2043                 }
2044             }
2045             av_log(avctx, AV_LOG_DEBUG, "\n");
2046         }
2047     }
2048
2049     if ((avctx->debug & (FF_DEBUG_VIS_QP | FF_DEBUG_VIS_MB_TYPE)) ||
2050         (avctx->debug_mv)) {
2051         const int shift = 1 + quarter_sample;
2052         int mb_y;
2053         uint8_t *ptr;
2054         int i;
2055         int h_chroma_shift, v_chroma_shift, block_height;
2056         const int width          = avctx->width;
2057         const int height         = avctx->height;
2058         const int mv_sample_log2 = avctx->codec_id == AV_CODEC_ID_H264 || avctx->codec_id == AV_CODEC_ID_SVQ3 ? 2 : 1;
2059         const int mv_stride      = (mb_width << mv_sample_log2) +
2060                                    (avctx->codec->id == AV_CODEC_ID_H264 ? 0 : 1);
2061
2062         *low_delay = 0; // needed to see the vectors without trashing the buffers
2063
2064         avcodec_get_chroma_sub_sample(avctx->pix_fmt, &h_chroma_shift, &v_chroma_shift);
2065
2066         av_frame_make_writable(pict);
2067
2068         pict->opaque = NULL;
2069         ptr          = pict->data[0];
2070         block_height = 16 >> v_chroma_shift;
2071
2072         for (mb_y = 0; mb_y < mb_height; mb_y++) {
2073             int mb_x;
2074             for (mb_x = 0; mb_x < mb_width; mb_x++) {
2075                 const int mb_index = mb_x + mb_y * mb_stride;
2076                 if ((avctx->debug_mv) && p->motion_val[0]) {
2077                     int type;
2078                     for (type = 0; type < 3; type++) {
2079                         int direction = 0;
2080                         switch (type) {
2081                         case 0:
2082                             if ((!(avctx->debug_mv & FF_DEBUG_VIS_MV_P_FOR)) ||
2083                                 (pict->pict_type!= AV_PICTURE_TYPE_P))
2084                                 continue;
2085                             direction = 0;
2086                             break;
2087                         case 1:
2088                             if ((!(avctx->debug_mv & FF_DEBUG_VIS_MV_B_FOR)) ||
2089                                 (pict->pict_type!= AV_PICTURE_TYPE_B))
2090                                 continue;
2091                             direction = 0;
2092                             break;
2093                         case 2:
2094                             if ((!(avctx->debug_mv & FF_DEBUG_VIS_MV_B_BACK)) ||
2095                                 (pict->pict_type!= AV_PICTURE_TYPE_B))
2096                                 continue;
2097                             direction = 1;
2098                             break;
2099                         }
2100                         if (!USES_LIST(p->mb_type[mb_index], direction))
2101                             continue;
2102
2103                         if (IS_8X8(p->mb_type[mb_index])) {
2104                             int i;
2105                             for (i = 0; i < 4; i++) {
2106                                 int sx = mb_x * 16 + 4 + 8 * (i & 1);
2107                                 int sy = mb_y * 16 + 4 + 8 * (i >> 1);
2108                                 int xy = (mb_x * 2 + (i & 1) +
2109                                           (mb_y * 2 + (i >> 1)) * mv_stride) << (mv_sample_log2 - 1);
2110                                 int mx = (p->motion_val[direction][xy][0] >> shift) + sx;
2111                                 int my = (p->motion_val[direction][xy][1] >> shift) + sy;
2112                                 draw_arrow(ptr, sx, sy, mx, my, width,
2113                                            height, pict->linesize[0], 100);
2114                             }
2115                         } else if (IS_16X8(p->mb_type[mb_index])) {
2116                             int i;
2117                             for (i = 0; i < 2; i++) {
2118                                 int sx = mb_x * 16 + 8;
2119                                 int sy = mb_y * 16 + 4 + 8 * i;
2120                                 int xy = (mb_x * 2 + (mb_y * 2 + i) * mv_stride) << (mv_sample_log2 - 1);
2121                                 int mx = (p->motion_val[direction][xy][0] >> shift);
2122                                 int my = (p->motion_val[direction][xy][1] >> shift);
2123
2124                                 if (IS_INTERLACED(p->mb_type[mb_index]))
2125                                     my *= 2;
2126
2127                             draw_arrow(ptr, sx, sy, mx + sx, my + sy, width,
2128                                        height, pict->linesize[0], 100);
2129                             }
2130                         } else if (IS_8X16(p->mb_type[mb_index])) {
2131                             int i;
2132                             for (i = 0; i < 2; i++) {
2133                                 int sx = mb_x * 16 + 4 + 8 * i;
2134                                 int sy = mb_y * 16 + 8;
2135                                 int xy = (mb_x * 2 + i + mb_y * 2 * mv_stride) << (mv_sample_log2 - 1);
2136                                 int mx = p->motion_val[direction][xy][0] >> shift;
2137                                 int my = p->motion_val[direction][xy][1] >> shift;
2138
2139                                 if (IS_INTERLACED(p->mb_type[mb_index]))
2140                                     my *= 2;
2141
2142                                 draw_arrow(ptr, sx, sy, mx + sx, my + sy, width,
2143                                            height, pict->linesize[0], 100);
2144                             }
2145                         } else {
2146                               int sx= mb_x * 16 + 8;
2147                               int sy= mb_y * 16 + 8;
2148                               int xy= (mb_x + mb_y * mv_stride) << mv_sample_log2;
2149                               int mx= (p->motion_val[direction][xy][0]>>shift) + sx;
2150                               int my= (p->motion_val[direction][xy][1]>>shift) + sy;
2151                               draw_arrow(ptr, sx, sy, mx, my, width, height, pict->linesize[0], 100);
2152                         }
2153                     }
2154                 }
2155                 if ((avctx->debug & FF_DEBUG_VIS_QP)) {
2156                     uint64_t c = (p->qscale_table[mb_index] * 128 / 31) *
2157                                  0x0101010101010101ULL;
2158                     int y;
2159                     for (y = 0; y < block_height; y++) {
2160                         *(uint64_t *)(pict->data[1] + 8 * mb_x +
2161                                       (block_height * mb_y + y) *
2162                                       pict->linesize[1]) = c;
2163                         *(uint64_t *)(pict->data[2] + 8 * mb_x +
2164                                       (block_height * mb_y + y) *
2165                                       pict->linesize[2]) = c;
2166                     }
2167                 }
2168                 if ((avctx->debug & FF_DEBUG_VIS_MB_TYPE) &&
2169                     p->motion_val[0]) {
2170                     int mb_type = p->mb_type[mb_index];
2171                     uint64_t u,v;
2172                     int y;
2173 #define COLOR(theta, r) \
2174     u = (int)(128 + r * cos(theta * 3.141592 / 180)); \
2175     v = (int)(128 + r * sin(theta * 3.141592 / 180));
2176
2177
2178                     u = v = 128;
2179                     if (IS_PCM(mb_type)) {
2180                         COLOR(120, 48)
2181                     } else if ((IS_INTRA(mb_type) && IS_ACPRED(mb_type)) ||
2182                                IS_INTRA16x16(mb_type)) {
2183                         COLOR(30, 48)
2184                     } else if (IS_INTRA4x4(mb_type)) {
2185                         COLOR(90, 48)
2186                     } else if (IS_DIRECT(mb_type) && IS_SKIP(mb_type)) {
2187                         // COLOR(120, 48)
2188                     } else if (IS_DIRECT(mb_type)) {
2189                         COLOR(150, 48)
2190                     } else if (IS_GMC(mb_type) && IS_SKIP(mb_type)) {
2191                         COLOR(170, 48)
2192                     } else if (IS_GMC(mb_type)) {
2193                         COLOR(190, 48)
2194                     } else if (IS_SKIP(mb_type)) {
2195                         // COLOR(180, 48)
2196                     } else if (!USES_LIST(mb_type, 1)) {
2197                         COLOR(240, 48)
2198                     } else if (!USES_LIST(mb_type, 0)) {
2199                         COLOR(0, 48)
2200                     } else {
2201                         av_assert2(USES_LIST(mb_type, 0) && USES_LIST(mb_type, 1));
2202                         COLOR(300,48)
2203                     }
2204
2205                     u *= 0x0101010101010101ULL;
2206                     v *= 0x0101010101010101ULL;
2207                     for (y = 0; y < block_height; y++) {
2208                         *(uint64_t *)(pict->data[1] + 8 * mb_x +
2209                                       (block_height * mb_y + y) * pict->linesize[1]) = u;
2210                         *(uint64_t *)(pict->data[2] + 8 * mb_x +
2211                                       (block_height * mb_y + y) * pict->linesize[2]) = v;
2212                     }
2213
2214                     // segmentation
2215                     if (IS_8X8(mb_type) || IS_16X8(mb_type)) {
2216                         *(uint64_t *)(pict->data[0] + 16 * mb_x + 0 +
2217                                       (16 * mb_y + 8) * pict->linesize[0]) ^= 0x8080808080808080ULL;
2218                         *(uint64_t *)(pict->data[0] + 16 * mb_x + 8 +
2219                                       (16 * mb_y + 8) * pict->linesize[0]) ^= 0x8080808080808080ULL;
2220                     }
2221                     if (IS_8X8(mb_type) || IS_8X16(mb_type)) {
2222                         for (y = 0; y < 16; y++)
2223                             pict->data[0][16 * mb_x + 8 + (16 * mb_y + y) *
2224                                           pict->linesize[0]] ^= 0x80;
2225                     }
2226                     if (IS_8X8(mb_type) && mv_sample_log2 >= 2) {
2227                         int dm = 1 << (mv_sample_log2 - 2);
2228                         for (i = 0; i < 4; i++) {
2229                             int sx = mb_x * 16 + 8 * (i & 1);
2230                             int sy = mb_y * 16 + 8 * (i >> 1);
2231                             int xy = (mb_x * 2 + (i & 1) +
2232                                      (mb_y * 2 + (i >> 1)) * mv_stride) << (mv_sample_log2 - 1);
2233                             // FIXME bidir
2234                             int32_t *mv = (int32_t *) &p->motion_val[0][xy];
2235                             if (mv[0] != mv[dm] ||
2236                                 mv[dm * mv_stride] != mv[dm * (mv_stride + 1)])
2237                                 for (y = 0; y < 8; y++)
2238                                     pict->data[0][sx + 4 + (sy + y) * pict->linesize[0]] ^= 0x80;
2239                             if (mv[0] != mv[dm * mv_stride] || mv[dm] != mv[dm * (mv_stride + 1)])
2240                                 *(uint64_t *)(pict->data[0] + sx + (sy + 4) *
2241                                               pict->linesize[0]) ^= 0x8080808080808080ULL;
2242                         }
2243                     }
2244
2245                     if (IS_INTERLACED(mb_type) &&
2246                         avctx->codec->id == AV_CODEC_ID_H264) {
2247                         // hmm
2248                     }
2249                 }
2250                 mbskip_table[mb_index] = 0;
2251             }
2252         }
2253     }
2254 }
2255
2256 void ff_print_debug_info(MpegEncContext *s, Picture *p, AVFrame *pict)
2257 {
2258     ff_print_debug_info2(s->avctx, p, pict, s->mbskip_table, &s->low_delay,
2259                          s->mb_width, s->mb_height, s->mb_stride, s->quarter_sample);
2260 }
2261
2262 int ff_mpv_export_qp_table(MpegEncContext *s, AVFrame *f, Picture *p, int qp_type)
2263 {
2264     AVBufferRef *ref = av_buffer_ref(p->qscale_table_buf);
2265     int offset = 2*s->mb_stride + 1;
2266     if(!ref)
2267         return AVERROR(ENOMEM);
2268     av_assert0(ref->size >= offset + s->mb_stride * ((f->height+15)/16));
2269     ref->size -= offset;
2270     ref->data += offset;
2271     return av_frame_set_qp_table(f, ref, s->mb_stride, qp_type);
2272 }
2273
2274 static inline int hpel_motion_lowres(MpegEncContext *s,
2275                                      uint8_t *dest, uint8_t *src,
2276                                      int field_based, int field_select,
2277                                      int src_x, int src_y,
2278                                      int width, int height, ptrdiff_t stride,
2279                                      int h_edge_pos, int v_edge_pos,
2280                                      int w, int h, h264_chroma_mc_func *pix_op,
2281                                      int motion_x, int motion_y)
2282 {
2283     const int lowres   = s->avctx->lowres;
2284     const int op_index = FFMIN(lowres, 3);
2285     const int s_mask   = (2 << lowres) - 1;
2286     int emu = 0;
2287     int sx, sy;
2288
2289     if (s->quarter_sample) {
2290         motion_x /= 2;
2291         motion_y /= 2;
2292     }
2293
2294     sx = motion_x & s_mask;
2295     sy = motion_y & s_mask;
2296     src_x += motion_x >> lowres + 1;
2297     src_y += motion_y >> lowres + 1;
2298
2299     src   += src_y * stride + src_x;
2300
2301     if ((unsigned)src_x > FFMAX( h_edge_pos - (!!sx) - w,                 0) ||
2302         (unsigned)src_y > FFMAX((v_edge_pos >> field_based) - (!!sy) - h, 0)) {
2303         s->vdsp.emulated_edge_mc(s->edge_emu_buffer, src,
2304                                  s->linesize, s->linesize,
2305                                  w + 1, (h + 1) << field_based,
2306                                  src_x, src_y   << field_based,
2307                                  h_edge_pos, v_edge_pos);
2308         src = s->edge_emu_buffer;
2309         emu = 1;
2310     }
2311
2312     sx = (sx << 2) >> lowres;
2313     sy = (sy << 2) >> lowres;
2314     if (field_select)
2315         src += s->linesize;
2316     pix_op[op_index](dest, src, stride, h, sx, sy);
2317     return emu;
2318 }
2319
2320 /* apply one mpeg motion vector to the three components */
2321 static av_always_inline void mpeg_motion_lowres(MpegEncContext *s,
2322                                                 uint8_t *dest_y,
2323                                                 uint8_t *dest_cb,
2324                                                 uint8_t *dest_cr,
2325                                                 int field_based,
2326                                                 int bottom_field,
2327                                                 int field_select,
2328                                                 uint8_t **ref_picture,
2329                                                 h264_chroma_mc_func *pix_op,
2330                                                 int motion_x, int motion_y,
2331                                                 int h, int mb_y)
2332 {
2333     uint8_t *ptr_y, *ptr_cb, *ptr_cr;
2334     int mx, my, src_x, src_y, uvsrc_x, uvsrc_y, sx, sy, uvsx, uvsy;
2335     ptrdiff_t uvlinesize, linesize;
2336     const int lowres     = s->avctx->lowres;
2337     const int op_index   = FFMIN(lowres-1+s->chroma_x_shift, 3);
2338     const int block_s    = 8>>lowres;
2339     const int s_mask     = (2 << lowres) - 1;
2340     const int h_edge_pos = s->h_edge_pos >> lowres;
2341     const int v_edge_pos = s->v_edge_pos >> lowres;
2342     linesize   = s->current_picture.f.linesize[0] << field_based;
2343     uvlinesize = s->current_picture.f.linesize[1] << field_based;
2344
2345     // FIXME obviously not perfect but qpel will not work in lowres anyway
2346     if (s->quarter_sample) {
2347         motion_x /= 2;
2348         motion_y /= 2;
2349     }
2350
2351     if(field_based){
2352         motion_y += (bottom_field - field_select)*((1 << lowres)-1);
2353     }
2354
2355     sx = motion_x & s_mask;
2356     sy = motion_y & s_mask;
2357     src_x = s->mb_x * 2 * block_s + (motion_x >> lowres + 1);
2358     src_y = (mb_y * 2 * block_s >> field_based) + (motion_y >> lowres + 1);
2359
2360     if (s->out_format == FMT_H263) {
2361         uvsx    = ((motion_x >> 1) & s_mask) | (sx & 1);
2362         uvsy    = ((motion_y >> 1) & s_mask) | (sy & 1);
2363         uvsrc_x = src_x >> 1;
2364         uvsrc_y = src_y >> 1;
2365     } else if (s->out_format == FMT_H261) {
2366         // even chroma mv's are full pel in H261
2367         mx      = motion_x / 4;
2368         my      = motion_y / 4;
2369         uvsx    = (2 * mx) & s_mask;
2370         uvsy    = (2 * my) & s_mask;
2371         uvsrc_x = s->mb_x * block_s + (mx >> lowres);
2372         uvsrc_y =    mb_y * block_s + (my >> lowres);
2373     } else {
2374         if(s->chroma_y_shift){
2375             mx      = motion_x / 2;
2376             my      = motion_y / 2;
2377             uvsx    = mx & s_mask;
2378             uvsy    = my & s_mask;
2379             uvsrc_x = s->mb_x * block_s                 + (mx >> lowres + 1);
2380             uvsrc_y =   (mb_y * block_s >> field_based) + (my >> lowres + 1);
2381         } else {
2382             if(s->chroma_x_shift){
2383             //Chroma422
2384                 mx = motion_x / 2;
2385                 uvsx = mx & s_mask;
2386                 uvsy = motion_y & s_mask;
2387                 uvsrc_y = src_y;
2388                 uvsrc_x = s->mb_x*block_s               + (mx >> (lowres+1));
2389             } else {
2390             //Chroma444
2391                 uvsx = motion_x & s_mask;
2392                 uvsy = motion_y & s_mask;
2393                 uvsrc_x = src_x;
2394                 uvsrc_y = src_y;
2395             }
2396         }
2397     }
2398
2399     ptr_y  = ref_picture[0] + src_y   * linesize   + src_x;
2400     ptr_cb = ref_picture[1] + uvsrc_y * uvlinesize + uvsrc_x;
2401     ptr_cr = ref_picture[2] + uvsrc_y * uvlinesize + uvsrc_x;
2402
2403     if ((unsigned) src_x > FFMAX( h_edge_pos - (!!sx) - 2 * block_s,       0) || uvsrc_y<0 ||
2404         (unsigned) src_y > FFMAX((v_edge_pos >> field_based) - (!!sy) - h, 0)) {
2405         s->vdsp.emulated_edge_mc(s->edge_emu_buffer, ptr_y,
2406                                  linesize >> field_based, linesize >> field_based,
2407                                  17, 17 + field_based,
2408                                 src_x, src_y << field_based, h_edge_pos,
2409                                 v_edge_pos);
2410         ptr_y = s->edge_emu_buffer;
2411         if (!CONFIG_GRAY || !(s->flags & CODEC_FLAG_GRAY)) {
2412             uint8_t *uvbuf = s->edge_emu_buffer + 18 * s->linesize;
2413             s->vdsp.emulated_edge_mc(uvbuf,  ptr_cb,
2414                                      uvlinesize >> field_based, uvlinesize >> field_based,
2415                                      9, 9 + field_based,
2416                                     uvsrc_x, uvsrc_y << field_based,
2417                                     h_edge_pos >> 1, v_edge_pos >> 1);
2418             s->vdsp.emulated_edge_mc(uvbuf + 16,  ptr_cr,
2419                                      uvlinesize >> field_based,uvlinesize >> field_based,
2420                                      9, 9 + field_based,
2421                                     uvsrc_x, uvsrc_y << field_based,
2422                                     h_edge_pos >> 1, v_edge_pos >> 1);
2423             ptr_cb = uvbuf;
2424             ptr_cr = uvbuf + 16;
2425         }
2426     }
2427
2428     // FIXME use this for field pix too instead of the obnoxious hack which changes picture.f.data
2429     if (bottom_field) {
2430         dest_y  += s->linesize;
2431         dest_cb += s->uvlinesize;
2432         dest_cr += s->uvlinesize;
2433     }
2434
2435     if (field_select) {
2436         ptr_y   += s->linesize;
2437         ptr_cb  += s->uvlinesize;
2438         ptr_cr  += s->uvlinesize;
2439     }
2440
2441     sx = (sx << 2) >> lowres;
2442     sy = (sy << 2) >> lowres;
2443     pix_op[lowres - 1](dest_y, ptr_y, linesize, h, sx, sy);
2444
2445     if (!CONFIG_GRAY || !(s->flags & CODEC_FLAG_GRAY)) {
2446         int hc = s->chroma_y_shift ? (h+1-bottom_field)>>1 : h;
2447         uvsx = (uvsx << 2) >> lowres;
2448         uvsy = (uvsy << 2) >> lowres;
2449         if (hc) {
2450             pix_op[op_index](dest_cb, ptr_cb, uvlinesize, hc, uvsx, uvsy);
2451             pix_op[op_index](dest_cr, ptr_cr, uvlinesize, hc, uvsx, uvsy);
2452         }
2453     }
2454     // FIXME h261 lowres loop filter
2455 }
2456
2457 static inline void chroma_4mv_motion_lowres(MpegEncContext *s,
2458                                             uint8_t *dest_cb, uint8_t *dest_cr,
2459                                             uint8_t **ref_picture,
2460                                             h264_chroma_mc_func * pix_op,
2461                                             int mx, int my)
2462 {
2463     const int lowres     = s->avctx->lowres;
2464     const int op_index   = FFMIN(lowres, 3);
2465     const int block_s    = 8 >> lowres;
2466     const int s_mask     = (2 << lowres) - 1;
2467     const int h_edge_pos = s->h_edge_pos >> lowres + 1;
2468     const int v_edge_pos = s->v_edge_pos >> lowres + 1;
2469     int emu = 0, src_x, src_y, sx, sy;
2470     ptrdiff_t offset;
2471     uint8_t *ptr;
2472
2473     if (s->quarter_sample) {
2474         mx /= 2;
2475         my /= 2;
2476     }
2477
2478     /* In case of 8X8, we construct a single chroma motion vector
2479        with a special rounding */
2480     mx = ff_h263_round_chroma(mx);
2481     my = ff_h263_round_chroma(my);
2482
2483     sx = mx & s_mask;
2484     sy = my & s_mask;
2485     src_x = s->mb_x * block_s + (mx >> lowres + 1);
2486     src_y = s->mb_y * block_s + (my >> lowres + 1);
2487
2488     offset = src_y * s->uvlinesize + src_x;
2489     ptr = ref_picture[1] + offset;
2490     if ((unsigned) src_x > FFMAX(h_edge_pos - (!!sx) - block_s, 0) ||
2491         (unsigned) src_y > FFMAX(v_edge_pos - (!!sy) - block_s, 0)) {
2492         s->vdsp.emulated_edge_mc(s->edge_emu_buffer, ptr,
2493                                  s->uvlinesize, s->uvlinesize,
2494                                  9, 9,
2495                                  src_x, src_y, h_edge_pos, v_edge_pos);
2496         ptr = s->edge_emu_buffer;
2497         emu = 1;
2498     }
2499     sx = (sx << 2) >> lowres;
2500     sy = (sy << 2) >> lowres;
2501     pix_op[op_index](dest_cb, ptr, s->uvlinesize, block_s, sx, sy);
2502
2503     ptr = ref_picture[2] + offset;
2504     if (emu) {
2505         s->vdsp.emulated_edge_mc(s->edge_emu_buffer, ptr,
2506                                  s->uvlinesize, s->uvlinesize,
2507                                  9, 9,
2508                                  src_x, src_y, h_edge_pos, v_edge_pos);
2509         ptr = s->edge_emu_buffer;
2510     }
2511     pix_op[op_index](dest_cr, ptr, s->uvlinesize, block_s, sx, sy);
2512 }
2513
2514 /**
2515  * motion compensation of a single macroblock
2516  * @param s context
2517  * @param dest_y luma destination pointer
2518  * @param dest_cb chroma cb/u destination pointer
2519  * @param dest_cr chroma cr/v destination pointer
2520  * @param dir direction (0->forward, 1->backward)
2521  * @param ref_picture array[3] of pointers to the 3 planes of the reference picture
2522  * @param pix_op halfpel motion compensation function (average or put normally)
2523  * the motion vectors are taken from s->mv and the MV type from s->mv_type
2524  */
2525 static inline void MPV_motion_lowres(MpegEncContext *s,
2526                                      uint8_t *dest_y, uint8_t *dest_cb,
2527                                      uint8_t *dest_cr,
2528                                      int dir, uint8_t **ref_picture,
2529                                      h264_chroma_mc_func *pix_op)
2530 {
2531     int mx, my;
2532     int mb_x, mb_y, i;
2533     const int lowres  = s->avctx->lowres;
2534     const int block_s = 8 >>lowres;
2535
2536     mb_x = s->mb_x;
2537     mb_y = s->mb_y;
2538
2539     switch (s->mv_type) {
2540     case MV_TYPE_16X16:
2541         mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
2542                            0, 0, 0,
2543                            ref_picture, pix_op,
2544                            s->mv[dir][0][0], s->mv[dir][0][1],
2545                            2 * block_s, mb_y);
2546         break;
2547     case MV_TYPE_8X8:
2548         mx = 0;
2549         my = 0;
2550         for (i = 0; i < 4; i++) {
2551             hpel_motion_lowres(s, dest_y + ((i & 1) + (i >> 1) *
2552                                s->linesize) * block_s,
2553                                ref_picture[0], 0, 0,
2554                                (2 * mb_x + (i & 1)) * block_s,
2555                                (2 * mb_y + (i >> 1)) * block_s,
2556                                s->width, s->height, s->linesize,
2557                                s->h_edge_pos >> lowres, s->v_edge_pos >> lowres,
2558                                block_s, block_s, pix_op,
2559                                s->mv[dir][i][0], s->mv[dir][i][1]);
2560
2561             mx += s->mv[dir][i][0];
2562             my += s->mv[dir][i][1];
2563         }
2564
2565         if (!CONFIG_GRAY || !(s->flags & CODEC_FLAG_GRAY))
2566             chroma_4mv_motion_lowres(s, dest_cb, dest_cr, ref_picture,
2567                                      pix_op, mx, my);
2568         break;
2569     case MV_TYPE_FIELD:
2570         if (s->picture_structure == PICT_FRAME) {
2571             /* top field */
2572             mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
2573                                1, 0, s->field_select[dir][0],
2574                                ref_picture, pix_op,
2575                                s->mv[dir][0][0], s->mv[dir][0][1],
2576                                block_s, mb_y);
2577             /* bottom field */
2578             mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
2579                                1, 1, s->field_select[dir][1],
2580                                ref_picture, pix_op,
2581                                s->mv[dir][1][0], s->mv[dir][1][1],
2582                                block_s, mb_y);
2583         } else {
2584             if (s->picture_structure != s->field_select[dir][0] + 1 &&
2585                 s->pict_type != AV_PICTURE_TYPE_B && !s->first_field) {
2586                 ref_picture = s->current_picture_ptr->f.data;
2587
2588             }
2589             mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
2590                                0, 0, s->field_select[dir][0],
2591                                ref_picture, pix_op,
2592                                s->mv[dir][0][0],
2593                                s->mv[dir][0][1], 2 * block_s, mb_y >> 1);
2594             }
2595         break;
2596     case MV_TYPE_16X8:
2597         for (i = 0; i < 2; i++) {
2598             uint8_t **ref2picture;
2599
2600             if (s->picture_structure == s->field_select[dir][i] + 1 ||
2601                 s->pict_type == AV_PICTURE_TYPE_B || s->first_field) {
2602                 ref2picture = ref_picture;
2603             } else {
2604                 ref2picture = s->current_picture_ptr->f.data;
2605             }
2606
2607             mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
2608                                0, 0, s->field_select[dir][i],
2609                                ref2picture, pix_op,
2610                                s->mv[dir][i][0], s->mv[dir][i][1] +
2611                                2 * block_s * i, block_s, mb_y >> 1);
2612
2613             dest_y  +=  2 * block_s *  s->linesize;
2614             dest_cb += (2 * block_s >> s->chroma_y_shift) * s->uvlinesize;
2615             dest_cr += (2 * block_s >> s->chroma_y_shift) * s->uvlinesize;
2616         }
2617         break;
2618     case MV_TYPE_DMV:
2619         if (s->picture_structure == PICT_FRAME) {
2620             for (i = 0; i < 2; i++) {
2621                 int j;
2622                 for (j = 0; j < 2; j++) {
2623                     mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
2624                                        1, j, j ^ i,
2625                                        ref_picture, pix_op,
2626                                        s->mv[dir][2 * i + j][0],
2627                                        s->mv[dir][2 * i + j][1],
2628                                        block_s, mb_y);
2629                 }
2630                 pix_op = s->h264chroma.avg_h264_chroma_pixels_tab;
2631             }
2632         } else {
2633             for (i = 0; i < 2; i++) {
2634                 mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
2635                                    0, 0, s->picture_structure != i + 1,
2636                                    ref_picture, pix_op,
2637                                    s->mv[dir][2 * i][0],s->mv[dir][2 * i][1],
2638                                    2 * block_s, mb_y >> 1);
2639
2640                 // after put we make avg of the same block
2641                 pix_op = s->h264chroma.avg_h264_chroma_pixels_tab;
2642
2643                 // opposite parity is always in the same
2644                 // frame if this is second field
2645                 if (!s->first_field) {
2646                     ref_picture = s->current_picture_ptr->f.data;
2647                 }
2648             }
2649         }
2650         break;
2651     default:
2652         av_assert2(0);
2653     }
2654 }
2655
2656 /**
2657  * find the lowest MB row referenced in the MVs
2658  */
2659 int ff_MPV_lowest_referenced_row(MpegEncContext *s, int dir)
2660 {
2661     int my_max = INT_MIN, my_min = INT_MAX, qpel_shift = !s->quarter_sample;
2662     int my, off, i, mvs;
2663
2664     if (s->picture_structure != PICT_FRAME || s->mcsel)
2665         goto unhandled;
2666
2667     switch (s->mv_type) {
2668         case MV_TYPE_16X16:
2669             mvs = 1;
2670             break;
2671         case MV_TYPE_16X8:
2672             mvs = 2;
2673             break;
2674         case MV_TYPE_8X8:
2675             mvs = 4;
2676             break;
2677         default:
2678             goto unhandled;
2679     }
2680
2681     for (i = 0; i < mvs; i++) {
2682         my = s->mv[dir][i][1]<<qpel_shift;
2683         my_max = FFMAX(my_max, my);
2684         my_min = FFMIN(my_min, my);
2685     }
2686
2687     off = (FFMAX(-my_min, my_max) + 63) >> 6;
2688
2689     return FFMIN(FFMAX(s->mb_y + off, 0), s->mb_height-1);
2690 unhandled:
2691     return s->mb_height-1;
2692 }
2693
2694 /* put block[] to dest[] */
2695 static inline void put_dct(MpegEncContext *s,
2696                            int16_t *block, int i, uint8_t *dest, int line_size, int qscale)
2697 {
2698     s->dct_unquantize_intra(s, block, i, qscale);
2699     s->dsp.idct_put (dest, line_size, block);
2700 }
2701
2702 /* add block[] to dest[] */
2703 static inline void add_dct(MpegEncContext *s,
2704                            int16_t *block, int i, uint8_t *dest, int line_size)
2705 {
2706     if (s->block_last_index[i] >= 0) {
2707         s->dsp.idct_add (dest, line_size, block);
2708     }
2709 }
2710
2711 static inline void add_dequant_dct(MpegEncContext *s,
2712                            int16_t *block, int i, uint8_t *dest, int line_size, int qscale)
2713 {
2714     if (s->block_last_index[i] >= 0) {
2715         s->dct_unquantize_inter(s, block, i, qscale);
2716
2717         s->dsp.idct_add (dest, line_size, block);
2718     }
2719 }
2720
2721 /**
2722  * Clean dc, ac, coded_block for the current non-intra MB.
2723  */
2724 void ff_clean_intra_table_entries(MpegEncContext *s)
2725 {
2726     int wrap = s->b8_stride;
2727     int xy = s->block_index[0];
2728
2729     s->dc_val[0][xy           ] =
2730     s->dc_val[0][xy + 1       ] =
2731     s->dc_val[0][xy     + wrap] =
2732     s->dc_val[0][xy + 1 + wrap] = 1024;
2733     /* ac pred */
2734     memset(s->ac_val[0][xy       ], 0, 32 * sizeof(int16_t));
2735     memset(s->ac_val[0][xy + wrap], 0, 32 * sizeof(int16_t));
2736     if (s->msmpeg4_version>=3) {
2737         s->coded_block[xy           ] =
2738         s->coded_block[xy + 1       ] =
2739         s->coded_block[xy     + wrap] =
2740         s->coded_block[xy + 1 + wrap] = 0;
2741     }
2742     /* chroma */
2743     wrap = s->mb_stride;
2744     xy = s->mb_x + s->mb_y * wrap;
2745     s->dc_val[1][xy] =
2746     s->dc_val[2][xy] = 1024;
2747     /* ac pred */
2748     memset(s->ac_val[1][xy], 0, 16 * sizeof(int16_t));
2749     memset(s->ac_val[2][xy], 0, 16 * sizeof(int16_t));
2750
2751     s->mbintra_table[xy]= 0;
2752 }
2753
2754 /* generic function called after a macroblock has been parsed by the
2755    decoder or after it has been encoded by the encoder.
2756
2757    Important variables used:
2758    s->mb_intra : true if intra macroblock
2759    s->mv_dir   : motion vector direction
2760    s->mv_type  : motion vector type
2761    s->mv       : motion vector
2762    s->interlaced_dct : true if interlaced dct used (mpeg2)
2763  */
2764 static av_always_inline
2765 void MPV_decode_mb_internal(MpegEncContext *s, int16_t block[12][64],
2766                             int lowres_flag, int is_mpeg12)
2767 {
2768     const int mb_xy = s->mb_y * s->mb_stride + s->mb_x;
2769
2770     if (CONFIG_XVMC &&
2771         s->avctx->hwaccel && s->avctx->hwaccel->decode_mb) {
2772         s->avctx->hwaccel->decode_mb(s);//xvmc uses pblocks
2773         return;
2774     }
2775
2776     if(s->avctx->debug&FF_DEBUG_DCT_COEFF) {
2777        /* print DCT coefficients */
2778        int i,j;
2779        av_log(s->avctx, AV_LOG_DEBUG, "DCT coeffs of MB at %dx%d:\n", s->mb_x, s->mb_y);
2780        for(i=0; i<6; i++){
2781            for(j=0; j<64; j++){
2782                av_log(s->avctx, AV_LOG_DEBUG, "%5d", block[i][s->dsp.idct_permutation[j]]);
2783            }
2784            av_log(s->avctx, AV_LOG_DEBUG, "\n");
2785        }
2786     }
2787
2788     s->current_picture.qscale_table[mb_xy] = s->qscale;
2789
2790     /* update DC predictors for P macroblocks */
2791     if (!s->mb_intra) {
2792         if (!is_mpeg12 && (s->h263_pred || s->h263_aic)) {
2793             if(s->mbintra_table[mb_xy])
2794                 ff_clean_intra_table_entries(s);
2795         } else {
2796             s->last_dc[0] =
2797             s->last_dc[1] =
2798             s->last_dc[2] = 128 << s->intra_dc_precision;
2799         }
2800     }
2801     else if (!is_mpeg12 && (s->h263_pred || s->h263_aic))
2802         s->mbintra_table[mb_xy]=1;
2803
2804     if (   (s->flags&CODEC_FLAG_PSNR)
2805         || s->avctx->frame_skip_threshold || s->avctx->frame_skip_factor
2806         || !(s->encoding && (s->intra_only || s->pict_type==AV_PICTURE_TYPE_B) && s->avctx->mb_decision != FF_MB_DECISION_RD)) { //FIXME precalc
2807         uint8_t *dest_y, *dest_cb, *dest_cr;
2808         int dct_linesize, dct_offset;
2809         op_pixels_func (*op_pix)[4];
2810         qpel_mc_func (*op_qpix)[16];
2811         const int linesize   = s->current_picture.f.linesize[0]; //not s->linesize as this would be wrong for field pics
2812         const int uvlinesize = s->current_picture.f.linesize[1];
2813         const int readable= s->pict_type != AV_PICTURE_TYPE_B || s->encoding || s->avctx->draw_horiz_band || lowres_flag;
2814         const int block_size= lowres_flag ? 8>>s->avctx->lowres : 8;
2815
2816         /* avoid copy if macroblock skipped in last frame too */
2817         /* skip only during decoding as we might trash the buffers during encoding a bit */
2818         if(!s->encoding){
2819             uint8_t *mbskip_ptr = &s->mbskip_table[mb_xy];
2820
2821             if (s->mb_skipped) {
2822                 s->mb_skipped= 0;
2823                 av_assert2(s->pict_type!=AV_PICTURE_TYPE_I);
2824                 *mbskip_ptr = 1;
2825             } else if(!s->current_picture.reference) {
2826                 *mbskip_ptr = 1;
2827             } else{
2828                 *mbskip_ptr = 0; /* not skipped */
2829             }
2830         }
2831
2832         dct_linesize = linesize << s->interlaced_dct;
2833         dct_offset   = s->interlaced_dct ? linesize : linesize * block_size;
2834
2835         if(readable){
2836             dest_y=  s->dest[0];
2837             dest_cb= s->dest[1];
2838             dest_cr= s->dest[2];
2839         }else{
2840             dest_y = s->b_scratchpad;
2841             dest_cb= s->b_scratchpad+16*linesize;
2842             dest_cr= s->b_scratchpad+32*linesize;
2843         }
2844
2845         if (!s->mb_intra) {
2846             /* motion handling */
2847             /* decoding or more than one mb_type (MC was already done otherwise) */
2848             if(!s->encoding){
2849
2850                 if(HAVE_THREADS && s->avctx->active_thread_type&FF_THREAD_FRAME) {
2851                     if (s->mv_dir & MV_DIR_FORWARD) {
2852                         ff_thread_await_progress(&s->last_picture_ptr->tf,
2853                                                  ff_MPV_lowest_referenced_row(s, 0),
2854                                                  0);
2855                     }
2856                     if (s->mv_dir & MV_DIR_BACKWARD) {
2857                         ff_thread_await_progress(&s->next_picture_ptr->tf,
2858                                                  ff_MPV_lowest_referenced_row(s, 1),
2859                                                  0);
2860                     }
2861                 }
2862
2863                 if(lowres_flag){
2864                     h264_chroma_mc_func *op_pix = s->h264chroma.put_h264_chroma_pixels_tab;
2865
2866                     if (s->mv_dir & MV_DIR_FORWARD) {
2867                         MPV_motion_lowres(s, dest_y, dest_cb, dest_cr, 0, s->last_picture.f.data, op_pix);
2868                         op_pix = s->h264chroma.avg_h264_chroma_pixels_tab;
2869                     }
2870                     if (s->mv_dir & MV_DIR_BACKWARD) {
2871                         MPV_motion_lowres(s, dest_y, dest_cb, dest_cr, 1, s->next_picture.f.data, op_pix);
2872                     }
2873                 }else{
2874                     op_qpix = s->me.qpel_put;
2875                     if ((!s->no_rounding) || s->pict_type==AV_PICTURE_TYPE_B){
2876                         op_pix = s->hdsp.put_pixels_tab;
2877                     }else{
2878                         op_pix = s->hdsp.put_no_rnd_pixels_tab;
2879                     }
2880                     if (s->mv_dir & MV_DIR_FORWARD) {
2881                         ff_MPV_motion(s, dest_y, dest_cb, dest_cr, 0, s->last_picture.f.data, op_pix, op_qpix);
2882                         op_pix = s->hdsp.avg_pixels_tab;
2883                         op_qpix= s->me.qpel_avg;
2884                     }
2885                     if (s->mv_dir & MV_DIR_BACKWARD) {
2886                         ff_MPV_motion(s, dest_y, dest_cb, dest_cr, 1, s->next_picture.f.data, op_pix, op_qpix);
2887                     }
2888                 }
2889             }
2890
2891             /* skip dequant / idct if we are really late ;) */
2892             if(s->avctx->skip_idct){
2893                 if(  (s->avctx->skip_idct >= AVDISCARD_NONREF && s->pict_type == AV_PICTURE_TYPE_B)
2894                    ||(s->avctx->skip_idct >= AVDISCARD_NONKEY && s->pict_type != AV_PICTURE_TYPE_I)
2895                    || s->avctx->skip_idct >= AVDISCARD_ALL)
2896                     goto skip_idct;
2897             }
2898
2899             /* add dct residue */
2900             if(s->encoding || !(   s->msmpeg4_version || s->codec_id==AV_CODEC_ID_MPEG1VIDEO || s->codec_id==AV_CODEC_ID_MPEG2VIDEO
2901                                 || (s->codec_id==AV_CODEC_ID_MPEG4 && !s->mpeg_quant))){
2902                 add_dequant_dct(s, block[0], 0, dest_y                          , dct_linesize, s->qscale);
2903                 add_dequant_dct(s, block[1], 1, dest_y              + block_size, dct_linesize, s->qscale);
2904                 add_dequant_dct(s, block[2], 2, dest_y + dct_offset             , dct_linesize, s->qscale);
2905                 add_dequant_dct(s, block[3], 3, dest_y + dct_offset + block_size, dct_linesize, s->qscale);
2906
2907                 if(!CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
2908                     if (s->chroma_y_shift){
2909                         add_dequant_dct(s, block[4], 4, dest_cb, uvlinesize, s->chroma_qscale);
2910                         add_dequant_dct(s, block[5], 5, dest_cr, uvlinesize, s->chroma_qscale);
2911                     }else{
2912                         dct_linesize >>= 1;
2913                         dct_offset >>=1;
2914                         add_dequant_dct(s, block[4], 4, dest_cb,              dct_linesize, s->chroma_qscale);
2915                         add_dequant_dct(s, block[5], 5, dest_cr,              dct_linesize, s->chroma_qscale);
2916                         add_dequant_dct(s, block[6], 6, dest_cb + dct_offset, dct_linesize, s->chroma_qscale);
2917                         add_dequant_dct(s, block[7], 7, dest_cr + dct_offset, dct_linesize, s->chroma_qscale);
2918                     }
2919                 }
2920             } else if(is_mpeg12 || (s->codec_id != AV_CODEC_ID_WMV2)){
2921                 add_dct(s, block[0], 0, dest_y                          , dct_linesize);
2922                 add_dct(s, block[1], 1, dest_y              + block_size, dct_linesize);
2923                 add_dct(s, block[2], 2, dest_y + dct_offset             , dct_linesize);
2924                 add_dct(s, block[3], 3, dest_y + dct_offset + block_size, dct_linesize);
2925
2926                 if(!CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
2927                     if(s->chroma_y_shift){//Chroma420
2928                         add_dct(s, block[4], 4, dest_cb, uvlinesize);
2929                         add_dct(s, block[5], 5, dest_cr, uvlinesize);
2930                     }else{
2931                         //chroma422
2932                         dct_linesize = uvlinesize << s->interlaced_dct;
2933                         dct_offset   = s->interlaced_dct ? uvlinesize : uvlinesize*block_size;
2934
2935                         add_dct(s, block[4], 4, dest_cb, dct_linesize);
2936                         add_dct(s, block[5], 5, dest_cr, dct_linesize);
2937                         add_dct(s, block[6], 6, dest_cb+dct_offset, dct_linesize);
2938                         add_dct(s, block[7], 7, dest_cr+dct_offset, dct_linesize);
2939                         if(!s->chroma_x_shift){//Chroma444
2940                             add_dct(s, block[8], 8, dest_cb+block_size, dct_linesize);
2941                             add_dct(s, block[9], 9, dest_cr+block_size, dct_linesize);
2942                             add_dct(s, block[10], 10, dest_cb+block_size+dct_offset, dct_linesize);
2943                             add_dct(s, block[11], 11, dest_cr+block_size+dct_offset, dct_linesize);
2944                         }
2945                     }
2946                 }//fi gray
2947             }
2948             else if (CONFIG_WMV2_DECODER || CONFIG_WMV2_ENCODER) {
2949                 ff_wmv2_add_mb(s, block, dest_y, dest_cb, dest_cr);
2950             }
2951         } else {
2952             /* dct only in intra block */
2953             if(s->encoding || !(s->codec_id==AV_CODEC_ID_MPEG1VIDEO || s->codec_id==AV_CODEC_ID_MPEG2VIDEO)){
2954                 put_dct(s, block[0], 0, dest_y                          , dct_linesize, s->qscale);
2955                 put_dct(s, block[1], 1, dest_y              + block_size, dct_linesize, s->qscale);
2956                 put_dct(s, block[2], 2, dest_y + dct_offset             , dct_linesize, s->qscale);
2957                 put_dct(s, block[3], 3, dest_y + dct_offset + block_size, dct_linesize, s->qscale);
2958
2959                 if(!CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
2960                     if(s->chroma_y_shift){
2961                         put_dct(s, block[4], 4, dest_cb, uvlinesize, s->chroma_qscale);
2962                         put_dct(s, block[5], 5, dest_cr, uvlinesize, s->chroma_qscale);
2963                     }else{
2964                         dct_offset >>=1;
2965                         dct_linesize >>=1;
2966                         put_dct(s, block[4], 4, dest_cb,              dct_linesize, s->chroma_qscale);
2967                         put_dct(s, block[5], 5, dest_cr,              dct_linesize, s->chroma_qscale);
2968                         put_dct(s, block[6], 6, dest_cb + dct_offset, dct_linesize, s->chroma_qscale);
2969                         put_dct(s, block[7], 7, dest_cr + dct_offset, dct_linesize, s->chroma_qscale);
2970                     }
2971                 }
2972             }else{
2973                 s->dsp.idct_put(dest_y                          , dct_linesize, block[0]);
2974                 s->dsp.idct_put(dest_y              + block_size, dct_linesize, block[1]);
2975                 s->dsp.idct_put(dest_y + dct_offset             , dct_linesize, block[2]);
2976                 s->dsp.idct_put(dest_y + dct_offset + block_size, dct_linesize, block[3]);
2977
2978                 if(!CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
2979                     if(s->chroma_y_shift){
2980                         s->dsp.idct_put(dest_cb, uvlinesize, block[4]);
2981                         s->dsp.idct_put(dest_cr, uvlinesize, block[5]);
2982                     }else{
2983
2984                         dct_linesize = uvlinesize << s->interlaced_dct;
2985                         dct_offset   = s->interlaced_dct ? uvlinesize : uvlinesize*block_size;
2986
2987                         s->dsp.idct_put(dest_cb,              dct_linesize, block[4]);
2988                         s->dsp.idct_put(dest_cr,              dct_linesize, block[5]);
2989                         s->dsp.idct_put(dest_cb + dct_offset, dct_linesize, block[6]);
2990                         s->dsp.idct_put(dest_cr + dct_offset, dct_linesize, block[7]);
2991                         if(!s->chroma_x_shift){//Chroma444
2992                             s->dsp.idct_put(dest_cb + block_size,              dct_linesize, block[8]);
2993                             s->dsp.idct_put(dest_cr + block_size,              dct_linesize, block[9]);
2994                             s->dsp.idct_put(dest_cb + block_size + dct_offset, dct_linesize, block[10]);
2995                             s->dsp.idct_put(dest_cr + block_size + dct_offset, dct_linesize, block[11]);
2996                         }
2997                     }
2998                 }//gray
2999             }
3000         }
3001 skip_idct:
3002         if(!readable){
3003             s->hdsp.put_pixels_tab[0][0](s->dest[0], dest_y ,   linesize,16);
3004             s->hdsp.put_pixels_tab[s->chroma_x_shift][0](s->dest[1], dest_cb, uvlinesize,16 >> s->chroma_y_shift);
3005             s->hdsp.put_pixels_tab[s->chroma_x_shift][0](s->dest[2], dest_cr, uvlinesize,16 >> s->chroma_y_shift);
3006         }
3007     }
3008 }
3009
3010 void ff_MPV_decode_mb(MpegEncContext *s, int16_t block[12][64]){
3011 #if !CONFIG_SMALL
3012     if(s->out_format == FMT_MPEG1) {
3013         if(s->avctx->lowres) MPV_decode_mb_internal(s, block, 1, 1);
3014         else                 MPV_decode_mb_internal(s, block, 0, 1);
3015     } else
3016 #endif
3017     if(s->avctx->lowres) MPV_decode_mb_internal(s, block, 1, 0);
3018     else                  MPV_decode_mb_internal(s, block, 0, 0);
3019 }
3020
3021 void ff_mpeg_draw_horiz_band(MpegEncContext *s, int y, int h)
3022 {
3023     ff_draw_horiz_band(s->avctx, &s->current_picture_ptr->f,
3024                        &s->last_picture_ptr->f, y, h, s->picture_structure,
3025                        s->first_field, s->low_delay);
3026 }
3027
3028 void ff_init_block_index(MpegEncContext *s){ //FIXME maybe rename
3029     const int linesize   = s->current_picture.f.linesize[0]; //not s->linesize as this would be wrong for field pics
3030     const int uvlinesize = s->current_picture.f.linesize[1];
3031     const int mb_size= 4 - s->avctx->lowres;
3032
3033     s->block_index[0]= s->b8_stride*(s->mb_y*2    ) - 2 + s->mb_x*2;
3034     s->block_index[1]= s->b8_stride*(s->mb_y*2    ) - 1 + s->mb_x*2;
3035     s->block_index[2]= s->b8_stride*(s->mb_y*2 + 1) - 2 + s->mb_x*2;
3036     s->block_index[3]= s->b8_stride*(s->mb_y*2 + 1) - 1 + s->mb_x*2;
3037     s->block_index[4]= s->mb_stride*(s->mb_y + 1)                + s->b8_stride*s->mb_height*2 + s->mb_x - 1;
3038     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;
3039     //block_index is not used by mpeg2, so it is not affected by chroma_format
3040
3041     s->dest[0] = s->current_picture.f.data[0] + ((s->mb_x - 1) <<  mb_size);
3042     s->dest[1] = s->current_picture.f.data[1] + ((s->mb_x - 1) << (mb_size - s->chroma_x_shift));
3043     s->dest[2] = s->current_picture.f.data[2] + ((s->mb_x - 1) << (mb_size - s->chroma_x_shift));
3044
3045     if(!(s->pict_type==AV_PICTURE_TYPE_B && s->avctx->draw_horiz_band && s->picture_structure==PICT_FRAME))
3046     {
3047         if(s->picture_structure==PICT_FRAME){
3048         s->dest[0] += s->mb_y *   linesize << mb_size;
3049         s->dest[1] += s->mb_y * uvlinesize << (mb_size - s->chroma_y_shift);
3050         s->dest[2] += s->mb_y * uvlinesize << (mb_size - s->chroma_y_shift);
3051         }else{
3052             s->dest[0] += (s->mb_y>>1) *   linesize << mb_size;
3053             s->dest[1] += (s->mb_y>>1) * uvlinesize << (mb_size - s->chroma_y_shift);
3054             s->dest[2] += (s->mb_y>>1) * uvlinesize << (mb_size - s->chroma_y_shift);
3055             av_assert1((s->mb_y&1) == (s->picture_structure == PICT_BOTTOM_FIELD));
3056         }
3057     }
3058 }
3059
3060 /**
3061  * Permute an 8x8 block.
3062  * @param block the block which will be permuted according to the given permutation vector
3063  * @param permutation the permutation vector
3064  * @param last the last non zero coefficient in scantable order, used to speed the permutation up
3065  * @param scantable the used scantable, this is only used to speed the permutation up, the block is not
3066  *                  (inverse) permutated to scantable order!
3067  */
3068 void ff_block_permute(int16_t *block, uint8_t *permutation, const uint8_t *scantable, int last)
3069 {
3070     int i;
3071     int16_t temp[64];
3072
3073     if(last<=0) return;
3074     //if(permutation[1]==1) return; //FIXME it is ok but not clean and might fail for some permutations
3075
3076     for(i=0; i<=last; i++){
3077         const int j= scantable[i];
3078         temp[j]= block[j];
3079         block[j]=0;
3080     }
3081
3082     for(i=0; i<=last; i++){
3083         const int j= scantable[i];
3084         const int perm_j= permutation[j];
3085         block[perm_j]= temp[j];
3086     }
3087 }
3088
3089 void ff_mpeg_flush(AVCodecContext *avctx){
3090     int i;
3091     MpegEncContext *s = avctx->priv_data;
3092
3093     if(s==NULL || s->picture==NULL)
3094         return;
3095
3096     for (i = 0; i < MAX_PICTURE_COUNT; i++)
3097         ff_mpeg_unref_picture(s, &s->picture[i]);
3098     s->current_picture_ptr = s->last_picture_ptr = s->next_picture_ptr = NULL;
3099
3100     ff_mpeg_unref_picture(s, &s->current_picture);
3101     ff_mpeg_unref_picture(s, &s->last_picture);
3102     ff_mpeg_unref_picture(s, &s->next_picture);
3103
3104     s->mb_x= s->mb_y= 0;
3105     s->closed_gop= 0;
3106
3107     s->parse_context.state= -1;
3108     s->parse_context.frame_start_found= 0;
3109     s->parse_context.overread= 0;
3110     s->parse_context.overread_index= 0;
3111     s->parse_context.index= 0;
3112     s->parse_context.last_index= 0;
3113     s->bitstream_buffer_size=0;
3114     s->pp_time=0;
3115 }
3116
3117 /**
3118  * set qscale and update qscale dependent variables.
3119  */
3120 void ff_set_qscale(MpegEncContext * s, int qscale)
3121 {
3122     if (qscale < 1)
3123         qscale = 1;
3124     else if (qscale > 31)
3125         qscale = 31;
3126
3127     s->qscale = qscale;
3128     s->chroma_qscale= s->chroma_qscale_table[qscale];
3129
3130     s->y_dc_scale= s->y_dc_scale_table[ qscale ];
3131     s->c_dc_scale= s->c_dc_scale_table[ s->chroma_qscale ];
3132 }
3133
3134 void ff_MPV_report_decode_progress(MpegEncContext *s)
3135 {
3136     if (s->pict_type != AV_PICTURE_TYPE_B && !s->partitioned_frame && !s->er.error_occurred)
3137         ff_thread_report_progress(&s->current_picture_ptr->tf, s->mb_y, 0);
3138 }
3139
3140 #if CONFIG_ERROR_RESILIENCE
3141 void ff_mpeg_set_erpic(ERPicture *dst, Picture *src)
3142 {
3143     int i;
3144
3145     memset(dst, 0, sizeof(*dst));
3146     if (!src)
3147         return;
3148
3149     dst->f = &src->f;
3150     dst->tf = &src->tf;
3151
3152     for (i = 0; i < 2; i++) {
3153         dst->motion_val[i] = src->motion_val[i];
3154         dst->ref_index[i] = src->ref_index[i];
3155     }
3156
3157     dst->mb_type = src->mb_type;
3158     dst->field_picture = src->field_picture;
3159 }
3160
3161 void ff_mpeg_er_frame_start(MpegEncContext *s)
3162 {
3163     ERContext *er = &s->er;
3164
3165     ff_mpeg_set_erpic(&er->cur_pic, s->current_picture_ptr);
3166     ff_mpeg_set_erpic(&er->next_pic, s->next_picture_ptr);
3167     ff_mpeg_set_erpic(&er->last_pic, s->last_picture_ptr);
3168
3169     er->pp_time           = s->pp_time;
3170     er->pb_time           = s->pb_time;
3171     er->quarter_sample    = s->quarter_sample;
3172     er->partitioned_frame = s->partitioned_frame;
3173
3174     ff_er_frame_start(er);
3175 }
3176 #endif /* CONFIG_ERROR_RESILIENCE */