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