2001-07-22 14:18:56 +00:00
|
|
|
/*
|
2003-03-06 11:32:04 +00:00
|
|
|
* H.263 decoder
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2001 Fabrice Bellard
|
2004-01-10 16:04:55 +00:00
|
|
|
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2002-05-25 22:45:33 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2001-07-22 14:18:56 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-25 22:45:33 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2002-05-25 22:45:33 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-07-22 14:18:56 +00:00
|
|
|
*/
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-03-06 11:32:04 +00:00
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2003-03-06 11:32:04 +00:00
|
|
|
* H.263 decoder.
|
|
|
|
*/
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2011-12-18 02:19:40 +00:00
|
|
|
#define UNCHECKED_BITSTREAM_READER 1
|
|
|
|
|
2024-04-25 09:18:18 +00:00
|
|
|
#include "config_components.h"
|
2022-05-23 03:23:35 +00:00
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
#include "avcodec.h"
|
2024-04-25 09:18:18 +00:00
|
|
|
#include "codec_internal.h"
|
2013-03-06 17:31:14 +00:00
|
|
|
#include "error_resilience.h"
|
2024-04-25 09:18:18 +00:00
|
|
|
#include "flvdec.h"
|
2010-01-09 14:59:06 +00:00
|
|
|
#include "h263.h"
|
2024-04-25 09:18:18 +00:00
|
|
|
#include "h263dec.h"
|
|
|
|
#if FF_API_FLAG_TRUNCATED
|
2007-05-08 08:52:38 +00:00
|
|
|
#include "h263_parser.h"
|
2024-04-25 09:18:18 +00:00
|
|
|
#endif
|
2020-04-13 15:33:14 +00:00
|
|
|
#include "hwconfig.h"
|
2013-10-22 17:37:44 +00:00
|
|
|
#include "internal.h"
|
2014-06-20 13:05:45 +00:00
|
|
|
#include "mpeg_er.h"
|
2013-10-22 17:37:44 +00:00
|
|
|
#include "mpeg4video.h"
|
2024-04-25 09:18:18 +00:00
|
|
|
#include "mpeg4videodec.h"
|
|
|
|
#if FF_API_FLAG_TRUNCATED
|
2007-05-09 23:13:43 +00:00
|
|
|
#include "mpeg4video_parser.h"
|
2024-04-25 09:18:18 +00:00
|
|
|
#endif
|
2015-05-31 13:49:55 +00:00
|
|
|
#include "mpegutils.h"
|
2013-10-22 17:37:44 +00:00
|
|
|
#include "mpegvideo.h"
|
2024-04-25 09:18:18 +00:00
|
|
|
#include "mpegvideodec.h"
|
|
|
|
#include "msmpeg4dec.h"
|
2014-01-08 13:00:10 +00:00
|
|
|
#include "qpeldsp.h"
|
2011-03-22 21:36:57 +00:00
|
|
|
#include "thread.h"
|
2024-04-25 09:18:18 +00:00
|
|
|
#include "wmv2dec.h"
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2014-10-08 17:37:00 +00:00
|
|
|
static enum AVPixelFormat h263_get_format(AVCodecContext *avctx)
|
|
|
|
{
|
2017-12-29 15:42:14 +00:00
|
|
|
/* MPEG-4 Studio Profile only, not supported by hardware */
|
|
|
|
if (avctx->bits_per_raw_sample > 8) {
|
2018-07-11 22:07:55 +00:00
|
|
|
av_assert1(((MpegEncContext *)avctx->priv_data)->studio_profile);
|
2017-12-29 15:42:14 +00:00
|
|
|
return avctx->pix_fmt;
|
|
|
|
}
|
|
|
|
|
2014-10-08 17:37:00 +00:00
|
|
|
if (avctx->codec->id == AV_CODEC_ID_MSS2)
|
|
|
|
return AV_PIX_FMT_YUV420P;
|
|
|
|
|
2015-07-27 19:14:31 +00:00
|
|
|
if (CONFIG_GRAY && (avctx->flags & AV_CODEC_FLAG_GRAY)) {
|
2015-05-16 21:32:27 +00:00
|
|
|
if (avctx->color_range == AVCOL_RANGE_UNSPECIFIED)
|
|
|
|
avctx->color_range = AVCOL_RANGE_MPEG;
|
2015-05-08 23:10:25 +00:00
|
|
|
return AV_PIX_FMT_GRAY8;
|
2015-05-16 21:32:27 +00:00
|
|
|
}
|
2015-05-08 23:10:25 +00:00
|
|
|
|
2014-10-08 17:37:00 +00:00
|
|
|
return avctx->pix_fmt = ff_get_format(avctx, avctx->codec->pix_fmts);
|
|
|
|
}
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
av_cold int ff_h263_decode_init(AVCodecContext *avctx)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
|
|
|
MpegEncContext *s = avctx->priv_data;
|
2012-09-10 16:08:09 +00:00
|
|
|
int ret;
|
2001-08-12 00:52:37 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
s->out_format = FMT_H263;
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2002-10-13 13:16:04 +00:00
|
|
|
// set defaults
|
2014-09-05 14:57:57 +00:00
|
|
|
ff_mpv_decode_init(s, avctx);
|
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
s->quant_precision = 5;
|
|
|
|
s->decode_mb = ff_h263_decode_mb;
|
|
|
|
s->low_delay = 1;
|
2002-10-13 13:16:04 +00:00
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
/* select sub codec */
|
2013-10-22 17:37:44 +00:00
|
|
|
switch (avctx->codec->id) {
|
2012-08-05 09:11:04 +00:00
|
|
|
case AV_CODEC_ID_H263:
|
2012-08-07 20:45:46 +00:00
|
|
|
case AV_CODEC_ID_H263P:
|
2009-05-11 04:34:23 +00:00
|
|
|
avctx->chroma_sample_location = AVCHROMA_LOC_CENTER;
|
2001-07-22 14:18:56 +00:00
|
|
|
break;
|
2012-08-05 09:11:04 +00:00
|
|
|
case AV_CODEC_ID_MPEG4:
|
2001-07-22 14:18:56 +00:00
|
|
|
break;
|
2012-08-05 09:11:04 +00:00
|
|
|
case AV_CODEC_ID_MSMPEG4V1:
|
2013-10-22 17:37:44 +00:00
|
|
|
s->h263_pred = 1;
|
|
|
|
s->msmpeg4_version = 1;
|
2002-04-05 04:09:04 +00:00
|
|
|
break;
|
2012-08-05 09:11:04 +00:00
|
|
|
case AV_CODEC_ID_MSMPEG4V2:
|
2013-10-22 17:37:44 +00:00
|
|
|
s->h263_pred = 1;
|
|
|
|
s->msmpeg4_version = 2;
|
2002-04-05 04:09:04 +00:00
|
|
|
break;
|
2012-08-05 09:11:04 +00:00
|
|
|
case AV_CODEC_ID_MSMPEG4V3:
|
2013-10-22 17:37:44 +00:00
|
|
|
s->h263_pred = 1;
|
|
|
|
s->msmpeg4_version = 3;
|
2001-07-22 14:18:56 +00:00
|
|
|
break;
|
2012-08-05 09:11:04 +00:00
|
|
|
case AV_CODEC_ID_WMV1:
|
2013-10-22 17:37:44 +00:00
|
|
|
s->h263_pred = 1;
|
|
|
|
s->msmpeg4_version = 4;
|
2002-04-06 22:29:37 +00:00
|
|
|
break;
|
2012-08-05 09:11:04 +00:00
|
|
|
case AV_CODEC_ID_WMV2:
|
2013-10-22 17:37:44 +00:00
|
|
|
s->h263_pred = 1;
|
|
|
|
s->msmpeg4_version = 5;
|
2002-06-18 00:46:02 +00:00
|
|
|
break;
|
2012-08-05 09:11:04 +00:00
|
|
|
case AV_CODEC_ID_VC1:
|
|
|
|
case AV_CODEC_ID_WMV3:
|
|
|
|
case AV_CODEC_ID_VC1IMAGE:
|
|
|
|
case AV_CODEC_ID_WMV3IMAGE:
|
2012-08-24 15:45:57 +00:00
|
|
|
case AV_CODEC_ID_MSS2:
|
2013-10-22 17:37:44 +00:00
|
|
|
s->h263_pred = 1;
|
|
|
|
s->msmpeg4_version = 6;
|
2009-05-11 04:34:23 +00:00
|
|
|
avctx->chroma_sample_location = AVCHROMA_LOC_LEFT;
|
2005-01-30 16:34:57 +00:00
|
|
|
break;
|
2012-08-05 09:11:04 +00:00
|
|
|
case AV_CODEC_ID_H263I:
|
2001-07-22 14:18:56 +00:00
|
|
|
break;
|
2012-08-05 09:11:04 +00:00
|
|
|
case AV_CODEC_ID_FLV1:
|
2003-07-09 23:10:59 +00:00
|
|
|
s->h263_flv = 1;
|
|
|
|
break;
|
2001-07-22 14:18:56 +00:00
|
|
|
default:
|
2013-10-26 17:31:46 +00:00
|
|
|
av_log(avctx, AV_LOG_ERROR, "Unsupported codec %d\n",
|
|
|
|
avctx->codec->id);
|
|
|
|
return AVERROR(ENOSYS);
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
2002-07-14 18:37:35 +00:00
|
|
|
|
2015-01-27 15:52:22 +00:00
|
|
|
if (avctx->codec_tag == AV_RL32("L263") || avctx->codec_tag == AV_RL32("S263"))
|
|
|
|
if (avctx->extradata_size == 56 && avctx->extradata[0] == 1)
|
|
|
|
s->ehc_mode = 1;
|
2013-08-24 16:44:24 +00:00
|
|
|
|
2016-04-27 17:45:23 +00:00
|
|
|
/* for H.263, we allocate the images after having read the header */
|
2013-10-22 17:37:44 +00:00
|
|
|
if (avctx->codec->id != AV_CODEC_ID_H263 &&
|
2013-10-23 17:26:59 +00:00
|
|
|
avctx->codec->id != AV_CODEC_ID_H263P &&
|
2014-08-08 15:11:20 +00:00
|
|
|
avctx->codec->id != AV_CODEC_ID_MPEG4) {
|
2014-10-08 17:37:00 +00:00
|
|
|
avctx->pix_fmt = h263_get_format(avctx);
|
2014-08-08 15:11:20 +00:00
|
|
|
ff_mpv_idct_init(s);
|
2014-08-10 15:25:12 +00:00
|
|
|
if ((ret = ff_mpv_common_init(s)) < 0)
|
2012-09-10 16:08:09 +00:00
|
|
|
return ret;
|
2014-08-08 15:11:20 +00:00
|
|
|
}
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2013-11-05 07:11:47 +00:00
|
|
|
ff_h263dsp_init(&s->h263dsp);
|
2014-01-08 13:00:10 +00:00
|
|
|
ff_qpeldsp_init(&s->qdsp);
|
2013-10-22 17:37:44 +00:00
|
|
|
ff_h263_decode_init_vlc();
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
av_cold int ff_h263_decode_end(AVCodecContext *avctx)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
|
|
|
MpegEncContext *s = avctx->priv_data;
|
|
|
|
|
2014-08-10 15:25:12 +00:00
|
|
|
ff_mpv_common_end(s);
|
2001-07-22 14:18:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-09-12 11:10:33 +00:00
|
|
|
/**
|
2011-12-07 12:03:53 +00:00
|
|
|
* Return the number of bytes consumed for building the current frame.
|
2002-09-12 11:10:33 +00:00
|
|
|
*/
|
2013-10-22 17:37:44 +00:00
|
|
|
static int get_consumed_bytes(MpegEncContext *s, int buf_size)
|
|
|
|
{
|
|
|
|
int pos = (get_bits_count(&s->gb) + 7) >> 3;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->divx_packed || s->avctx->hwaccel) {
|
|
|
|
/* We would have to scan through the whole buf to handle the weird
|
|
|
|
* reordering ... */
|
2005-12-17 18:14:38 +00:00
|
|
|
return buf_size;
|
2024-04-25 09:18:18 +00:00
|
|
|
#if FF_API_FLAG_TRUNCATED
|
2015-06-29 19:59:37 +00:00
|
|
|
} else if (s->avctx->flags & AV_CODEC_FLAG_TRUNCATED) {
|
2002-11-08 18:35:39 +00:00
|
|
|
pos -= s->parse_context.last_index;
|
2013-10-22 17:37:44 +00:00
|
|
|
// padding is not really read so this might be -1
|
|
|
|
if (pos < 0)
|
|
|
|
pos = 0;
|
2002-11-08 18:35:39 +00:00
|
|
|
return pos;
|
2024-04-25 09:18:18 +00:00
|
|
|
#endif
|
2013-10-22 17:37:44 +00:00
|
|
|
} else {
|
|
|
|
// avoid infinite loops (maybe not needed...)
|
|
|
|
if (pos == 0)
|
|
|
|
pos = 1;
|
|
|
|
// oops ;)
|
|
|
|
if (pos + 10 > buf_size)
|
|
|
|
pos = buf_size;
|
2002-09-12 11:10:33 +00:00
|
|
|
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
static int decode_slice(MpegEncContext *s)
|
|
|
|
{
|
|
|
|
const int part_mask = s->partitioned_frame
|
|
|
|
? (ER_AC_END | ER_AC_ERROR) : 0x7F;
|
2013-10-23 17:26:59 +00:00
|
|
|
const int mb_size = 16 >> s->avctx->lowres;
|
2012-09-10 16:08:09 +00:00
|
|
|
int ret;
|
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
s->last_resync_gb = s->gb;
|
|
|
|
s->first_slice_line = 1;
|
|
|
|
s->resync_mb_x = s->mb_x;
|
|
|
|
s->resync_mb_y = s->mb_y;
|
2002-10-13 13:16:04 +00:00
|
|
|
|
2003-12-03 16:47:17 +00:00
|
|
|
ff_set_qscale(s, s->qscale);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2017-12-29 15:42:14 +00:00
|
|
|
if (s->studio_profile) {
|
|
|
|
if ((ret = ff_mpeg4_decode_studio_slice_header(s->avctx->priv_data)) < 0)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-02-27 08:27:50 +00:00
|
|
|
if (s->avctx->hwaccel) {
|
2013-10-22 17:37:44 +00:00
|
|
|
const uint8_t *start = s->gb.buffer + get_bits_count(&s->gb) / 8;
|
2013-08-21 03:04:46 +00:00
|
|
|
ret = s->avctx->hwaccel->decode_slice(s->avctx, start, s->gb.buffer_end - start);
|
|
|
|
// ensure we exit decode loop
|
|
|
|
s->mb_y = s->mb_height;
|
|
|
|
return ret;
|
2009-02-27 08:27:50 +00:00
|
|
|
}
|
2009-02-23 13:44:51 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->partitioned_frame) {
|
|
|
|
const int qscale = s->qscale;
|
2002-10-13 13:16:04 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
if (CONFIG_MPEG4_DECODER && s->codec_id == AV_CODEC_ID_MPEG4)
|
2013-11-26 10:23:16 +00:00
|
|
|
if ((ret = ff_mpeg4_decode_partitions(s->avctx->priv_data)) < 0)
|
2012-09-10 16:08:09 +00:00
|
|
|
return ret;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-08-28 13:30:03 +00:00
|
|
|
/* restore variables which were modified */
|
2013-10-22 17:37:44 +00:00
|
|
|
s->first_slice_line = 1;
|
|
|
|
s->mb_x = s->resync_mb_x;
|
|
|
|
s->mb_y = s->resync_mb_y;
|
2003-12-03 16:47:17 +00:00
|
|
|
ff_set_qscale(s, qscale);
|
2002-10-13 13:16:04 +00:00
|
|
|
}
|
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
for (; s->mb_y < s->mb_height; s->mb_y++) {
|
2002-10-13 13:16:04 +00:00
|
|
|
/* per-row end of slice checks */
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->msmpeg4_version) {
|
|
|
|
if (s->resync_mb_y + s->slice_height == s->mb_y) {
|
|
|
|
ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y,
|
|
|
|
s->mb_x - 1, s->mb_y, ER_MB_END);
|
2003-03-20 01:00:57 +00:00
|
|
|
|
2002-10-13 13:16:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->msmpeg4_version == 1) {
|
|
|
|
s->last_dc[0] =
|
|
|
|
s->last_dc[1] =
|
|
|
|
s->last_dc[2] = 128;
|
2002-10-13 13:16:04 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-10-13 13:16:04 +00:00
|
|
|
ff_init_block_index(s);
|
2013-10-22 17:37:44 +00:00
|
|
|
for (; s->mb_x < s->mb_width; s->mb_x++) {
|
2002-10-13 13:16:04 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ff_update_block_index(s);
|
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->resync_mb_x == s->mb_x && s->resync_mb_y + 1 == s->mb_y)
|
|
|
|
s->first_slice_line = 0;
|
2002-10-13 13:16:04 +00:00
|
|
|
|
|
|
|
/* DCT & quantize */
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
s->mv_dir = MV_DIR_FORWARD;
|
2002-10-13 13:16:04 +00:00
|
|
|
s->mv_type = MV_TYPE_16X16;
|
2015-10-02 13:16:46 +00:00
|
|
|
ff_dlog(s, "%d %06X\n",
|
|
|
|
get_bits_count(&s->gb), show_bits(&s->gb, 24));
|
2014-05-02 20:47:11 +00:00
|
|
|
|
2015-04-20 01:34:22 +00:00
|
|
|
ff_tlog(NULL, "Decoding MB at %dx%d\n", s->mb_x, s->mb_y);
|
2013-10-22 17:37:44 +00:00
|
|
|
ret = s->decode_mb(s, s->block);
|
2002-10-13 13:16:04 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->pict_type != AV_PICTURE_TYPE_B)
|
2003-07-29 02:09:12 +00:00
|
|
|
ff_h263_update_motion_val(s);
|
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
if (ret < 0) {
|
|
|
|
const int xy = s->mb_x + s->mb_y * s->mb_stride;
|
|
|
|
if (ret == SLICE_END) {
|
2017-06-18 18:15:05 +00:00
|
|
|
ff_mpv_reconstruct_mb(s, s->block);
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->loop_filter)
|
2003-12-01 15:23:14 +00:00
|
|
|
ff_h263_loop_filter(s);
|
2003-07-03 22:35:39 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y,
|
|
|
|
s->mb_x, s->mb_y, ER_MB_END & part_mask);
|
2002-10-14 19:53:04 +00:00
|
|
|
|
|
|
|
s->padding_bug_score--;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
if (++s->mb_x >= s->mb_width) {
|
|
|
|
s->mb_x = 0;
|
|
|
|
ff_mpeg_draw_horiz_band(s, s->mb_y * mb_size, mb_size);
|
2014-08-10 15:25:12 +00:00
|
|
|
ff_mpv_report_decode_progress(s);
|
2002-10-13 13:16:04 +00:00
|
|
|
s->mb_y++;
|
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
return 0;
|
2013-10-22 17:37:44 +00:00
|
|
|
} else if (ret == SLICE_NOEND) {
|
|
|
|
av_log(s->avctx, AV_LOG_ERROR,
|
|
|
|
"Slice mismatch at MB: %d\n", xy);
|
|
|
|
ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y,
|
|
|
|
s->mb_x + 1, s->mb_y,
|
|
|
|
ER_MB_END & part_mask);
|
2012-09-10 16:08:09 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2002-10-13 13:16:04 +00:00
|
|
|
}
|
2003-11-03 13:26:22 +00:00
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "Error at MB: %d\n", xy);
|
2013-10-22 17:37:44 +00:00
|
|
|
ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y,
|
|
|
|
s->mb_x, s->mb_y, ER_MB_ERROR & part_mask);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2024-04-25 09:18:18 +00:00
|
|
|
if ((s->avctx->err_recognition & AV_EF_IGNORE_ERR) && get_bits_left(&s->gb) > 0)
|
2014-05-02 14:33:56 +00:00
|
|
|
continue;
|
2012-09-10 16:08:09 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2002-10-13 13:16:04 +00:00
|
|
|
}
|
2003-07-03 22:35:39 +00:00
|
|
|
|
2017-06-18 18:15:05 +00:00
|
|
|
ff_mpv_reconstruct_mb(s, s->block);
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->loop_filter)
|
2003-12-01 15:23:14 +00:00
|
|
|
ff_h263_loop_filter(s);
|
2002-10-13 13:16:04 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
ff_mpeg_draw_horiz_band(s, s->mb_y * mb_size, mb_size);
|
2014-08-10 15:25:12 +00:00
|
|
|
ff_mpv_report_decode_progress(s);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
s->mb_x = 0;
|
2002-10-13 13:16:04 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-10-23 17:26:59 +00:00
|
|
|
av_assert1(s->mb_x == 0 && s->mb_y == s->mb_height);
|
2002-10-13 13:16:04 +00:00
|
|
|
|
2018-05-03 19:41:40 +00:00
|
|
|
// Detect incorrect padding with wrong stuffing codes used by NEC N-02B
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->codec_id == AV_CODEC_ID_MPEG4 &&
|
|
|
|
(s->workaround_bugs & FF_BUG_AUTODETECT) &&
|
|
|
|
get_bits_left(&s->gb) >= 48 &&
|
|
|
|
show_bits(&s->gb, 24) == 0x4010 &&
|
|
|
|
!s->data_partitioning)
|
|
|
|
s->padding_bug_score += 32;
|
2010-12-04 05:44:18 +00:00
|
|
|
|
2002-10-14 19:53:04 +00:00
|
|
|
/* try to detect the padding bug */
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->codec_id == AV_CODEC_ID_MPEG4 &&
|
|
|
|
(s->workaround_bugs & FF_BUG_AUTODETECT) &&
|
|
|
|
get_bits_left(&s->gb) >= 0 &&
|
2013-10-23 17:26:59 +00:00
|
|
|
get_bits_left(&s->gb) < 137 &&
|
2013-10-22 17:37:44 +00:00
|
|
|
!s->data_partitioning) {
|
|
|
|
const int bits_count = get_bits_count(&s->gb);
|
|
|
|
const int bits_left = s->gb.size_in_bits - bits_count;
|
|
|
|
|
|
|
|
if (bits_left == 0) {
|
|
|
|
s->padding_bug_score += 16;
|
|
|
|
} else if (bits_left != 1) {
|
|
|
|
int v = show_bits(&s->gb, 8);
|
|
|
|
v |= 0x7F >> (7 - (bits_count & 7));
|
|
|
|
|
|
|
|
if (v == 0x7F && bits_left <= 8)
|
2002-10-14 19:53:04 +00:00
|
|
|
s->padding_bug_score--;
|
2013-10-22 17:37:44 +00:00
|
|
|
else if (v == 0x7F && ((get_bits_count(&s->gb) + 8) & 8) &&
|
|
|
|
bits_left <= 16)
|
|
|
|
s->padding_bug_score += 4;
|
2002-10-14 19:53:04 +00:00
|
|
|
else
|
2005-12-17 18:14:38 +00:00
|
|
|
s->padding_bug_score++;
|
|
|
|
}
|
2002-10-14 19:53:04 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2014-03-04 01:47:12 +00:00
|
|
|
if (s->codec_id == AV_CODEC_ID_H263 &&
|
|
|
|
(s->workaround_bugs & FF_BUG_AUTODETECT) &&
|
|
|
|
get_bits_left(&s->gb) >= 8 &&
|
|
|
|
get_bits_left(&s->gb) < 300 &&
|
|
|
|
s->pict_type == AV_PICTURE_TYPE_I &&
|
|
|
|
show_bits(&s->gb, 8) == 0 &&
|
|
|
|
!s->data_partitioning) {
|
|
|
|
|
|
|
|
s->padding_bug_score += 32;
|
|
|
|
}
|
|
|
|
|
2014-10-03 10:32:21 +00:00
|
|
|
if (s->codec_id == AV_CODEC_ID_H263 &&
|
|
|
|
(s->workaround_bugs & FF_BUG_AUTODETECT) &&
|
|
|
|
get_bits_left(&s->gb) >= 64 &&
|
|
|
|
AV_RB64(s->gb.buffer_end - 8) == 0xCDCDCDCDFC7F0000) {
|
|
|
|
|
|
|
|
s->padding_bug_score += 32;
|
|
|
|
}
|
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->workaround_bugs & FF_BUG_AUTODETECT) {
|
2014-10-07 10:49:38 +00:00
|
|
|
if (
|
2014-10-03 16:42:25 +00:00
|
|
|
(s->padding_bug_score > -2 && !s->data_partitioning))
|
2013-10-22 17:37:44 +00:00
|
|
|
s->workaround_bugs |= FF_BUG_NO_PADDING;
|
2004-11-13 01:05:12 +00:00
|
|
|
else
|
|
|
|
s->workaround_bugs &= ~FF_BUG_NO_PADDING;
|
|
|
|
}
|
2002-10-14 19:53:04 +00:00
|
|
|
|
2005-06-17 15:02:53 +00:00
|
|
|
// handle formats which don't have unique end markers
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->msmpeg4_version || (s->workaround_bugs & FF_BUG_NO_PADDING)) { // FIXME perhaps solve this more cleanly
|
|
|
|
int left = get_bits_left(&s->gb);
|
|
|
|
int max_extra = 7;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-10-13 13:16:04 +00:00
|
|
|
/* no markers in M$ crap */
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->msmpeg4_version && s->pict_type == AV_PICTURE_TYPE_I)
|
|
|
|
max_extra += 17;
|
|
|
|
|
|
|
|
/* buggy padding but the frame should still end approximately at
|
|
|
|
* the bitstream end */
|
|
|
|
if ((s->workaround_bugs & FF_BUG_NO_PADDING) &&
|
2015-05-22 18:38:07 +00:00
|
|
|
(s->avctx->err_recognition & (AV_EF_BUFFER|AV_EF_AGGRESSIVE)))
|
2013-10-22 17:37:44 +00:00
|
|
|
max_extra += 48;
|
|
|
|
else if ((s->workaround_bugs & FF_BUG_NO_PADDING))
|
|
|
|
max_extra += 256 * 256 * 256 * 64;
|
|
|
|
|
|
|
|
if (left > max_extra)
|
|
|
|
av_log(s->avctx, AV_LOG_ERROR,
|
|
|
|
"discarding %d junk bits at end, next would be %X\n",
|
|
|
|
left, show_bits(&s->gb, 24));
|
|
|
|
else if (left < 0)
|
2003-11-03 13:26:22 +00:00
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "overreading %d bits\n", -left);
|
2013-10-22 17:37:44 +00:00
|
|
|
else
|
|
|
|
ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y,
|
|
|
|
s->mb_x - 1, s->mb_y, ER_MB_END);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-10-13 13:16:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2002-10-14 19:53:04 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
av_log(s->avctx, AV_LOG_ERROR,
|
|
|
|
"slice end not reached but screenspace end (%d left %06X, score= %d)\n",
|
|
|
|
get_bits_left(&s->gb), show_bits(&s->gb, 24), s->padding_bug_score);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y,
|
|
|
|
ER_MB_END & part_mask);
|
2003-03-20 01:00:57 +00:00
|
|
|
|
2012-09-10 16:08:09 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2002-10-13 13:16:04 +00:00
|
|
|
}
|
|
|
|
|
2024-04-25 09:18:18 +00:00
|
|
|
int ff_h263_decode_frame(AVCodecContext *avctx, AVFrame *pict,
|
|
|
|
int *got_frame, AVPacket *avpkt)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
2009-04-07 15:59:50 +00:00
|
|
|
const uint8_t *buf = avpkt->data;
|
2013-10-22 17:37:44 +00:00
|
|
|
int buf_size = avpkt->size;
|
|
|
|
MpegEncContext *s = avctx->priv_data;
|
2003-09-09 22:50:44 +00:00
|
|
|
int ret;
|
2013-10-28 16:05:59 +00:00
|
|
|
int slice_ret = 0;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-07-23 09:58:02 +00:00
|
|
|
/* no supplementary picture */
|
2001-07-22 14:18:56 +00:00
|
|
|
if (buf_size == 0) {
|
2003-07-23 09:58:02 +00:00
|
|
|
/* special case for last picture */
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->low_delay == 0 && s->next_picture_ptr) {
|
2014-03-31 17:46:29 +00:00
|
|
|
if ((ret = av_frame_ref(pict, s->next_picture_ptr->f)) < 0)
|
2012-11-21 20:34:46 +00:00
|
|
|
return ret;
|
2013-10-22 17:37:44 +00:00
|
|
|
s->next_picture_ptr = NULL;
|
2003-07-23 09:58:02 +00:00
|
|
|
|
2012-11-13 18:35:22 +00:00
|
|
|
*got_frame = 1;
|
2003-07-23 09:58:02 +00:00
|
|
|
}
|
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2003-01-21 21:30:48 +00:00
|
|
|
|
2024-04-25 09:18:18 +00:00
|
|
|
#if FF_API_FLAG_TRUNCATED
|
2015-06-29 19:59:37 +00:00
|
|
|
if (s->avctx->flags & AV_CODEC_FLAG_TRUNCATED) {
|
2002-11-08 18:35:39 +00:00
|
|
|
int next;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
if (CONFIG_MPEG4_DECODER && s->codec_id == AV_CODEC_ID_MPEG4) {
|
|
|
|
next = ff_mpeg4_find_frame_end(&s->parse_context, buf, buf_size);
|
|
|
|
} else if (CONFIG_H263_DECODER && s->codec_id == AV_CODEC_ID_H263) {
|
|
|
|
next = ff_h263_find_frame_end(&s->parse_context, buf, buf_size);
|
2013-10-23 17:26:59 +00:00
|
|
|
} else if (CONFIG_H263P_DECODER && s->codec_id == AV_CODEC_ID_H263P) {
|
|
|
|
next = ff_h263_find_frame_end(&s->parse_context, buf, buf_size);
|
2013-10-22 17:37:44 +00:00
|
|
|
} else {
|
|
|
|
av_log(s->avctx, AV_LOG_ERROR,
|
|
|
|
"this codec does not support truncated bitstreams\n");
|
2013-10-26 17:31:46 +00:00
|
|
|
return AVERROR(ENOSYS);
|
2002-11-08 18:35:39 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
if (ff_combine_frame(&s->parse_context, next, (const uint8_t **)&buf,
|
|
|
|
&buf_size) < 0)
|
2002-11-08 18:35:39 +00:00
|
|
|
return buf_size;
|
|
|
|
}
|
2024-04-25 09:18:18 +00:00
|
|
|
#endif
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2002-10-23 08:14:12 +00:00
|
|
|
retry:
|
2013-10-23 17:26:59 +00:00
|
|
|
if (s->divx_packed && s->bitstream_buffer_size) {
|
2011-03-03 02:37:44 +00:00
|
|
|
int i;
|
2013-10-23 17:26:59 +00:00
|
|
|
for(i=0; i < buf_size-3; i++) {
|
|
|
|
if (buf[i]==0 && buf[i+1]==0 && buf[i+2]==1) {
|
|
|
|
if (buf[i+3]==0xB0) {
|
2011-03-03 13:06:58 +00:00
|
|
|
av_log(s->avctx, AV_LOG_WARNING, "Discarding excessive bitstream in packed xvid\n");
|
2013-10-23 17:26:59 +00:00
|
|
|
s->bitstream_buffer_size = 0;
|
2011-03-03 13:06:58 +00:00
|
|
|
}
|
2011-03-03 02:37:44 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2015-04-03 17:14:16 +00:00
|
|
|
if (s->bitstream_buffer_size && (s->divx_packed || buf_size <= MAX_NVOP_SIZE)) // divx 5.01+/xvid frame reorder
|
2013-10-26 17:02:34 +00:00
|
|
|
ret = init_get_bits8(&s->gb, s->bitstream_buffer,
|
|
|
|
s->bitstream_buffer_size);
|
2013-10-22 17:37:44 +00:00
|
|
|
else
|
2013-10-21 21:32:56 +00:00
|
|
|
ret = init_get_bits8(&s->gb, buf, buf_size);
|
2013-10-23 17:26:59 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
s->bitstream_buffer_size = 0;
|
2013-10-21 21:32:56 +00:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2014-08-08 15:21:02 +00:00
|
|
|
if (!s->context_initialized)
|
2016-04-27 17:45:23 +00:00
|
|
|
// we need the idct permutation for reading a custom matrix
|
2014-08-08 15:11:20 +00:00
|
|
|
ff_mpv_idct_init(s);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
/* let's go :-) */
|
2013-10-22 17:37:44 +00:00
|
|
|
if (CONFIG_WMV2_DECODER && s->msmpeg4_version == 5) {
|
|
|
|
ret = ff_wmv2_decode_picture_header(s);
|
2009-01-14 17:19:17 +00:00
|
|
|
} else if (CONFIG_MSMPEG4_DECODER && s->msmpeg4_version) {
|
2012-02-15 11:05:06 +00:00
|
|
|
ret = ff_msmpeg4_decode_picture_header(s);
|
2013-11-26 10:07:22 +00:00
|
|
|
} else if (CONFIG_MPEG4_DECODER && avctx->codec_id == AV_CODEC_ID_MPEG4) {
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->avctx->extradata_size && s->picture_number == 0) {
|
2002-10-14 12:21:54 +00:00
|
|
|
GetBitContext gb;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-10-21 21:32:56 +00:00
|
|
|
if (init_get_bits8(&gb, s->avctx->extradata, s->avctx->extradata_size) >= 0 )
|
2024-04-25 09:18:18 +00:00
|
|
|
ff_mpeg4_decode_picture_header(avctx->priv_data, &gb, 1, 0);
|
2002-10-14 12:21:54 +00:00
|
|
|
}
|
2024-04-25 09:18:18 +00:00
|
|
|
ret = ff_mpeg4_decode_picture_header(avctx->priv_data, &s->gb, 0, 0);
|
2012-08-05 09:11:04 +00:00
|
|
|
} else if (CONFIG_H263I_DECODER && s->codec_id == AV_CODEC_ID_H263I) {
|
2010-01-07 06:25:41 +00:00
|
|
|
ret = ff_intel_h263_decode_picture_header(s);
|
2010-01-07 05:36:45 +00:00
|
|
|
} else if (CONFIG_FLV_DECODER && s->h263_flv) {
|
|
|
|
ret = ff_flv_decode_picture_header(s);
|
2001-07-22 14:18:56 +00:00
|
|
|
} else {
|
2012-02-09 09:28:46 +00:00
|
|
|
ret = ff_h263_decode_picture_header(s);
|
2002-03-19 03:51:36 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-10-23 17:26:59 +00:00
|
|
|
if (ret < 0 || ret == FRAME_SKIPPED) {
|
2012-04-18 19:03:03 +00:00
|
|
|
if ( s->width != avctx->coded_width
|
|
|
|
|| s->height != avctx->coded_height) {
|
|
|
|
av_log(s->avctx, AV_LOG_WARNING, "Reverting picture dimensions change due to header decoding failure\n");
|
|
|
|
s->width = avctx->coded_width;
|
|
|
|
s->height= avctx->coded_height;
|
|
|
|
}
|
|
|
|
}
|
2013-10-22 17:37:44 +00:00
|
|
|
if (ret == FRAME_SKIPPED)
|
|
|
|
return get_consumed_bytes(s, buf_size);
|
2003-08-01 11:00:03 +00:00
|
|
|
|
|
|
|
/* skip if the header was thrashed */
|
2013-10-22 17:37:44 +00:00
|
|
|
if (ret < 0) {
|
2003-11-03 13:26:22 +00:00
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "header damaged\n");
|
2012-09-10 16:08:09 +00:00
|
|
|
return ret;
|
2003-08-01 11:00:03 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2014-10-08 17:37:00 +00:00
|
|
|
if (!s->context_initialized) {
|
|
|
|
avctx->pix_fmt = h263_get_format(avctx);
|
2014-08-10 15:25:12 +00:00
|
|
|
if ((ret = ff_mpv_common_init(s)) < 0)
|
2014-08-08 15:21:02 +00:00
|
|
|
return ret;
|
2014-10-08 17:37:00 +00:00
|
|
|
}
|
2014-08-08 15:21:02 +00:00
|
|
|
|
2014-08-14 20:31:24 +00:00
|
|
|
if (!s->current_picture_ptr || s->current_picture_ptr->f->data[0]) {
|
2015-04-27 21:09:21 +00:00
|
|
|
int i = ff_find_unused_picture(s->avctx, s->picture, 0);
|
2014-08-08 15:21:02 +00:00
|
|
|
if (i < 0)
|
|
|
|
return i;
|
|
|
|
s->current_picture_ptr = &s->picture[i];
|
|
|
|
}
|
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
avctx->has_b_frames = !s->low_delay;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-11-30 01:35:13 +00:00
|
|
|
if (CONFIG_MPEG4_DECODER && avctx->codec_id == AV_CODEC_ID_MPEG4) {
|
2024-04-25 09:18:18 +00:00
|
|
|
if (s->pict_type != AV_PICTURE_TYPE_B && s->mb_num/2 > get_bits_left(&s->gb))
|
|
|
|
return AVERROR_INVALIDDATA;
|
2013-11-30 01:35:13 +00:00
|
|
|
if (ff_mpeg4_workaround_bugs(avctx) == 1)
|
|
|
|
goto retry;
|
2018-05-28 20:29:58 +00:00
|
|
|
if (s->studio_profile != (s->idsp.idct == NULL))
|
|
|
|
ff_mpv_idct_init(s);
|
2013-11-30 01:35:13 +00:00
|
|
|
}
|
2004-06-26 09:52:16 +00:00
|
|
|
|
2016-04-27 17:45:23 +00:00
|
|
|
/* After H.263 & MPEG-4 header decode we have the height, width,
|
2013-10-22 17:37:44 +00:00
|
|
|
* and other parameters. So then we could init the picture.
|
2016-04-27 17:45:23 +00:00
|
|
|
* FIXME: By the way H.263 decoder is evolving it should have
|
2013-10-22 17:37:44 +00:00
|
|
|
* an H263EncContext */
|
2012-09-18 13:48:14 +00:00
|
|
|
if (s->width != avctx->coded_width ||
|
|
|
|
s->height != avctx->coded_height ||
|
|
|
|
s->context_reinit) {
|
|
|
|
/* H.263 could change picture size any time */
|
|
|
|
s->context_reinit = 0;
|
|
|
|
|
2013-10-27 09:02:26 +00:00
|
|
|
ret = ff_set_dimensions(avctx, s->width, s->height);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2012-09-18 13:48:14 +00:00
|
|
|
|
2014-04-28 20:08:33 +00:00
|
|
|
ff_set_sar(avctx, avctx->sample_aspect_ratio);
|
|
|
|
|
2014-08-10 15:25:12 +00:00
|
|
|
if ((ret = ff_mpv_common_frame_size_change(s)))
|
2012-09-18 13:48:14 +00:00
|
|
|
return ret;
|
2014-10-08 17:37:01 +00:00
|
|
|
|
|
|
|
if (avctx->pix_fmt != h263_get_format(avctx)) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "format change not supported\n");
|
|
|
|
avctx->pix_fmt = AV_PIX_FMT_NONE;
|
|
|
|
return AVERROR_UNKNOWN;
|
|
|
|
}
|
2012-09-18 13:48:14 +00:00
|
|
|
}
|
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->codec_id == AV_CODEC_ID_H263 ||
|
|
|
|
s->codec_id == AV_CODEC_ID_H263P ||
|
|
|
|
s->codec_id == AV_CODEC_ID_H263I)
|
2015-04-28 09:38:29 +00:00
|
|
|
s->gob_index = H263_GOB_HEIGHT(s->height);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2011-04-02 09:56:21 +00:00
|
|
|
// for skipping the frame
|
2014-03-31 17:46:29 +00:00
|
|
|
s->current_picture.f->pict_type = s->pict_type;
|
|
|
|
s->current_picture.f->key_frame = s->pict_type == AV_PICTURE_TYPE_I;
|
2002-11-10 10:54:07 +00:00
|
|
|
|
2005-06-17 15:02:53 +00:00
|
|
|
/* skip B-frames if we don't have reference frames */
|
2014-08-14 20:31:24 +00:00
|
|
|
if (!s->last_picture_ptr &&
|
2012-12-07 09:25:27 +00:00
|
|
|
(s->pict_type == AV_PICTURE_TYPE_B || s->droppable))
|
|
|
|
return get_consumed_bytes(s, buf_size);
|
2013-10-22 17:37:44 +00:00
|
|
|
if ((avctx->skip_frame >= AVDISCARD_NONREF &&
|
|
|
|
s->pict_type == AV_PICTURE_TYPE_B) ||
|
|
|
|
(avctx->skip_frame >= AVDISCARD_NONKEY &&
|
|
|
|
s->pict_type != AV_PICTURE_TYPE_I) ||
|
|
|
|
avctx->skip_frame >= AVDISCARD_ALL)
|
2005-07-14 21:39:36 +00:00
|
|
|
return get_consumed_bytes(s, buf_size);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
if ((!s->no_rounding) || s->pict_type == AV_PICTURE_TYPE_B) {
|
2014-01-08 13:00:10 +00:00
|
|
|
s->me.qpel_put = s->qdsp.put_qpel_pixels_tab;
|
|
|
|
s->me.qpel_avg = s->qdsp.avg_qpel_pixels_tab;
|
2013-10-22 17:37:44 +00:00
|
|
|
} else {
|
2014-01-08 13:00:10 +00:00
|
|
|
s->me.qpel_put = s->qdsp.put_no_rnd_qpel_pixels_tab;
|
|
|
|
s->me.qpel_avg = s->qdsp.avg_qpel_pixels_tab;
|
2006-10-01 21:25:17 +00:00
|
|
|
}
|
|
|
|
|
2014-08-10 15:25:12 +00:00
|
|
|
if ((ret = ff_mpv_frame_start(s, avctx)) < 0)
|
2012-09-10 16:08:09 +00:00
|
|
|
return ret;
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2019-08-02 09:18:10 +00:00
|
|
|
if (!s->divx_packed && !avctx->hwaccel)
|
2013-03-13 22:36:51 +00:00
|
|
|
ff_thread_finish_setup(avctx);
|
2011-03-22 21:36:57 +00:00
|
|
|
|
2013-10-26 17:31:46 +00:00
|
|
|
if (avctx->hwaccel) {
|
|
|
|
ret = avctx->hwaccel->start_frame(avctx, s->gb.buffer,
|
|
|
|
s->gb.buffer_end - s->gb.buffer);
|
|
|
|
if (ret < 0 )
|
2012-09-10 16:08:09 +00:00
|
|
|
return ret;
|
2013-10-26 17:31:46 +00:00
|
|
|
}
|
2009-02-27 08:27:50 +00:00
|
|
|
|
2013-02-02 19:42:07 +00:00
|
|
|
ff_mpeg_er_frame_start(s);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
/* the second part of the wmv2 header contains the MB skip bits which
|
|
|
|
* are stored in current_picture->mb_type which is not available before
|
2014-08-10 15:25:12 +00:00
|
|
|
* ff_mpv_frame_start() */
|
2013-10-22 17:37:44 +00:00
|
|
|
if (CONFIG_WMV2_DECODER && s->msmpeg4_version == 5) {
|
2007-11-09 21:37:48 +00:00
|
|
|
ret = ff_wmv2_decode_secondary_picture_header(s);
|
2013-10-22 17:37:44 +00:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
if (ret == 1)
|
2013-10-23 17:26:59 +00:00
|
|
|
goto frame_end;
|
2003-04-12 15:00:32 +00:00
|
|
|
}
|
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
/* decode each macroblock */
|
2013-10-22 17:37:44 +00:00
|
|
|
s->mb_x = 0;
|
|
|
|
s->mb_y = 0;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-10-28 16:05:59 +00:00
|
|
|
slice_ret = decode_slice(s);
|
2013-10-22 17:37:44 +00:00
|
|
|
while (s->mb_y < s->mb_height) {
|
|
|
|
if (s->msmpeg4_version) {
|
2018-04-22 19:07:45 +00:00
|
|
|
if (s->slice_height == 0 || s->mb_x != 0 || slice_ret < 0 ||
|
2013-10-22 17:37:44 +00:00
|
|
|
(s->mb_y % s->slice_height) != 0 || get_bits_left(&s->gb) < 0)
|
2002-10-13 13:16:04 +00:00
|
|
|
break;
|
2013-10-22 17:37:44 +00:00
|
|
|
} else {
|
|
|
|
int prev_x = s->mb_x, prev_y = s->mb_y;
|
|
|
|
if (ff_h263_resync(s) < 0)
|
2002-10-13 13:16:04 +00:00
|
|
|
break;
|
2011-06-02 17:15:58 +00:00
|
|
|
if (prev_y * s->mb_width + prev_x < s->mb_y * s->mb_width + s->mb_x)
|
2013-02-02 19:42:07 +00:00
|
|
|
s->er.error_occurred = 1;
|
2002-06-02 12:16:28 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->msmpeg4_version < 4 && s->h263_pred)
|
2002-10-13 13:16:04 +00:00
|
|
|
ff_mpeg4_clean_buffers(s);
|
2002-03-28 13:41:04 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
if (decode_slice(s) < 0)
|
2013-10-28 16:05:59 +00:00
|
|
|
slice_ret = AVERROR_INVALIDDATA;
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
2002-10-19 01:31:26 +00:00
|
|
|
|
2013-10-22 17:37:44 +00:00
|
|
|
if (s->msmpeg4_version && s->msmpeg4_version < 4 &&
|
|
|
|
s->pict_type == AV_PICTURE_TYPE_I)
|
|
|
|
if (!CONFIG_MSMPEG4_DECODER ||
|
|
|
|
ff_msmpeg4_decode_ext_header(s, buf_size) < 0)
|
2013-02-02 19:42:07 +00:00
|
|
|
s->er.error_status_table[s->mb_num - 1] = ER_MB_ERROR;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-10-23 17:26:59 +00:00
|
|
|
av_assert1(s->bitstream_buffer_size == 0);
|
2013-08-17 13:31:14 +00:00
|
|
|
frame_end:
|
2018-07-02 22:27:04 +00:00
|
|
|
if (!s->studio_profile)
|
|
|
|
ff_er_frame_end(&s->er);
|
2013-09-18 23:08:30 +00:00
|
|
|
|
2013-10-28 10:54:46 +00:00
|
|
|
if (avctx->hwaccel) {
|
|
|
|
ret = avctx->hwaccel->end_frame(avctx);
|
|
|
|
if (ret < 0)
|
2013-09-18 23:08:30 +00:00
|
|
|
return ret;
|
2013-10-28 10:54:46 +00:00
|
|
|
}
|
2013-09-18 23:08:30 +00:00
|
|
|
|
2014-08-10 15:25:12 +00:00
|
|
|
ff_mpv_frame_end(s);
|
2013-09-18 23:08:30 +00:00
|
|
|
|
2013-11-30 01:42:56 +00:00
|
|
|
if (CONFIG_MPEG4_DECODER && avctx->codec_id == AV_CODEC_ID_MPEG4)
|
|
|
|
ff_mpeg4_frame_end(avctx, buf, buf_size);
|
2002-06-02 12:16:28 +00:00
|
|
|
|
2013-03-13 22:36:51 +00:00
|
|
|
if (!s->divx_packed && avctx->hwaccel)
|
|
|
|
ff_thread_finish_setup(avctx);
|
|
|
|
|
2014-04-09 12:36:47 +00:00
|
|
|
av_assert1(s->current_picture.f->pict_type == s->current_picture_ptr->f->pict_type);
|
|
|
|
av_assert1(s->current_picture.f->pict_type == s->pict_type);
|
2011-04-27 23:40:44 +00:00
|
|
|
if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) {
|
2014-03-31 17:46:29 +00:00
|
|
|
if ((ret = av_frame_ref(pict, s->current_picture_ptr->f)) < 0)
|
2012-11-21 20:34:46 +00:00
|
|
|
return ret;
|
2013-03-12 10:23:07 +00:00
|
|
|
ff_print_debug_info(s, s->current_picture_ptr, pict);
|
2024-04-25 09:18:18 +00:00
|
|
|
ff_mpv_export_qp_table(s, pict, s->current_picture_ptr, FF_MPV_QSCALE_TYPE_MPEG1);
|
2014-08-14 20:31:25 +00:00
|
|
|
} else if (s->last_picture_ptr) {
|
2014-03-31 17:46:29 +00:00
|
|
|
if ((ret = av_frame_ref(pict, s->last_picture_ptr->f)) < 0)
|
2012-11-21 20:34:46 +00:00
|
|
|
return ret;
|
2013-03-12 10:23:07 +00:00
|
|
|
ff_print_debug_info(s, s->last_picture_ptr, pict);
|
2024-04-25 09:18:18 +00:00
|
|
|
ff_mpv_export_qp_table(s, pict, s->last_picture_ptr, FF_MPV_QSCALE_TYPE_MPEG1);
|
2006-03-10 20:40:52 +00:00
|
|
|
}
|
|
|
|
|
2013-10-23 17:26:59 +00:00
|
|
|
if (s->last_picture_ptr || s->low_delay) {
|
2013-08-23 22:56:26 +00:00
|
|
|
if ( pict->format == AV_PIX_FMT_YUV420P
|
|
|
|
&& (s->codec_tag == AV_RL32("GEOV") || s->codec_tag == AV_RL32("GEOX"))) {
|
2024-04-25 09:18:18 +00:00
|
|
|
for (int p = 0; p < 3; p++) {
|
2016-01-27 15:19:38 +00:00
|
|
|
int h = AV_CEIL_RSHIFT(pict->height, !!p);
|
2024-04-25 09:18:18 +00:00
|
|
|
|
|
|
|
pict->data[p] += (h - 1) * pict->linesize[p];
|
|
|
|
pict->linesize[p] *= -1;
|
2013-08-23 22:56:26 +00:00
|
|
|
}
|
|
|
|
}
|
2012-11-13 18:35:22 +00:00
|
|
|
*got_frame = 1;
|
2002-03-12 22:54:25 +00:00
|
|
|
}
|
2002-12-18 09:23:24 +00:00
|
|
|
|
2013-10-28 16:05:59 +00:00
|
|
|
if (slice_ret < 0 && (avctx->err_recognition & AV_EF_EXPLODE))
|
2016-12-15 19:31:23 +00:00
|
|
|
return slice_ret;
|
2013-10-22 17:37:44 +00:00
|
|
|
else
|
|
|
|
return get_consumed_bytes(s, buf_size);
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
|
2013-02-18 16:15:52 +00:00
|
|
|
const enum AVPixelFormat ff_h263_hwaccel_pixfmt_list_420[] = {
|
2014-03-25 20:19:57 +00:00
|
|
|
#if CONFIG_H263_VAAPI_HWACCEL || CONFIG_MPEG4_VAAPI_HWACCEL
|
2015-07-28 08:16:59 +00:00
|
|
|
AV_PIX_FMT_VAAPI,
|
2013-02-18 16:15:52 +00:00
|
|
|
#endif
|
2017-11-16 04:59:29 +00:00
|
|
|
#if CONFIG_MPEG4_NVDEC_HWACCEL
|
|
|
|
AV_PIX_FMT_CUDA,
|
|
|
|
#endif
|
2015-10-28 19:21:51 +00:00
|
|
|
#if CONFIG_MPEG4_VDPAU_HWACCEL
|
2013-02-18 16:15:52 +00:00
|
|
|
AV_PIX_FMT_VDPAU,
|
2015-07-11 11:23:21 +00:00
|
|
|
#endif
|
|
|
|
#if CONFIG_H263_VIDEOTOOLBOX_HWACCEL || CONFIG_MPEG4_VIDEOTOOLBOX_HWACCEL
|
|
|
|
AV_PIX_FMT_VIDEOTOOLBOX,
|
2013-02-18 16:15:52 +00:00
|
|
|
#endif
|
|
|
|
AV_PIX_FMT_YUV420P,
|
|
|
|
AV_PIX_FMT_NONE
|
|
|
|
};
|
|
|
|
|
2024-04-25 09:18:18 +00:00
|
|
|
static const AVCodecHWConfigInternal *const h263_hw_config_list[] = {
|
2019-04-29 21:12:33 +00:00
|
|
|
#if CONFIG_H263_VAAPI_HWACCEL
|
|
|
|
HWACCEL_VAAPI(h263),
|
|
|
|
#endif
|
2019-08-02 09:18:10 +00:00
|
|
|
#if CONFIG_MPEG4_NVDEC_HWACCEL
|
|
|
|
HWACCEL_NVDEC(mpeg4),
|
|
|
|
#endif
|
2019-04-29 21:12:33 +00:00
|
|
|
#if CONFIG_MPEG4_VDPAU_HWACCEL
|
|
|
|
HWACCEL_VDPAU(mpeg4),
|
|
|
|
#endif
|
|
|
|
#if CONFIG_H263_VIDEOTOOLBOX_HWACCEL
|
|
|
|
HWACCEL_VIDEOTOOLBOX(h263),
|
|
|
|
#endif
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2024-04-25 09:18:18 +00:00
|
|
|
const FFCodec ff_h263_decoder = {
|
|
|
|
.p.name = "h263",
|
|
|
|
.p.long_name = NULL_IF_CONFIG_SMALL("H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2"),
|
|
|
|
.p.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
.p.id = AV_CODEC_ID_H263,
|
2011-07-17 10:54:31 +00:00
|
|
|
.priv_data_size = sizeof(MpegEncContext),
|
|
|
|
.init = ff_h263_decode_init,
|
|
|
|
.close = ff_h263_decode_end,
|
2024-04-25 09:18:18 +00:00
|
|
|
FF_CODEC_DECODE_CB(ff_h263_decode_frame),
|
|
|
|
.p.capabilities = AV_CODEC_CAP_DRAW_HORIZ_BAND | AV_CODEC_CAP_DR1 |
|
|
|
|
#if FF_API_FLAG_TRUNCATED
|
|
|
|
AV_CODEC_CAP_TRUNCATED |
|
|
|
|
#endif
|
|
|
|
AV_CODEC_CAP_DELAY,
|
|
|
|
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE |
|
|
|
|
FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM,
|
2012-04-06 16:19:39 +00:00
|
|
|
.flush = ff_mpeg_flush,
|
2024-04-25 09:18:18 +00:00
|
|
|
.p.max_lowres = 3,
|
|
|
|
.p.pix_fmts = ff_h263_hwaccel_pixfmt_list_420,
|
|
|
|
.hw_configs = h263_hw_config_list,
|
2001-07-22 14:18:56 +00:00
|
|
|
};
|
2012-07-15 11:54:08 +00:00
|
|
|
|
2024-04-25 09:18:18 +00:00
|
|
|
const FFCodec ff_h263p_decoder = {
|
|
|
|
.p.name = "h263p",
|
|
|
|
.p.long_name = NULL_IF_CONFIG_SMALL("H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2"),
|
|
|
|
.p.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
.p.id = AV_CODEC_ID_H263P,
|
2012-07-15 11:54:08 +00:00
|
|
|
.priv_data_size = sizeof(MpegEncContext),
|
|
|
|
.init = ff_h263_decode_init,
|
|
|
|
.close = ff_h263_decode_end,
|
2024-04-25 09:18:18 +00:00
|
|
|
FF_CODEC_DECODE_CB(ff_h263_decode_frame),
|
|
|
|
.p.capabilities = AV_CODEC_CAP_DRAW_HORIZ_BAND | AV_CODEC_CAP_DR1 |
|
|
|
|
#if FF_API_FLAG_TRUNCATED
|
|
|
|
AV_CODEC_CAP_TRUNCATED |
|
|
|
|
#endif
|
|
|
|
AV_CODEC_CAP_DELAY,
|
|
|
|
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE |
|
|
|
|
FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM,
|
2012-07-15 11:54:08 +00:00
|
|
|
.flush = ff_mpeg_flush,
|
2024-04-25 09:18:18 +00:00
|
|
|
.p.max_lowres = 3,
|
|
|
|
.p.pix_fmts = ff_h263_hwaccel_pixfmt_list_420,
|
|
|
|
.hw_configs = h263_hw_config_list,
|
2012-07-15 11:54:08 +00:00
|
|
|
};
|