]> git.sesse.net Git - ffmpeg/blob - libavcodec/h263dec.c
lavc: AV-prefix all codec flags
[ffmpeg] / libavcodec / h263dec.c
1 /*
2  * H.263 decoder
3  * Copyright (c) 2001 Fabrice Bellard
4  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5  *
6  * This file is part of Libav.
7  *
8  * Libav is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * Libav is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with Libav; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file
25  * H.263 decoder.
26  */
27
28 #include "libavutil/cpu.h"
29 #include "avcodec.h"
30 #include "error_resilience.h"
31 #include "flv.h"
32 #include "h263.h"
33 #include "h263_parser.h"
34 #include "internal.h"
35 #include "mpeg_er.h"
36 #include "mpeg4video.h"
37 #include "mpeg4video_parser.h"
38 #include "mpegutils.h"
39 #include "mpegvideo.h"
40 #include "msmpeg4.h"
41 #include "qpeldsp.h"
42 #include "thread.h"
43 #include "wmv2.h"
44
45 static enum AVPixelFormat h263_get_format(AVCodecContext *avctx)
46 {
47     if (avctx->codec->id == AV_CODEC_ID_MSS2)
48         return AV_PIX_FMT_YUV420P;
49
50     return avctx->pix_fmt = ff_get_format(avctx, avctx->codec->pix_fmts);
51 }
52
53 av_cold int ff_h263_decode_init(AVCodecContext *avctx)
54 {
55     MpegEncContext *s = avctx->priv_data;
56     int ret;
57
58     s->avctx           = avctx;
59     s->out_format      = FMT_H263;
60     s->width           = avctx->coded_width;
61     s->height          = avctx->coded_height;
62     s->workaround_bugs = avctx->workaround_bugs;
63
64     // set defaults
65     ff_mpv_decode_defaults(s);
66     s->quant_precision = 5;
67     s->decode_mb       = ff_h263_decode_mb;
68     s->low_delay       = 1;
69     s->unrestricted_mv = 1;
70
71     /* select sub codec */
72     switch (avctx->codec->id) {
73     case AV_CODEC_ID_H263:
74         s->unrestricted_mv = 0;
75         avctx->chroma_sample_location = AVCHROMA_LOC_CENTER;
76         break;
77     case AV_CODEC_ID_MPEG4:
78         break;
79     case AV_CODEC_ID_MSMPEG4V1:
80         s->h263_pred       = 1;
81         s->msmpeg4_version = 1;
82         break;
83     case AV_CODEC_ID_MSMPEG4V2:
84         s->h263_pred       = 1;
85         s->msmpeg4_version = 2;
86         break;
87     case AV_CODEC_ID_MSMPEG4V3:
88         s->h263_pred       = 1;
89         s->msmpeg4_version = 3;
90         break;
91     case AV_CODEC_ID_WMV1:
92         s->h263_pred       = 1;
93         s->msmpeg4_version = 4;
94         break;
95     case AV_CODEC_ID_WMV2:
96         s->h263_pred       = 1;
97         s->msmpeg4_version = 5;
98         break;
99     case AV_CODEC_ID_VC1:
100     case AV_CODEC_ID_WMV3:
101     case AV_CODEC_ID_VC1IMAGE:
102     case AV_CODEC_ID_WMV3IMAGE:
103     case AV_CODEC_ID_MSS2:
104         s->h263_pred       = 1;
105         s->msmpeg4_version = 6;
106         avctx->chroma_sample_location = AVCHROMA_LOC_LEFT;
107         break;
108     case AV_CODEC_ID_H263I:
109         break;
110     case AV_CODEC_ID_FLV1:
111         s->h263_flv = 1;
112         break;
113     default:
114         av_log(avctx, AV_LOG_ERROR, "Unsupported codec %d\n",
115                avctx->codec->id);
116         return AVERROR(ENOSYS);
117     }
118     s->codec_id    = avctx->codec->id;
119
120     /* for h263, we allocate the images after having read the header */
121     if (avctx->codec->id != AV_CODEC_ID_H263 &&
122         avctx->codec->id != AV_CODEC_ID_MPEG4) {
123         avctx->pix_fmt = h263_get_format(avctx);
124         ff_mpv_idct_init(s);
125         if ((ret = ff_mpv_common_init(s)) < 0)
126             return ret;
127     }
128
129     ff_h263dsp_init(&s->h263dsp);
130     ff_qpeldsp_init(&s->qdsp);
131     ff_h263_decode_init_vlc();
132
133     return 0;
134 }
135
136 av_cold int ff_h263_decode_end(AVCodecContext *avctx)
137 {
138     MpegEncContext *s = avctx->priv_data;
139
140     ff_mpv_common_end(s);
141     return 0;
142 }
143
144 /**
145  * Return the number of bytes consumed for building the current frame.
146  */
147 static int get_consumed_bytes(MpegEncContext *s, int buf_size)
148 {
149     int pos = (get_bits_count(&s->gb) + 7) >> 3;
150
151     if (s->divx_packed || s->avctx->hwaccel) {
152         /* We would have to scan through the whole buf to handle the weird
153          * reordering ... */
154         return buf_size;
155     } else if (s->avctx->flags & AV_CODEC_FLAG_TRUNCATED) {
156         pos -= s->parse_context.last_index;
157         // padding is not really read so this might be -1
158         if (pos < 0)
159             pos = 0;
160         return pos;
161     } else {
162         // avoid infinite loops (maybe not needed...)
163         if (pos == 0)
164             pos = 1;
165         // oops ;)
166         if (pos + 10 > buf_size)
167             pos = buf_size;
168
169         return pos;
170     }
171 }
172
173 static int decode_slice(MpegEncContext *s)
174 {
175     const int part_mask = s->partitioned_frame
176                           ? (ER_AC_END | ER_AC_ERROR) : 0x7F;
177     const int mb_size = 16;
178     int ret;
179
180     s->last_resync_gb   = s->gb;
181     s->first_slice_line = 1;
182     s->resync_mb_x      = s->mb_x;
183     s->resync_mb_y      = s->mb_y;
184
185     ff_set_qscale(s, s->qscale);
186
187     if (s->avctx->hwaccel) {
188         const uint8_t *start = s->gb.buffer + get_bits_count(&s->gb) / 8;
189         const uint8_t *end   = ff_h263_find_resync_marker(start + 1,
190                                                           s->gb.buffer_end);
191         skip_bits_long(&s->gb, 8 * (end - start));
192         return s->avctx->hwaccel->decode_slice(s->avctx, start, end - start);
193     }
194
195     if (s->partitioned_frame) {
196         const int qscale = s->qscale;
197
198         if (CONFIG_MPEG4_DECODER && s->codec_id == AV_CODEC_ID_MPEG4)
199             if ((ret = ff_mpeg4_decode_partitions(s->avctx->priv_data)) < 0)
200                 return ret;
201
202         /* restore variables which were modified */
203         s->first_slice_line = 1;
204         s->mb_x             = s->resync_mb_x;
205         s->mb_y             = s->resync_mb_y;
206         ff_set_qscale(s, qscale);
207     }
208
209     for (; s->mb_y < s->mb_height; s->mb_y++) {
210         /* per-row end of slice checks */
211         if (s->msmpeg4_version) {
212             if (s->resync_mb_y + s->slice_height == s->mb_y) {
213                 ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y,
214                                 s->mb_x - 1, s->mb_y, ER_MB_END);
215
216                 return 0;
217             }
218         }
219
220         if (s->msmpeg4_version == 1) {
221             s->last_dc[0] =
222             s->last_dc[1] =
223             s->last_dc[2] = 128;
224         }
225
226         ff_init_block_index(s);
227         for (; s->mb_x < s->mb_width; s->mb_x++) {
228             int ret;
229
230             ff_update_block_index(s);
231
232             if (s->resync_mb_x == s->mb_x && s->resync_mb_y + 1 == s->mb_y)
233                 s->first_slice_line = 0;
234
235             /* DCT & quantize */
236
237             s->mv_dir  = MV_DIR_FORWARD;
238             s->mv_type = MV_TYPE_16X16;
239             ff_dlog(s, "%d %d %06X\n",
240                     ret, get_bits_count(&s->gb), show_bits(&s->gb, 24));
241             ret = s->decode_mb(s, s->block);
242
243             if (s->pict_type != AV_PICTURE_TYPE_B)
244                 ff_h263_update_motion_val(s);
245
246             if (ret < 0) {
247                 const int xy = s->mb_x + s->mb_y * s->mb_stride;
248                 if (ret == SLICE_END) {
249                     ff_mpv_decode_mb(s, s->block);
250                     if (s->loop_filter)
251                         ff_h263_loop_filter(s);
252
253                     ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y,
254                                     s->mb_x, s->mb_y, ER_MB_END & part_mask);
255
256                     s->padding_bug_score--;
257
258                     if (++s->mb_x >= s->mb_width) {
259                         s->mb_x = 0;
260                         ff_mpeg_draw_horiz_band(s, s->mb_y * mb_size, mb_size);
261                         ff_mpv_report_decode_progress(s);
262                         s->mb_y++;
263                     }
264                     return 0;
265                 } else if (ret == SLICE_NOEND) {
266                     av_log(s->avctx, AV_LOG_ERROR,
267                            "Slice mismatch at MB: %d\n", xy);
268                     ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y,
269                                     s->mb_x + 1, s->mb_y,
270                                     ER_MB_END & part_mask);
271                     return AVERROR_INVALIDDATA;
272                 }
273                 av_log(s->avctx, AV_LOG_ERROR, "Error at MB: %d\n", xy);
274                 ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y,
275                                 s->mb_x, s->mb_y, ER_MB_ERROR & part_mask);
276
277                 return AVERROR_INVALIDDATA;
278             }
279
280             ff_mpv_decode_mb(s, s->block);
281             if (s->loop_filter)
282                 ff_h263_loop_filter(s);
283         }
284
285         ff_mpeg_draw_horiz_band(s, s->mb_y * mb_size, mb_size);
286         ff_mpv_report_decode_progress(s);
287
288         s->mb_x = 0;
289     }
290
291     assert(s->mb_x == 0 && s->mb_y == s->mb_height);
292
293     if (s->codec_id == AV_CODEC_ID_MPEG4         &&
294         (s->workaround_bugs & FF_BUG_AUTODETECT) &&
295         get_bits_left(&s->gb) >= 48              &&
296         show_bits(&s->gb, 24) == 0x4010          &&
297         !s->data_partitioning)
298         s->padding_bug_score += 32;
299
300     /* try to detect the padding bug */
301     if (s->codec_id == AV_CODEC_ID_MPEG4         &&
302         (s->workaround_bugs & FF_BUG_AUTODETECT) &&
303         get_bits_left(&s->gb) >= 0               &&
304         get_bits_left(&s->gb) < 48               &&
305         !s->data_partitioning) {
306         const int bits_count = get_bits_count(&s->gb);
307         const int bits_left  = s->gb.size_in_bits - bits_count;
308
309         if (bits_left == 0) {
310             s->padding_bug_score += 16;
311         } else if (bits_left != 1) {
312             int v = show_bits(&s->gb, 8);
313             v |= 0x7F >> (7 - (bits_count & 7));
314
315             if (v == 0x7F && bits_left <= 8)
316                 s->padding_bug_score--;
317             else if (v == 0x7F && ((get_bits_count(&s->gb) + 8) & 8) &&
318                      bits_left <= 16)
319                 s->padding_bug_score += 4;
320             else
321                 s->padding_bug_score++;
322         }
323     }
324
325     if (s->workaround_bugs & FF_BUG_AUTODETECT) {
326         if (s->codec_id == AV_CODEC_ID_H263 ||
327             (s->padding_bug_score > -2 && !s->data_partitioning))
328             s->workaround_bugs |= FF_BUG_NO_PADDING;
329         else
330             s->workaround_bugs &= ~FF_BUG_NO_PADDING;
331     }
332
333     // handle formats which don't have unique end markers
334     if (s->msmpeg4_version || (s->workaround_bugs & FF_BUG_NO_PADDING)) { // FIXME perhaps solve this more cleanly
335         int left      = get_bits_left(&s->gb);
336         int max_extra = 7;
337
338         /* no markers in M$ crap */
339         if (s->msmpeg4_version && s->pict_type == AV_PICTURE_TYPE_I)
340             max_extra += 17;
341
342         /* buggy padding but the frame should still end approximately at
343          * the bitstream end */
344         if ((s->workaround_bugs & FF_BUG_NO_PADDING) &&
345             (s->avctx->err_recognition & AV_EF_BUFFER))
346             max_extra += 48;
347         else if ((s->workaround_bugs & FF_BUG_NO_PADDING))
348             max_extra += 256 * 256 * 256 * 64;
349
350         if (left > max_extra)
351             av_log(s->avctx, AV_LOG_ERROR,
352                    "discarding %d junk bits at end, next would be %X\n",
353                    left, show_bits(&s->gb, 24));
354         else if (left < 0)
355             av_log(s->avctx, AV_LOG_ERROR, "overreading %d bits\n", -left);
356         else
357             ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y,
358                             s->mb_x - 1, s->mb_y, ER_MB_END);
359
360         return 0;
361     }
362
363     av_log(s->avctx, AV_LOG_ERROR,
364            "slice end not reached but screenspace end (%d left %06X, score= %d)\n",
365            get_bits_left(&s->gb), show_bits(&s->gb, 24), s->padding_bug_score);
366
367     ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y,
368                     ER_MB_END & part_mask);
369
370     return AVERROR_INVALIDDATA;
371 }
372
373 int ff_h263_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
374                          AVPacket *avpkt)
375 {
376     const uint8_t *buf = avpkt->data;
377     int buf_size       = avpkt->size;
378     MpegEncContext *s  = avctx->priv_data;
379     int ret;
380     AVFrame *pict = data;
381
382     /* no supplementary picture */
383     if (buf_size == 0) {
384         /* special case for last picture */
385         if (s->low_delay == 0 && s->next_picture_ptr) {
386             if ((ret = av_frame_ref(pict, s->next_picture_ptr->f)) < 0)
387                 return ret;
388             s->next_picture_ptr = NULL;
389
390             *got_frame = 1;
391         }
392
393         return 0;
394     }
395
396     if (s->avctx->flags & AV_CODEC_FLAG_TRUNCATED) {
397         int next;
398
399         if (CONFIG_MPEG4_DECODER && s->codec_id == AV_CODEC_ID_MPEG4) {
400             next = ff_mpeg4_find_frame_end(&s->parse_context, buf, buf_size);
401         } else if (CONFIG_H263_DECODER && s->codec_id == AV_CODEC_ID_H263) {
402             next = ff_h263_find_frame_end(&s->parse_context, buf, buf_size);
403         } else {
404             av_log(s->avctx, AV_LOG_ERROR,
405                    "this codec does not support truncated bitstreams\n");
406             return AVERROR(ENOSYS);
407         }
408
409         if (ff_combine_frame(&s->parse_context, next, (const uint8_t **)&buf,
410                              &buf_size) < 0)
411             return buf_size;
412     }
413
414     if (s->bitstream_buffer_size && (s->divx_packed || buf_size < 20)) // divx 5.01+/xvid frame reorder
415         ret = init_get_bits8(&s->gb, s->bitstream_buffer,
416                              s->bitstream_buffer_size);
417     else
418         ret = init_get_bits8(&s->gb, buf, buf_size);
419     s->bitstream_buffer_size = 0;
420
421     if (ret < 0)
422         return ret;
423
424     if (!s->context_initialized)
425         // we need the idct permutaton for reading a custom matrix
426         ff_mpv_idct_init(s);
427
428     /* let's go :-) */
429     if (CONFIG_WMV2_DECODER && s->msmpeg4_version == 5) {
430         ret = ff_wmv2_decode_picture_header(s);
431     } else if (CONFIG_MSMPEG4_DECODER && s->msmpeg4_version) {
432         ret = ff_msmpeg4_decode_picture_header(s);
433     } else if (CONFIG_MPEG4_DECODER && avctx->codec_id == AV_CODEC_ID_MPEG4) {
434         if (s->avctx->extradata_size && s->picture_number == 0) {
435             GetBitContext gb;
436
437             ret = init_get_bits8(&gb, s->avctx->extradata,
438                                  s->avctx->extradata_size);
439             if (ret < 0)
440                 return ret;
441             ff_mpeg4_decode_picture_header(avctx->priv_data, &gb);
442         }
443         ret = ff_mpeg4_decode_picture_header(avctx->priv_data, &s->gb);
444     } else if (CONFIG_H263I_DECODER && s->codec_id == AV_CODEC_ID_H263I) {
445         ret = ff_intel_h263_decode_picture_header(s);
446     } else if (CONFIG_FLV_DECODER && s->h263_flv) {
447         ret = ff_flv_decode_picture_header(s);
448     } else {
449         ret = ff_h263_decode_picture_header(s);
450     }
451
452     if (ret == FRAME_SKIPPED)
453         return get_consumed_bytes(s, buf_size);
454
455     /* skip if the header was thrashed */
456     if (ret < 0) {
457         av_log(s->avctx, AV_LOG_ERROR, "header damaged\n");
458         return ret;
459     }
460
461     if (!s->context_initialized) {
462         avctx->pix_fmt = h263_get_format(avctx);
463         if ((ret = ff_mpv_common_init(s)) < 0)
464             return ret;
465     }
466
467     if (!s->current_picture_ptr || s->current_picture_ptr->f->data[0]) {
468         int i = ff_find_unused_picture(s->avctx, s->picture, 0);
469         if (i < 0)
470             return i;
471         s->current_picture_ptr = &s->picture[i];
472     }
473
474     avctx->has_b_frames = !s->low_delay;
475
476 #define SET_QPEL_FUNC(postfix1, postfix2)                           \
477     s->qdsp.put_        ## postfix1 = ff_put_        ## postfix2;   \
478     s->qdsp.put_no_rnd_ ## postfix1 = ff_put_no_rnd_ ## postfix2;   \
479     s->qdsp.avg_        ## postfix1 = ff_avg_        ## postfix2;
480
481     if (s->workaround_bugs & FF_BUG_STD_QPEL) {
482         SET_QPEL_FUNC(qpel_pixels_tab[0][5], qpel16_mc11_old_c)
483         SET_QPEL_FUNC(qpel_pixels_tab[0][7], qpel16_mc31_old_c)
484         SET_QPEL_FUNC(qpel_pixels_tab[0][9], qpel16_mc12_old_c)
485         SET_QPEL_FUNC(qpel_pixels_tab[0][11], qpel16_mc32_old_c)
486         SET_QPEL_FUNC(qpel_pixels_tab[0][13], qpel16_mc13_old_c)
487         SET_QPEL_FUNC(qpel_pixels_tab[0][15], qpel16_mc33_old_c)
488
489         SET_QPEL_FUNC(qpel_pixels_tab[1][5], qpel8_mc11_old_c)
490         SET_QPEL_FUNC(qpel_pixels_tab[1][7], qpel8_mc31_old_c)
491         SET_QPEL_FUNC(qpel_pixels_tab[1][9], qpel8_mc12_old_c)
492         SET_QPEL_FUNC(qpel_pixels_tab[1][11], qpel8_mc32_old_c)
493         SET_QPEL_FUNC(qpel_pixels_tab[1][13], qpel8_mc13_old_c)
494         SET_QPEL_FUNC(qpel_pixels_tab[1][15], qpel8_mc33_old_c)
495     }
496
497     /* After H263 & mpeg4 header decode we have the height, width,
498      * and other parameters. So then we could init the picture.
499      * FIXME: By the way H263 decoder is evolving it should have
500      * an H263EncContext */
501     if (s->width  != avctx->coded_width  ||
502         s->height != avctx->coded_height ||
503         s->context_reinit) {
504         /* H.263 could change picture size any time */
505         s->context_reinit = 0;
506
507         ret = ff_set_dimensions(avctx, s->width, s->height);
508         if (ret < 0)
509             return ret;
510
511         ff_set_sar(avctx, avctx->sample_aspect_ratio);
512
513         if ((ret = ff_mpv_common_frame_size_change(s)))
514             return ret;
515
516         if (avctx->pix_fmt != h263_get_format(avctx)) {
517             av_log(avctx, AV_LOG_ERROR, "format change not supported\n");
518             avctx->pix_fmt = AV_PIX_FMT_NONE;
519             return AVERROR_UNKNOWN;
520         }
521     }
522
523     if (s->codec_id == AV_CODEC_ID_H263  ||
524         s->codec_id == AV_CODEC_ID_H263P ||
525         s->codec_id == AV_CODEC_ID_H263I)
526         s->gob_index = H263_GOB_HEIGHT(s->height);
527
528     // for skipping the frame
529     s->current_picture.f->pict_type = s->pict_type;
530     s->current_picture.f->key_frame = s->pict_type == AV_PICTURE_TYPE_I;
531
532     /* skip B-frames if we don't have reference frames */
533     if (!s->last_picture_ptr &&
534         (s->pict_type == AV_PICTURE_TYPE_B || s->droppable))
535         return get_consumed_bytes(s, buf_size);
536     if ((avctx->skip_frame >= AVDISCARD_NONREF &&
537          s->pict_type == AV_PICTURE_TYPE_B)    ||
538         (avctx->skip_frame >= AVDISCARD_NONKEY &&
539          s->pict_type != AV_PICTURE_TYPE_I)    ||
540         avctx->skip_frame >= AVDISCARD_ALL)
541         return get_consumed_bytes(s, buf_size);
542
543     if (s->next_p_frame_damaged) {
544         if (s->pict_type == AV_PICTURE_TYPE_B)
545             return get_consumed_bytes(s, buf_size);
546         else
547             s->next_p_frame_damaged = 0;
548     }
549
550     if ((!s->no_rounding) || s->pict_type == AV_PICTURE_TYPE_B) {
551         s->me.qpel_put = s->qdsp.put_qpel_pixels_tab;
552         s->me.qpel_avg = s->qdsp.avg_qpel_pixels_tab;
553     } else {
554         s->me.qpel_put = s->qdsp.put_no_rnd_qpel_pixels_tab;
555         s->me.qpel_avg = s->qdsp.avg_qpel_pixels_tab;
556     }
557
558     if ((ret = ff_mpv_frame_start(s, avctx)) < 0)
559         return ret;
560
561     if (!s->divx_packed && !avctx->hwaccel)
562         ff_thread_finish_setup(avctx);
563
564     if (avctx->hwaccel) {
565         ret = avctx->hwaccel->start_frame(avctx, s->gb.buffer,
566                                           s->gb.buffer_end - s->gb.buffer);
567         if (ret < 0 )
568             return ret;
569     }
570
571     ff_mpeg_er_frame_start(s);
572
573     /* the second part of the wmv2 header contains the MB skip bits which
574      * are stored in current_picture->mb_type which is not available before
575      * ff_mpv_frame_start() */
576     if (CONFIG_WMV2_DECODER && s->msmpeg4_version == 5) {
577         ret = ff_wmv2_decode_secondary_picture_header(s);
578         if (ret < 0)
579             return ret;
580         if (ret == 1)
581             goto intrax8_decoded;
582     }
583
584     /* decode each macroblock */
585     s->mb_x = 0;
586     s->mb_y = 0;
587
588     ret = decode_slice(s);
589     while (s->mb_y < s->mb_height) {
590         if (s->msmpeg4_version) {
591             if (s->slice_height == 0 || s->mb_x != 0 ||
592                 (s->mb_y % s->slice_height) != 0 || get_bits_left(&s->gb) < 0)
593                 break;
594         } else {
595             int prev_x = s->mb_x, prev_y = s->mb_y;
596             if (ff_h263_resync(s) < 0)
597                 break;
598             if (prev_y * s->mb_width + prev_x < s->mb_y * s->mb_width + s->mb_x)
599                 s->er.error_occurred = 1;
600         }
601
602         if (s->msmpeg4_version < 4 && s->h263_pred)
603             ff_mpeg4_clean_buffers(s);
604
605         if (decode_slice(s) < 0)
606             ret = AVERROR_INVALIDDATA;
607     }
608
609     if (s->msmpeg4_version && s->msmpeg4_version < 4 &&
610         s->pict_type == AV_PICTURE_TYPE_I)
611         if (!CONFIG_MSMPEG4_DECODER ||
612             ff_msmpeg4_decode_ext_header(s, buf_size) < 0)
613             s->er.error_status_table[s->mb_num - 1] = ER_MB_ERROR;
614
615     assert(s->bitstream_buffer_size == 0);
616
617     if (CONFIG_MPEG4_DECODER && avctx->codec_id == AV_CODEC_ID_MPEG4)
618         ff_mpeg4_frame_end(avctx, buf, buf_size);
619
620 intrax8_decoded:
621     ff_er_frame_end(&s->er);
622
623     if (avctx->hwaccel) {
624         ret = avctx->hwaccel->end_frame(avctx);
625         if (ret < 0)
626             return ret;
627     }
628
629     ff_mpv_frame_end(s);
630
631     if (!s->divx_packed && avctx->hwaccel)
632         ff_thread_finish_setup(avctx);
633
634     assert(s->current_picture.f->pict_type ==
635            s->current_picture_ptr->f->pict_type);
636     assert(s->current_picture.f->pict_type == s->pict_type);
637     if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) {
638         if ((ret = av_frame_ref(pict, s->current_picture_ptr->f)) < 0)
639             return ret;
640         ff_print_debug_info(s, s->current_picture_ptr);
641     } else if (s->last_picture_ptr) {
642         if ((ret = av_frame_ref(pict, s->last_picture_ptr->f)) < 0)
643             return ret;
644         ff_print_debug_info(s, s->last_picture_ptr);
645     }
646
647     if (s->last_picture_ptr || s->low_delay)
648         *got_frame = 1;
649
650     if (ret && (avctx->err_recognition & AV_EF_EXPLODE))
651         return ret;
652     else
653         return get_consumed_bytes(s, buf_size);
654 }
655
656 const enum AVPixelFormat ff_h263_hwaccel_pixfmt_list_420[] = {
657 #if CONFIG_H263_VAAPI_HWACCEL || CONFIG_MPEG4_VAAPI_HWACCEL
658     AV_PIX_FMT_VAAPI_VLD,
659 #endif
660 #if CONFIG_H263_VDPAU_HWACCEL || CONFIG_MPEG4_VDPAU_HWACCEL
661     AV_PIX_FMT_VDPAU,
662 #endif
663     AV_PIX_FMT_YUV420P,
664     AV_PIX_FMT_NONE
665 };
666
667 AVCodec ff_h263_decoder = {
668     .name           = "h263",
669     .long_name      = NULL_IF_CONFIG_SMALL("H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2"),
670     .type           = AVMEDIA_TYPE_VIDEO,
671     .id             = AV_CODEC_ID_H263,
672     .priv_data_size = sizeof(MpegEncContext),
673     .init           = ff_h263_decode_init,
674     .close          = ff_h263_decode_end,
675     .decode         = ff_h263_decode_frame,
676     .capabilities   = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 |
677                       CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY,
678     .flush          = ff_mpeg_flush,
679     .pix_fmts       = ff_h263_hwaccel_pixfmt_list_420,
680 };