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