2001-07-22 17:18:56 +03:00
|
|
|
/*
|
2003-03-06 13:32:04 +02:00
|
|
|
* H.263 decoder
|
2009-01-19 17:46:40 +02:00
|
|
|
* Copyright (c) 2001 Fabrice Bellard
|
2004-01-10 18:04:55 +02:00
|
|
|
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
|
2001-07-22 17:18:56 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* This file is part of Libav.
|
2006-10-07 18:30:46 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2002-05-26 01:45:33 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2001-07-22 17:18:56 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2001-07-22 17:18:56 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-26 01:45:33 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-07-22 17:18:56 +03:00
|
|
|
*
|
2002-05-26 01:45:33 +03:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2011-03-18 19:35:10 +02:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2006-01-13 00:43:26 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-07-22 17:18:56 +03:00
|
|
|
*/
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-03-06 13:32:04 +02:00
|
|
|
/**
|
2010-04-20 17:45:34 +03:00
|
|
|
* @file
|
2003-03-06 13:32:04 +02:00
|
|
|
* H.263 decoder.
|
|
|
|
*/
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2010-09-08 18:07:14 +03:00
|
|
|
#include "libavutil/cpu.h"
|
2009-02-23 15:44:51 +02:00
|
|
|
#include "internal.h"
|
2001-07-22 17:18:56 +03:00
|
|
|
#include "avcodec.h"
|
2002-05-19 02:03:29 +03:00
|
|
|
#include "dsputil.h"
|
2001-07-22 17:18:56 +03:00
|
|
|
#include "mpegvideo.h"
|
2010-01-09 16:59:06 +02:00
|
|
|
#include "h263.h"
|
2007-05-08 11:52:38 +03:00
|
|
|
#include "h263_parser.h"
|
2007-05-10 02:13:43 +03:00
|
|
|
#include "mpeg4video_parser.h"
|
2007-05-10 16:11:36 +03:00
|
|
|
#include "msmpeg4.h"
|
2009-11-10 20:52:39 +02:00
|
|
|
#include "vdpau_internal.h"
|
2011-06-02 20:15:58 +03:00
|
|
|
#include "thread.h"
|
2010-01-07 07:36:45 +02:00
|
|
|
#include "flv.h"
|
2010-01-08 01:53:49 +02:00
|
|
|
#include "mpeg4video.h"
|
2001-07-22 17:18:56 +03:00
|
|
|
|
|
|
|
//#define DEBUG
|
2002-05-17 01:01:30 +03:00
|
|
|
//#define PRINT_FRAME_TIME
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2008-03-21 05:11:20 +02:00
|
|
|
av_cold int ff_h263_decode_init(AVCodecContext *avctx)
|
2001-07-22 17:18:56 +03:00
|
|
|
{
|
|
|
|
MpegEncContext *s = avctx->priv_data;
|
2001-08-12 03:52:37 +03:00
|
|
|
|
2001-08-15 16:09:47 +03:00
|
|
|
s->avctx = avctx;
|
2001-07-22 17:18:56 +03:00
|
|
|
s->out_format = FMT_H263;
|
|
|
|
|
2004-09-27 14:50:56 +03:00
|
|
|
s->width = avctx->coded_width;
|
|
|
|
s->height = avctx->coded_height;
|
2002-05-22 02:13:57 +03:00
|
|
|
s->workaround_bugs= avctx->workaround_bugs;
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
// set defaults
|
2004-03-16 18:11:29 +02:00
|
|
|
MPV_decode_defaults(s);
|
2002-10-13 16:16:04 +03:00
|
|
|
s->quant_precision=5;
|
|
|
|
s->decode_mb= ff_h263_decode_mb;
|
2002-12-09 02:29:17 +02:00
|
|
|
s->low_delay= 1;
|
2009-02-24 20:27:52 +02:00
|
|
|
avctx->pix_fmt= avctx->get_format(avctx, avctx->codec->pix_fmts);
|
2003-10-17 21:56:01 +03:00
|
|
|
s->unrestricted_mv= 1;
|
2002-10-13 16:16:04 +03:00
|
|
|
|
2001-07-22 17:18:56 +03:00
|
|
|
/* select sub codec */
|
|
|
|
switch(avctx->codec->id) {
|
|
|
|
case CODEC_ID_H263:
|
2003-11-30 16:35:35 +02:00
|
|
|
s->unrestricted_mv= 0;
|
2009-05-11 07:34:23 +03:00
|
|
|
avctx->chroma_sample_location = AVCHROMA_LOC_CENTER;
|
2001-07-22 17:18:56 +03:00
|
|
|
break;
|
2001-08-15 16:09:47 +03:00
|
|
|
case CODEC_ID_MPEG4:
|
2001-07-22 17:18:56 +03:00
|
|
|
break;
|
2002-04-05 07:09:04 +03:00
|
|
|
case CODEC_ID_MSMPEG4V1:
|
2001-07-22 17:18:56 +03:00
|
|
|
s->h263_pred = 1;
|
2002-04-05 07:09:04 +03:00
|
|
|
s->msmpeg4_version=1;
|
|
|
|
break;
|
|
|
|
case CODEC_ID_MSMPEG4V2:
|
|
|
|
s->h263_pred = 1;
|
|
|
|
s->msmpeg4_version=2;
|
|
|
|
break;
|
|
|
|
case CODEC_ID_MSMPEG4V3:
|
|
|
|
s->h263_pred = 1;
|
|
|
|
s->msmpeg4_version=3;
|
2001-07-22 17:18:56 +03:00
|
|
|
break;
|
2002-04-07 01:29:37 +03:00
|
|
|
case CODEC_ID_WMV1:
|
|
|
|
s->h263_pred = 1;
|
|
|
|
s->msmpeg4_version=4;
|
|
|
|
break;
|
2002-06-18 03:46:02 +03:00
|
|
|
case CODEC_ID_WMV2:
|
|
|
|
s->h263_pred = 1;
|
|
|
|
s->msmpeg4_version=5;
|
|
|
|
break;
|
2006-06-29 14:17:50 +03:00
|
|
|
case CODEC_ID_VC1:
|
2005-01-30 18:34:57 +02:00
|
|
|
case CODEC_ID_WMV3:
|
|
|
|
s->h263_pred = 1;
|
|
|
|
s->msmpeg4_version=6;
|
2009-05-11 07:34:23 +03:00
|
|
|
avctx->chroma_sample_location = AVCHROMA_LOC_LEFT;
|
2005-01-30 18:34:57 +02:00
|
|
|
break;
|
2001-07-22 17:18:56 +03:00
|
|
|
case CODEC_ID_H263I:
|
|
|
|
break;
|
2003-07-10 02:10:59 +03:00
|
|
|
case CODEC_ID_FLV1:
|
|
|
|
s->h263_flv = 1;
|
|
|
|
break;
|
2001-07-22 17:18:56 +03:00
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
2002-04-27 15:30:26 +03:00
|
|
|
s->codec_id= avctx->codec->id;
|
2009-02-24 21:04:43 +02:00
|
|
|
avctx->hwaccel= ff_find_hwaccel(avctx->codec->id, avctx->pix_fmt);
|
2002-07-14 21:37:35 +03:00
|
|
|
|
2001-07-22 17:18:56 +03:00
|
|
|
/* for h263, we allocate the images after having read the header */
|
2002-03-19 05:51:36 +02:00
|
|
|
if (avctx->codec->id != CODEC_ID_H263 && avctx->codec->id != CODEC_ID_MPEG4)
|
2001-11-03 02:49:53 +02:00
|
|
|
if (MPV_common_init(s) < 0)
|
|
|
|
return -1;
|
2001-07-22 17:18:56 +03:00
|
|
|
|
|
|
|
h263_decode_init_vlc(s);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2001-07-22 17:18:56 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-03-21 05:11:20 +02:00
|
|
|
av_cold int ff_h263_decode_end(AVCodecContext *avctx)
|
2001-07-22 17:18:56 +03:00
|
|
|
{
|
|
|
|
MpegEncContext *s = avctx->priv_data;
|
|
|
|
|
|
|
|
MPV_common_end(s);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-09-12 14:10:33 +03:00
|
|
|
/**
|
2005-06-17 18:02:53 +03:00
|
|
|
* returns the number of bytes consumed for building the current frame
|
2002-09-12 14:10:33 +03:00
|
|
|
*/
|
|
|
|
static int get_consumed_bytes(MpegEncContext *s, int buf_size){
|
|
|
|
int pos= (get_bits_count(&s->gb)+7)>>3;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2009-02-24 20:24:56 +02:00
|
|
|
if(s->divx_packed || s->avctx->hwaccel){
|
2002-09-12 14:10:33 +03:00
|
|
|
//we would have to scan through the whole buf to handle the weird reordering ...
|
2005-12-17 20:14:38 +02:00
|
|
|
return buf_size;
|
2002-11-08 20:35:39 +02:00
|
|
|
}else if(s->flags&CODEC_FLAG_TRUNCATED){
|
|
|
|
pos -= s->parse_context.last_index;
|
|
|
|
if(pos<0) pos=0; // padding is not really read so this might be -1
|
|
|
|
return pos;
|
2002-09-12 14:10:33 +03:00
|
|
|
}else{
|
2007-06-12 12:29:25 +03:00
|
|
|
if(pos==0) pos=1; //avoid infinite loops (i doubt that is needed but ...)
|
2002-09-12 18:00:09 +03:00
|
|
|
if(pos+10>buf_size) pos=buf_size; // oops ;)
|
2002-09-12 14:10:33 +03:00
|
|
|
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
static int decode_slice(MpegEncContext *s){
|
2003-03-20 03:00:57 +02:00
|
|
|
const int part_mask= s->partitioned_frame ? (AC_END|AC_ERROR) : 0x7F;
|
2004-09-26 16:03:43 +03:00
|
|
|
const int mb_size= 16>>s->avctx->lowres;
|
2002-10-13 16:16:04 +03:00
|
|
|
s->last_resync_gb= s->gb;
|
|
|
|
s->first_slice_line= 1;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
s->resync_mb_x= s->mb_x;
|
|
|
|
s->resync_mb_y= s->mb_y;
|
|
|
|
|
2003-12-03 18:47:17 +02:00
|
|
|
ff_set_qscale(s, s->qscale);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2009-02-27 10:27:50 +02:00
|
|
|
if (s->avctx->hwaccel) {
|
|
|
|
const uint8_t *start= s->gb.buffer + get_bits_count(&s->gb)/8;
|
|
|
|
const uint8_t *end = ff_h263_find_resync_marker(start + 1, s->gb.buffer_end);
|
|
|
|
skip_bits_long(&s->gb, 8*(end - start));
|
|
|
|
return s->avctx->hwaccel->decode_slice(s->avctx, start, end - start);
|
|
|
|
}
|
2009-02-23 15:44:51 +02:00
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
if(s->partitioned_frame){
|
|
|
|
const int qscale= s->qscale;
|
|
|
|
|
2010-01-08 06:00:06 +02:00
|
|
|
if(CONFIG_MPEG4_DECODER && s->codec_id==CODEC_ID_MPEG4){
|
2002-10-13 16:16:04 +03:00
|
|
|
if(ff_mpeg4_decode_partitions(s) < 0)
|
2005-12-17 20:14:38 +02:00
|
|
|
return -1;
|
2002-10-13 16:16:04 +03:00
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-08-28 16:30:03 +03:00
|
|
|
/* restore variables which were modified */
|
2002-10-13 16:16:04 +03:00
|
|
|
s->first_slice_line=1;
|
|
|
|
s->mb_x= s->resync_mb_x;
|
|
|
|
s->mb_y= s->resync_mb_y;
|
2003-12-03 18:47:17 +02:00
|
|
|
ff_set_qscale(s, qscale);
|
2002-10-13 16:16:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
for(; s->mb_y < s->mb_height; s->mb_y++) {
|
|
|
|
/* per-row end of slice checks */
|
|
|
|
if(s->msmpeg4_version){
|
|
|
|
if(s->resync_mb_y + s->slice_height == s->mb_y){
|
2003-03-20 03:00:57 +02:00
|
|
|
ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, AC_END|DC_END|MV_END);
|
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
if(s->msmpeg4_version==1){
|
|
|
|
s->last_dc[0]=
|
|
|
|
s->last_dc[1]=
|
|
|
|
s->last_dc[2]= 128;
|
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
ff_init_block_index(s);
|
|
|
|
for(; s->mb_x < s->mb_width; s->mb_x++) {
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ff_update_block_index(s);
|
|
|
|
|
|
|
|
if(s->resync_mb_x == s->mb_x && s->resync_mb_y+1 == s->mb_y){
|
2005-12-17 20:14:38 +02:00
|
|
|
s->first_slice_line=0;
|
2002-10-13 16:16:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* DCT & quantize */
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
s->mv_dir = MV_DIR_FORWARD;
|
|
|
|
s->mv_type = MV_TYPE_16X16;
|
2005-04-24 20:21:11 +03:00
|
|
|
// s->mb_skipped = 0;
|
2002-10-13 16:16:04 +03:00
|
|
|
//printf("%d %d %06X\n", ret, get_bits_count(&s->gb), show_bits(&s->gb, 24));
|
|
|
|
ret= s->decode_mb(s, s->block);
|
|
|
|
|
2011-04-29 19:53:57 +03:00
|
|
|
if (s->pict_type!=AV_PICTURE_TYPE_B)
|
2003-07-29 05:09:12 +03:00
|
|
|
ff_h263_update_motion_val(s);
|
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
if(ret<0){
|
2003-04-10 16:18:38 +03:00
|
|
|
const int xy= s->mb_x + s->mb_y*s->mb_stride;
|
2002-10-13 16:16:04 +03:00
|
|
|
if(ret==SLICE_END){
|
2003-07-04 01:35:39 +03:00
|
|
|
MPV_decode_mb(s, s->block);
|
2003-12-01 17:23:14 +02:00
|
|
|
if(s->loop_filter)
|
|
|
|
ff_h263_loop_filter(s);
|
2003-07-04 01:35:39 +03:00
|
|
|
|
2002-10-20 02:48:08 +03:00
|
|
|
//printf("%d %d %d %06X\n", s->mb_x, s->mb_y, s->gb.size*8 - get_bits_count(&s->gb), show_bits(&s->gb, 24));
|
2003-03-20 03:00:57 +02:00
|
|
|
ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_END|DC_END|MV_END)&part_mask);
|
2002-10-14 22:53:04 +03:00
|
|
|
|
|
|
|
s->padding_bug_score--;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
if(++s->mb_x >= s->mb_width){
|
|
|
|
s->mb_x=0;
|
2004-09-26 16:03:43 +03:00
|
|
|
ff_draw_horiz_band(s, s->mb_y*mb_size, mb_size);
|
2011-06-02 20:15:58 +03:00
|
|
|
MPV_report_decode_progress(s);
|
2002-10-13 16:16:04 +03:00
|
|
|
s->mb_y++;
|
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
return 0;
|
2002-10-13 16:16:04 +03:00
|
|
|
}else if(ret==SLICE_NOEND){
|
2003-11-03 15:26:22 +02:00
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "Slice mismatch at MB: %d\n", xy);
|
2003-03-20 03:00:57 +02:00
|
|
|
ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x+1, s->mb_y, (AC_END|DC_END|MV_END)&part_mask);
|
2002-10-13 16:16:04 +03:00
|
|
|
return -1;
|
|
|
|
}
|
2003-11-03 15:26:22 +02:00
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "Error at MB: %d\n", xy);
|
2003-03-20 03:00:57 +02:00
|
|
|
ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_ERROR|DC_ERROR|MV_ERROR)&part_mask);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
return -1;
|
|
|
|
}
|
2003-07-04 01:35:39 +03:00
|
|
|
|
|
|
|
MPV_decode_mb(s, s->block);
|
2003-12-01 17:23:14 +02:00
|
|
|
if(s->loop_filter)
|
|
|
|
ff_h263_loop_filter(s);
|
2002-10-13 16:16:04 +03:00
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2004-09-26 16:03:43 +03:00
|
|
|
ff_draw_horiz_band(s, s->mb_y*mb_size, mb_size);
|
2011-06-02 20:15:58 +03:00
|
|
|
MPV_report_decode_progress(s);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
s->mb_x= 0;
|
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
assert(s->mb_x==0 && s->mb_y==s->mb_height);
|
|
|
|
|
2010-12-04 07:44:18 +02:00
|
|
|
if(s->codec_id==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;
|
|
|
|
|
2002-10-14 22:53:04 +03:00
|
|
|
/* try to detect the padding bug */
|
|
|
|
if( s->codec_id==CODEC_ID_MPEG4
|
2005-12-17 20:14:38 +02:00
|
|
|
&& (s->workaround_bugs&FF_BUG_AUTODETECT)
|
2009-11-16 19:42:43 +02:00
|
|
|
&& get_bits_left(&s->gb) >=0
|
|
|
|
&& get_bits_left(&s->gb) < 48
|
2002-12-11 10:56:28 +02:00
|
|
|
// && !s->resync_marker
|
2002-10-14 22:53:04 +03:00
|
|
|
&& !s->data_partitioning){
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2002-10-14 22:53:04 +03:00
|
|
|
const int bits_count= get_bits_count(&s->gb);
|
2003-01-21 19:34:12 +02:00
|
|
|
const int bits_left = s->gb.size_in_bits - bits_count;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-01-13 14:57:39 +02:00
|
|
|
if(bits_left==0){
|
|
|
|
s->padding_bug_score+=16;
|
2002-11-02 02:05:06 +02:00
|
|
|
} else if(bits_left != 1){
|
2002-10-14 22:53:04 +03:00
|
|
|
int v= show_bits(&s->gb, 8);
|
|
|
|
v|= 0x7F >> (7-(bits_count&7));
|
2002-11-02 02:05:06 +02:00
|
|
|
|
2004-11-13 03:05:12 +02:00
|
|
|
if(v==0x7F && bits_left<=8)
|
2002-10-14 22:53:04 +03:00
|
|
|
s->padding_bug_score--;
|
2004-11-13 03:05:12 +02:00
|
|
|
else if(v==0x7F && ((get_bits_count(&s->gb)+8)&8) && bits_left<=16)
|
|
|
|
s->padding_bug_score+= 4;
|
2002-10-14 22:53:04 +03:00
|
|
|
else
|
2005-12-17 20:14:38 +02:00
|
|
|
s->padding_bug_score++;
|
|
|
|
}
|
2002-10-14 22:53:04 +03:00
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2004-11-13 03:05:12 +02:00
|
|
|
if(s->workaround_bugs&FF_BUG_AUTODETECT){
|
2010-02-08 02:43:15 +02:00
|
|
|
if(s->padding_bug_score > -2 && !s->data_partitioning /*&& (s->divx_version>=0 || !s->resync_marker)*/)
|
2004-11-13 03:05:12 +02:00
|
|
|
s->workaround_bugs |= FF_BUG_NO_PADDING;
|
|
|
|
else
|
|
|
|
s->workaround_bugs &= ~FF_BUG_NO_PADDING;
|
|
|
|
}
|
2002-10-14 22:53:04 +03:00
|
|
|
|
2005-06-17 18:02:53 +03:00
|
|
|
// handle formats which don't have unique end markers
|
2003-01-13 15:20:21 +02:00
|
|
|
if(s->msmpeg4_version || (s->workaround_bugs&FF_BUG_NO_PADDING)){ //FIXME perhaps solve this more cleanly
|
2009-11-16 19:42:43 +02:00
|
|
|
int left= get_bits_left(&s->gb);
|
2002-10-13 16:16:04 +03:00
|
|
|
int max_extra=7;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
/* no markers in M$ crap */
|
2011-04-29 19:53:57 +03:00
|
|
|
if(s->msmpeg4_version && s->pict_type==AV_PICTURE_TYPE_I)
|
2002-10-13 16:16:04 +03:00
|
|
|
max_extra+= 17;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
/* buggy padding but the frame should still end approximately at the bitstream end */
|
2008-09-08 21:18:49 +03:00
|
|
|
if((s->workaround_bugs&FF_BUG_NO_PADDING) && s->error_recognition>=3)
|
2002-10-13 16:16:04 +03:00
|
|
|
max_extra+= 48;
|
2003-01-13 15:20:21 +02:00
|
|
|
else if((s->workaround_bugs&FF_BUG_NO_PADDING))
|
2002-10-13 16:16:04 +03:00
|
|
|
max_extra+= 256*256*256*64;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
if(left>max_extra){
|
2003-11-03 15:26:22 +02:00
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "discarding %d junk bits at end, next would be %X\n", left, show_bits(&s->gb, 24));
|
2002-10-13 16:16:04 +03:00
|
|
|
}
|
|
|
|
else if(left<0){
|
2003-11-03 15:26:22 +02:00
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "overreading %d bits\n", -left);
|
2002-10-13 16:16:04 +03:00
|
|
|
}else
|
2003-03-20 03:00:57 +02:00
|
|
|
ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, AC_END|DC_END|MV_END);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2002-10-14 22:53:04 +03:00
|
|
|
|
2005-12-17 20:14:38 +02:00
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "slice end not reached but screenspace end (%d left %06X, score= %d)\n",
|
2009-11-16 19:42:43 +02:00
|
|
|
get_bits_left(&s->gb),
|
2003-08-25 15:50:15 +03:00
|
|
|
show_bits(&s->gb, 24), s->padding_bug_score);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-03-20 03:00:57 +02:00
|
|
|
ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_END|DC_END|MV_END)&part_mask);
|
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2005-12-17 20:14:38 +02:00
|
|
|
int ff_h263_decode_frame(AVCodecContext *avctx,
|
2001-07-22 17:18:56 +03:00
|
|
|
void *data, int *data_size,
|
2009-04-07 18:59:50 +03:00
|
|
|
AVPacket *avpkt)
|
2001-07-22 17:18:56 +03:00
|
|
|
{
|
2009-04-07 18:59:50 +03:00
|
|
|
const uint8_t *buf = avpkt->data;
|
|
|
|
int buf_size = avpkt->size;
|
2001-07-22 17:18:56 +03:00
|
|
|
MpegEncContext *s = avctx->priv_data;
|
2003-09-10 01:50:44 +03:00
|
|
|
int ret;
|
2005-12-17 20:14:38 +02:00
|
|
|
AVFrame *pict = data;
|
|
|
|
|
2002-05-17 01:01:30 +03:00
|
|
|
#ifdef PRINT_FRAME_TIME
|
|
|
|
uint64_t time= rdtsc();
|
2001-07-22 17:18:56 +03:00
|
|
|
#endif
|
2002-06-09 16:35:56 +03:00
|
|
|
s->flags= avctx->flags;
|
2004-01-22 21:48:28 +02:00
|
|
|
s->flags2= avctx->flags2;
|
2002-06-02 15:16:28 +03:00
|
|
|
|
2003-07-23 12:58:02 +03:00
|
|
|
/* no supplementary picture */
|
2001-07-22 17:18:56 +03:00
|
|
|
if (buf_size == 0) {
|
2003-07-23 12:58:02 +03:00
|
|
|
/* special case for last picture */
|
|
|
|
if (s->low_delay==0 && s->next_picture_ptr) {
|
|
|
|
*pict= *(AVFrame*)s->next_picture_ptr;
|
|
|
|
s->next_picture_ptr= NULL;
|
|
|
|
|
|
|
|
*data_size = sizeof(AVFrame);
|
|
|
|
}
|
|
|
|
|
2001-07-22 17:18:56 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2003-01-21 23:30:48 +02:00
|
|
|
|
2002-11-08 20:35:39 +02:00
|
|
|
if(s->flags&CODEC_FLAG_TRUNCATED){
|
|
|
|
int next;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2009-01-14 19:19:17 +02:00
|
|
|
if(CONFIG_MPEG4_DECODER && s->codec_id==CODEC_ID_MPEG4){
|
2004-04-29 17:21:33 +03:00
|
|
|
next= ff_mpeg4_find_frame_end(&s->parse_context, buf, buf_size);
|
2009-01-14 19:19:17 +02:00
|
|
|
}else if(CONFIG_H263_DECODER && s->codec_id==CODEC_ID_H263){
|
2007-05-08 11:52:38 +03:00
|
|
|
next= ff_h263_find_frame_end(&s->parse_context, buf, buf_size);
|
2002-11-08 20:35:39 +02:00
|
|
|
}else{
|
2005-04-24 20:21:11 +03:00
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "this codec does not support truncated bitstreams\n");
|
2002-11-08 20:35:39 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2007-05-07 03:47:03 +03:00
|
|
|
if( ff_combine_frame(&s->parse_context, next, (const uint8_t **)&buf, &buf_size) < 0 )
|
2002-11-08 20:35:39 +02:00
|
|
|
return buf_size;
|
|
|
|
}
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2002-10-23 11:14:12 +03:00
|
|
|
retry:
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2004-01-15 03:29:26 +02:00
|
|
|
if(s->bitstream_buffer_size && (s->divx_packed || buf_size<20)){ //divx 5.01+/xvid frame reorder
|
2003-01-21 19:34:12 +02:00
|
|
|
init_get_bits(&s->gb, s->bitstream_buffer, s->bitstream_buffer_size*8);
|
2002-05-02 23:45:43 +03:00
|
|
|
}else
|
2003-01-21 19:34:12 +02:00
|
|
|
init_get_bits(&s->gb, buf, buf_size*8);
|
2002-06-03 01:08:04 +03:00
|
|
|
s->bitstream_buffer_size=0;
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2002-10-03 01:56:58 +03:00
|
|
|
if (!s->context_initialized) {
|
2002-10-16 20:23:18 +03:00
|
|
|
if (MPV_common_init(s) < 0) //we need the idct permutaton for reading a custom matrix
|
2002-10-03 01:56:58 +03:00
|
|
|
return -1;
|
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2007-06-12 12:29:25 +03:00
|
|
|
/* We need to set current_picture_ptr before reading the header,
|
|
|
|
* otherwise we cannot store anyting in there */
|
2003-10-30 18:58:49 +02:00
|
|
|
if(s->current_picture_ptr==NULL || s->current_picture_ptr->data[0]){
|
|
|
|
int i= ff_find_unused_picture(s, 0);
|
|
|
|
s->current_picture_ptr= &s->picture[i];
|
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2001-07-22 17:18:56 +03:00
|
|
|
/* let's go :-) */
|
2009-01-14 19:19:17 +02:00
|
|
|
if (CONFIG_WMV2_DECODER && s->msmpeg4_version==5) {
|
2002-12-28 01:51:46 +02:00
|
|
|
ret= ff_wmv2_decode_picture_header(s);
|
2009-01-14 19:19:17 +02:00
|
|
|
} else if (CONFIG_MSMPEG4_DECODER && s->msmpeg4_version) {
|
2001-07-22 17:18:56 +03:00
|
|
|
ret = msmpeg4_decode_picture_header(s);
|
2010-01-07 08:32:34 +02:00
|
|
|
} else if (CONFIG_MPEG4_DECODER && s->h263_pred) {
|
2002-10-14 15:21:54 +03:00
|
|
|
if(s->avctx->extradata_size && s->picture_number==0){
|
|
|
|
GetBitContext gb;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-01-21 19:34:12 +02:00
|
|
|
init_get_bits(&gb, s->avctx->extradata, s->avctx->extradata_size*8);
|
2002-10-14 15:21:54 +03:00
|
|
|
ret = ff_mpeg4_decode_picture_header(s, &gb);
|
|
|
|
}
|
|
|
|
ret = ff_mpeg4_decode_picture_header(s, &s->gb);
|
2010-01-07 08:32:34 +02:00
|
|
|
} else if (CONFIG_H263I_DECODER && s->codec_id == CODEC_ID_H263I) {
|
2010-01-07 08:25:41 +02:00
|
|
|
ret = ff_intel_h263_decode_picture_header(s);
|
2010-01-07 07:36:45 +02:00
|
|
|
} else if (CONFIG_FLV_DECODER && s->h263_flv) {
|
|
|
|
ret = ff_flv_decode_picture_header(s);
|
2001-07-22 17:18:56 +03:00
|
|
|
} else {
|
|
|
|
ret = h263_decode_picture_header(s);
|
2002-03-19 05:51:36 +02:00
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2005-04-24 20:21:11 +03:00
|
|
|
if(ret==FRAME_SKIPPED) return get_consumed_bytes(s, buf_size);
|
2003-08-01 14:00:03 +03:00
|
|
|
|
|
|
|
/* skip if the header was thrashed */
|
|
|
|
if (ret < 0){
|
2003-11-03 15:26:22 +02:00
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "header damaged\n");
|
2003-08-01 14:00:03 +03:00
|
|
|
return -1;
|
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2002-12-09 02:29:17 +02:00
|
|
|
avctx->has_b_frames= !s->low_delay;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2010-02-08 02:43:15 +02:00
|
|
|
if(s->xvid_build==-1 && s->divx_version==-1 && s->lavc_build==-1){
|
2009-01-17 14:21:01 +02:00
|
|
|
if(s->stream_codec_tag == AV_RL32("XVID") ||
|
|
|
|
s->codec_tag == AV_RL32("XVID") || s->codec_tag == AV_RL32("XVIX") ||
|
2010-05-26 20:23:36 +03:00
|
|
|
s->codec_tag == AV_RL32("RMP4") ||
|
|
|
|
s->codec_tag == AV_RL32("SIPP")
|
|
|
|
)
|
2010-02-08 02:43:15 +02:00
|
|
|
s->xvid_build= 0;
|
2003-09-11 02:40:55 +03:00
|
|
|
#if 0
|
2009-01-17 14:21:01 +02:00
|
|
|
if(s->codec_tag == AV_RL32("DIVX") && s->vo_type==0 && s->vol_control_parameters==1
|
2005-12-17 20:14:38 +02:00
|
|
|
&& s->padding_bug_score > 0 && s->low_delay) // XVID with modified fourcc
|
2010-02-08 02:43:15 +02:00
|
|
|
s->xvid_build= 0;
|
2003-09-11 02:40:55 +03:00
|
|
|
#endif
|
|
|
|
}
|
2003-08-25 15:50:15 +03:00
|
|
|
|
2010-02-08 02:43:15 +02:00
|
|
|
if(s->xvid_build==-1 && s->divx_version==-1 && s->lavc_build==-1){
|
2009-01-17 14:21:01 +02:00
|
|
|
if(s->codec_tag == AV_RL32("DIVX") && s->vo_type==0 && s->vol_control_parameters==0)
|
2003-08-25 15:50:15 +03:00
|
|
|
s->divx_version= 400; //divx 4
|
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2010-02-08 02:43:15 +02:00
|
|
|
if(s->xvid_build>=0 && s->divx_version>=0){
|
2004-10-15 14:48:50 +03:00
|
|
|
s->divx_version=
|
2010-02-08 02:43:15 +02:00
|
|
|
s->divx_build= -1;
|
2004-10-15 14:48:50 +03:00
|
|
|
}
|
2002-10-13 16:16:04 +03:00
|
|
|
|
|
|
|
if(s->workaround_bugs&FF_BUG_AUTODETECT){
|
2009-01-17 14:21:01 +02:00
|
|
|
if(s->codec_tag == AV_RL32("XVIX"))
|
2002-10-13 16:16:04 +03:00
|
|
|
s->workaround_bugs|= FF_BUG_XVID_ILACE;
|
2003-08-25 15:50:15 +03:00
|
|
|
|
2009-01-17 14:21:01 +02:00
|
|
|
if(s->codec_tag == AV_RL32("UMP4")){
|
2002-10-13 16:16:04 +03:00
|
|
|
s->workaround_bugs|= FF_BUG_UMP4;
|
|
|
|
}
|
2002-10-22 21:55:20 +03:00
|
|
|
|
2007-06-13 11:25:48 +03:00
|
|
|
if(s->divx_version>=500 && s->divx_build<1814){
|
2002-10-22 21:55:20 +03:00
|
|
|
s->workaround_bugs|= FF_BUG_QPEL_CHROMA;
|
|
|
|
}
|
2002-10-22 22:48:52 +03:00
|
|
|
|
2007-06-13 11:25:48 +03:00
|
|
|
if(s->divx_version>502 && s->divx_build<1814){
|
2003-02-03 01:34:30 +02:00
|
|
|
s->workaround_bugs|= FF_BUG_QPEL_CHROMA2;
|
|
|
|
}
|
|
|
|
|
2010-02-08 02:43:15 +02:00
|
|
|
if(s->xvid_build<=3U)
|
2002-12-29 03:27:50 +02:00
|
|
|
s->padding_bug_score= 256*256*256*64;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2010-02-08 02:43:15 +02:00
|
|
|
if(s->xvid_build<=1U)
|
2002-10-22 22:48:52 +03:00
|
|
|
s->workaround_bugs|= FF_BUG_QPEL_CHROMA;
|
|
|
|
|
2010-02-08 02:43:15 +02:00
|
|
|
if(s->xvid_build<=12U)
|
2003-08-25 15:50:15 +03:00
|
|
|
s->workaround_bugs|= FF_BUG_EDGE;
|
|
|
|
|
2010-02-08 02:43:15 +02:00
|
|
|
if(s->xvid_build<=32U)
|
2004-05-05 22:53:40 +03:00
|
|
|
s->workaround_bugs|= FF_BUG_DC_CLIP;
|
|
|
|
|
2003-01-09 22:42:37 +02:00
|
|
|
#define SET_QPEL_FUNC(postfix1, postfix2) \
|
|
|
|
s->dsp.put_ ## postfix1 = ff_put_ ## postfix2;\
|
|
|
|
s->dsp.put_no_rnd_ ## postfix1 = ff_put_no_rnd_ ## postfix2;\
|
|
|
|
s->dsp.avg_ ## postfix1 = ff_avg_ ## postfix2;
|
|
|
|
|
2010-02-08 02:43:15 +02:00
|
|
|
if(s->lavc_build<4653U)
|
2003-01-09 22:42:37 +02:00
|
|
|
s->workaround_bugs|= FF_BUG_STD_QPEL;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2010-02-08 02:43:15 +02:00
|
|
|
if(s->lavc_build<4655U)
|
2003-02-08 20:23:39 +02:00
|
|
|
s->workaround_bugs|= FF_BUG_DIRECT_BLOCKSIZE;
|
|
|
|
|
2010-02-08 02:43:15 +02:00
|
|
|
if(s->lavc_build<4670U){
|
2003-07-16 21:12:14 +03:00
|
|
|
s->workaround_bugs|= FF_BUG_EDGE;
|
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2010-02-08 02:43:15 +02:00
|
|
|
if(s->lavc_build<=4712U)
|
2004-05-05 22:53:40 +03:00
|
|
|
s->workaround_bugs|= FF_BUG_DC_CLIP;
|
2003-07-16 21:12:14 +03:00
|
|
|
|
2010-02-08 02:43:15 +02:00
|
|
|
if(s->divx_version>=0)
|
2003-02-08 20:23:39 +02:00
|
|
|
s->workaround_bugs|= FF_BUG_DIRECT_BLOCKSIZE;
|
2002-10-14 22:53:04 +03:00
|
|
|
//printf("padding_bug_score: %d\n", s->padding_bug_score);
|
2003-02-28 03:59:56 +02:00
|
|
|
if(s->divx_version==501 && s->divx_build==20020416)
|
|
|
|
s->padding_bug_score= 256*256*256*64;
|
2003-03-15 22:47:09 +02:00
|
|
|
|
2010-02-08 02:43:15 +02:00
|
|
|
if(s->divx_version<500U){
|
2003-03-15 22:47:09 +02:00
|
|
|
s->workaround_bugs|= FF_BUG_EDGE;
|
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2010-02-08 02:43:15 +02:00
|
|
|
if(s->divx_version>=0)
|
2004-04-02 22:54:33 +03:00
|
|
|
s->workaround_bugs|= FF_BUG_HPEL_CHROMA;
|
2002-10-14 22:53:04 +03:00
|
|
|
#if 0
|
2002-10-13 16:16:04 +03:00
|
|
|
if(s->divx_version==500)
|
2003-02-28 03:59:56 +02:00
|
|
|
s->padding_bug_score= 256*256*256*64;
|
2002-10-13 16:16:04 +03:00
|
|
|
|
|
|
|
/* very ugly XVID padding bug detection FIXME/XXX solve this differently
|
2008-07-24 20:09:28 +03:00
|
|
|
* Let us hope this at least works.
|
2002-10-13 16:16:04 +03:00
|
|
|
*/
|
2010-02-08 02:43:15 +02:00
|
|
|
if( s->resync_marker==0 && s->data_partitioning==0 && s->divx_version==-1
|
2002-10-13 16:16:04 +03:00
|
|
|
&& s->codec_id==CODEC_ID_MPEG4 && s->vo_type==0)
|
|
|
|
s->workaround_bugs|= FF_BUG_NO_PADDING;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2010-02-08 02:43:15 +02:00
|
|
|
if(s->lavc_build<4609U) //FIXME not sure about the version num but a 4609 file seems ok
|
2002-10-13 16:16:04 +03:00
|
|
|
s->workaround_bugs|= FF_BUG_NO_PADDING;
|
2002-10-14 22:53:04 +03:00
|
|
|
#endif
|
2002-10-13 16:16:04 +03:00
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-01-09 22:42:37 +02:00
|
|
|
if(s->workaround_bugs& FF_BUG_STD_QPEL){
|
|
|
|
SET_QPEL_FUNC(qpel_pixels_tab[0][ 5], qpel16_mc11_old_c)
|
|
|
|
SET_QPEL_FUNC(qpel_pixels_tab[0][ 7], qpel16_mc31_old_c)
|
|
|
|
SET_QPEL_FUNC(qpel_pixels_tab[0][ 9], qpel16_mc12_old_c)
|
|
|
|
SET_QPEL_FUNC(qpel_pixels_tab[0][11], qpel16_mc32_old_c)
|
|
|
|
SET_QPEL_FUNC(qpel_pixels_tab[0][13], qpel16_mc13_old_c)
|
|
|
|
SET_QPEL_FUNC(qpel_pixels_tab[0][15], qpel16_mc33_old_c)
|
|
|
|
|
|
|
|
SET_QPEL_FUNC(qpel_pixels_tab[1][ 5], qpel8_mc11_old_c)
|
|
|
|
SET_QPEL_FUNC(qpel_pixels_tab[1][ 7], qpel8_mc31_old_c)
|
|
|
|
SET_QPEL_FUNC(qpel_pixels_tab[1][ 9], qpel8_mc12_old_c)
|
|
|
|
SET_QPEL_FUNC(qpel_pixels_tab[1][11], qpel8_mc32_old_c)
|
|
|
|
SET_QPEL_FUNC(qpel_pixels_tab[1][13], qpel8_mc13_old_c)
|
|
|
|
SET_QPEL_FUNC(qpel_pixels_tab[1][15], qpel8_mc33_old_c)
|
|
|
|
}
|
2002-10-13 16:16:04 +03:00
|
|
|
|
2003-09-10 14:28:18 +03:00
|
|
|
if(avctx->debug & FF_DEBUG_BUGS)
|
2005-12-17 20:14:38 +02:00
|
|
|
av_log(s->avctx, AV_LOG_DEBUG, "bugs: %X lavc_build:%d xvid_build:%d divx_version:%d divx_build:%d %s\n",
|
2003-09-10 14:28:18 +03:00
|
|
|
s->workaround_bugs, s->lavc_build, s->xvid_build, s->divx_version, s->divx_build,
|
|
|
|
s->divx_packed ? "p" : "");
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2009-01-14 01:44:16 +02:00
|
|
|
#if HAVE_MMX
|
2010-09-08 18:07:14 +03:00
|
|
|
if (s->codec_id == CODEC_ID_MPEG4 && s->xvid_build>=0 && avctx->idct_algo == FF_IDCT_AUTO && (av_get_cpu_flags() & AV_CPU_FLAG_MMX)) {
|
2005-09-10 20:09:54 +03:00
|
|
|
avctx->idct_algo= FF_IDCT_XVIDMMX;
|
2004-09-29 02:31:59 +03:00
|
|
|
avctx->coded_width= 0; // force reinit
|
2005-12-18 04:23:19 +02:00
|
|
|
// dsputil_init(&s->dsp, avctx);
|
|
|
|
s->picture_number=0;
|
2004-06-25 22:14:23 +03:00
|
|
|
}
|
2004-06-26 12:52:16 +03:00
|
|
|
#endif
|
|
|
|
|
2002-03-19 05:51:36 +02:00
|
|
|
/* After H263 & mpeg4 header decode we have the height, width,*/
|
2001-11-17 17:43:04 +02:00
|
|
|
/* and other parameters. So then we could init the picture */
|
|
|
|
/* FIXME: By the way H263 decoder is evolving it should have */
|
|
|
|
/* an H263EncContext */
|
2005-12-17 20:14:38 +02:00
|
|
|
|
|
|
|
if ( s->width != avctx->coded_width
|
2004-09-27 14:50:56 +03:00
|
|
|
|| s->height != avctx->coded_height) {
|
2002-07-14 21:37:35 +03:00
|
|
|
/* H.263 could change picture size any time */
|
2003-10-15 18:37:25 +03:00
|
|
|
ParseContext pc= s->parse_context; //FIXME move these demuxng hack to avformat
|
|
|
|
s->parse_context.buffer=0;
|
2002-07-14 21:37:35 +03:00
|
|
|
MPV_common_end(s);
|
2003-10-15 18:37:25 +03:00
|
|
|
s->parse_context= pc;
|
2002-07-14 21:37:35 +03:00
|
|
|
}
|
2002-03-19 05:51:36 +02:00
|
|
|
if (!s->context_initialized) {
|
2004-09-27 14:50:56 +03:00
|
|
|
avcodec_set_dimensions(avctx, s->width, s->height);
|
2002-10-13 16:16:04 +03:00
|
|
|
|
2002-10-23 11:14:12 +03:00
|
|
|
goto retry;
|
2001-07-22 17:18:56 +03:00
|
|
|
}
|
2002-10-20 02:48:08 +03:00
|
|
|
|
2009-02-11 14:02:16 +02:00
|
|
|
if((s->codec_id==CODEC_ID_H263 || s->codec_id==CODEC_ID_H263P || s->codec_id == CODEC_ID_H263I))
|
2002-10-20 02:48:08 +03:00
|
|
|
s->gob_index = ff_h263_get_gob_height(s);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2011-04-02 12:56:21 +03:00
|
|
|
// for skipping the frame
|
2002-12-04 12:04:03 +02:00
|
|
|
s->current_picture.pict_type= s->pict_type;
|
2011-04-29 19:53:57 +03:00
|
|
|
s->current_picture.key_frame= s->pict_type == AV_PICTURE_TYPE_I;
|
2002-11-10 12:54:07 +02:00
|
|
|
|
2005-06-17 18:02:53 +03:00
|
|
|
/* skip B-frames if we don't have reference frames */
|
2011-04-29 19:53:57 +03:00
|
|
|
if(s->last_picture_ptr==NULL && (s->pict_type==AV_PICTURE_TYPE_B || s->dropable)) return get_consumed_bytes(s, buf_size);
|
|
|
|
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)
|
2005-12-17 20:14:38 +02:00
|
|
|
|| avctx->skip_frame >= AVDISCARD_ALL)
|
2005-07-15 00:39:36 +03:00
|
|
|
return get_consumed_bytes(s, buf_size);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2002-06-02 15:16:28 +03:00
|
|
|
if(s->next_p_frame_damaged){
|
2011-04-29 19:53:57 +03:00
|
|
|
if(s->pict_type==AV_PICTURE_TYPE_B)
|
2002-09-12 14:10:33 +03:00
|
|
|
return get_consumed_bytes(s, buf_size);
|
2002-06-02 15:16:28 +03:00
|
|
|
else
|
|
|
|
s->next_p_frame_damaged=0;
|
|
|
|
}
|
|
|
|
|
2011-04-29 19:53:57 +03:00
|
|
|
if((s->avctx->flags2 & CODEC_FLAG2_FAST) && s->pict_type==AV_PICTURE_TYPE_B){
|
2006-10-02 00:25:17 +03:00
|
|
|
s->me.qpel_put= s->dsp.put_2tap_qpel_pixels_tab;
|
|
|
|
s->me.qpel_avg= s->dsp.avg_2tap_qpel_pixels_tab;
|
2011-04-29 19:53:57 +03:00
|
|
|
}else if((!s->no_rounding) || s->pict_type==AV_PICTURE_TYPE_B){
|
2006-10-04 05:57:43 +03:00
|
|
|
s->me.qpel_put= s->dsp.put_qpel_pixels_tab;
|
2006-10-02 00:25:17 +03:00
|
|
|
s->me.qpel_avg= s->dsp.avg_qpel_pixels_tab;
|
|
|
|
}else{
|
2006-10-04 05:57:43 +03:00
|
|
|
s->me.qpel_put= s->dsp.put_no_rnd_qpel_pixels_tab;
|
2006-10-02 00:25:17 +03:00
|
|
|
s->me.qpel_avg= s->dsp.avg_qpel_pixels_tab;
|
|
|
|
}
|
|
|
|
|
2002-10-27 02:02:23 +02:00
|
|
|
if(MPV_frame_start(s, avctx) < 0)
|
|
|
|
return -1;
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2011-06-02 20:15:58 +03:00
|
|
|
if (!s->divx_packed) ff_thread_finish_setup(avctx);
|
|
|
|
|
2009-11-10 20:52:39 +02:00
|
|
|
if (CONFIG_MPEG4_VDPAU_DECODER && (s->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)) {
|
2010-03-02 19:12:41 +02:00
|
|
|
ff_vdpau_mpeg4_decode_picture(s, s->gb.buffer, s->gb.buffer_end - s->gb.buffer);
|
2009-11-10 20:52:39 +02:00
|
|
|
goto frame_end;
|
|
|
|
}
|
|
|
|
|
2009-02-27 10:27:50 +02:00
|
|
|
if (avctx->hwaccel) {
|
2010-03-02 19:12:41 +02:00
|
|
|
if (avctx->hwaccel->start_frame(avctx, s->gb.buffer, s->gb.buffer_end - s->gb.buffer) < 0)
|
2009-02-27 10:27:50 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2003-03-20 03:00:57 +02:00
|
|
|
ff_er_frame_start(s);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-04-12 18:00:32 +03:00
|
|
|
//the second part of the wmv2 header contains the MB skip bits which are stored in current_picture->mb_type
|
2007-06-12 12:29:25 +03:00
|
|
|
//which is not available before MPV_frame_start()
|
2009-01-14 19:19:17 +02:00
|
|
|
if (CONFIG_WMV2_DECODER && s->msmpeg4_version==5){
|
2007-11-09 23:37:48 +02:00
|
|
|
ret = ff_wmv2_decode_secondary_picture_header(s);
|
|
|
|
if(ret<0) return ret;
|
|
|
|
if(ret==1) goto intrax8_decoded;
|
2003-04-12 18:00:32 +03:00
|
|
|
}
|
|
|
|
|
2001-07-22 17:18:56 +03:00
|
|
|
/* decode each macroblock */
|
2005-12-17 20:14:38 +02:00
|
|
|
s->mb_x=0;
|
2002-10-13 16:16:04 +03:00
|
|
|
s->mb_y=0;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
decode_slice(s);
|
2003-04-12 18:00:32 +03:00
|
|
|
while(s->mb_y<s->mb_height){
|
2002-10-13 16:16:04 +03:00
|
|
|
if(s->msmpeg4_version){
|
2007-01-23 00:27:02 +02:00
|
|
|
if(s->slice_height==0 || s->mb_x!=0 || (s->mb_y%s->slice_height)!=0 || get_bits_count(&s->gb) > s->gb.size_in_bits)
|
2002-10-13 16:16:04 +03:00
|
|
|
break;
|
|
|
|
}else{
|
2011-06-02 20:15:58 +03:00
|
|
|
int prev_x=s->mb_x, prev_y=s->mb_y;
|
2002-10-13 16:16:04 +03:00
|
|
|
if(ff_h263_resync(s)<0)
|
|
|
|
break;
|
2011-06-02 20:15:58 +03:00
|
|
|
if (prev_y * s->mb_width + prev_x < s->mb_y * s->mb_width + s->mb_x)
|
|
|
|
s->error_occurred = 1;
|
2002-06-02 15:16:28 +03:00
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-01-09 13:37:08 +02:00
|
|
|
if(s->msmpeg4_version<4 && s->h263_pred)
|
2002-10-13 16:16:04 +03:00
|
|
|
ff_mpeg4_clean_buffers(s);
|
2002-03-28 15:41:04 +02:00
|
|
|
|
2002-10-13 16:16:04 +03:00
|
|
|
decode_slice(s);
|
2001-07-22 17:18:56 +03:00
|
|
|
}
|
2002-10-19 04:31:26 +03:00
|
|
|
|
2011-05-25 02:28:45 +03:00
|
|
|
if (s->msmpeg4_version && s->msmpeg4_version<4 && s->pict_type==AV_PICTURE_TYPE_I)
|
2009-01-14 19:19:17 +02:00
|
|
|
if(!CONFIG_MSMPEG4_DECODER || msmpeg4_decode_ext_header(s, buf_size) < 0){
|
2002-12-04 12:04:03 +02:00
|
|
|
s->error_status_table[s->mb_num-1]= AC_ERROR|DC_ERROR|MV_ERROR;
|
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2010-01-01 23:07:52 +02:00
|
|
|
assert(s->bitstream_buffer_size==0);
|
2010-03-01 18:52:35 +02:00
|
|
|
frame_end:
|
2002-04-22 15:45:22 +03:00
|
|
|
/* divx 5.01+ bistream reorder stuff */
|
2010-01-01 23:07:52 +02:00
|
|
|
if(s->codec_id==CODEC_ID_MPEG4 && s->divx_packed){
|
2002-06-02 15:16:28 +03:00
|
|
|
int current_pos= get_bits_count(&s->gb)>>3;
|
2004-01-15 03:29:26 +02:00
|
|
|
int startcode_found=0;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2005-01-12 02:16:25 +02:00
|
|
|
if(buf_size - current_pos > 5){
|
2002-06-02 15:16:28 +03:00
|
|
|
int i;
|
2002-09-12 14:10:33 +03:00
|
|
|
for(i=current_pos; i<buf_size-3; i++){
|
2002-06-02 15:16:28 +03:00
|
|
|
if(buf[i]==0 && buf[i+1]==0 && buf[i+2]==1 && buf[i+3]==0xB6){
|
|
|
|
startcode_found=1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2004-01-15 03:29:26 +02:00
|
|
|
}
|
2010-02-08 02:43:15 +02:00
|
|
|
if(s->gb.buffer == s->bitstream_buffer && buf_size>7 && s->xvid_build>=0){ //xvid style
|
2004-01-15 03:29:26 +02:00
|
|
|
startcode_found=1;
|
|
|
|
current_pos=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(startcode_found){
|
2009-04-12 16:17:37 +03:00
|
|
|
av_fast_malloc(
|
|
|
|
&s->bitstream_buffer,
|
2005-12-17 20:14:38 +02:00
|
|
|
&s->allocated_bitstream_buffer_size,
|
2005-01-12 02:16:25 +02:00
|
|
|
buf_size - current_pos + FF_INPUT_BUFFER_PADDING_SIZE);
|
2009-04-12 16:17:37 +03:00
|
|
|
if (!s->bitstream_buffer)
|
|
|
|
return AVERROR(ENOMEM);
|
2004-01-15 03:29:26 +02:00
|
|
|
memcpy(s->bitstream_buffer, buf + current_pos, buf_size - current_pos);
|
|
|
|
s->bitstream_buffer_size= buf_size - current_pos;
|
2002-06-02 15:16:28 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-09 23:37:48 +02:00
|
|
|
intrax8_decoded:
|
2003-03-20 03:00:57 +02:00
|
|
|
ff_er_frame_end(s);
|
2002-10-13 16:16:04 +03:00
|
|
|
|
2009-02-24 20:39:42 +02:00
|
|
|
if (avctx->hwaccel) {
|
|
|
|
if (avctx->hwaccel->end_frame(avctx) < 0)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2001-07-22 17:18:56 +03:00
|
|
|
MPV_frame_end(s);
|
2003-01-09 22:42:37 +02:00
|
|
|
|
2003-05-27 15:31:03 +03:00
|
|
|
assert(s->current_picture.pict_type == s->current_picture_ptr->pict_type);
|
|
|
|
assert(s->current_picture.pict_type == s->pict_type);
|
2011-04-29 19:53:57 +03:00
|
|
|
if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) {
|
2006-03-10 22:40:52 +02:00
|
|
|
*pict= *(AVFrame*)s->current_picture_ptr;
|
|
|
|
} else if (s->last_picture_ptr != NULL) {
|
|
|
|
*pict= *(AVFrame*)s->last_picture_ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(s->last_picture_ptr || s->low_delay){
|
|
|
|
*data_size = sizeof(AVFrame);
|
2003-12-30 04:12:12 +02:00
|
|
|
ff_print_debug_info(s, pict);
|
2002-03-13 00:54:25 +02:00
|
|
|
}
|
2002-12-18 11:23:24 +02:00
|
|
|
|
2002-05-17 01:01:30 +03:00
|
|
|
#ifdef PRINT_FRAME_TIME
|
2006-11-02 00:39:58 +02:00
|
|
|
av_log(avctx, AV_LOG_DEBUG, "%"PRId64"\n", rdtsc()-time);
|
2002-05-17 01:01:30 +03:00
|
|
|
#endif
|
2003-05-22 17:12:22 +03:00
|
|
|
|
2002-09-12 14:10:33 +03:00
|
|
|
return get_consumed_bytes(s, buf_size);
|
2001-07-22 17:18:56 +03:00
|
|
|
}
|
|
|
|
|
2011-01-25 23:40:11 +02:00
|
|
|
AVCodec ff_h263_decoder = {
|
2001-07-22 17:18:56 +03:00
|
|
|
"h263",
|
2010-03-31 02:30:55 +03:00
|
|
|
AVMEDIA_TYPE_VIDEO,
|
2001-07-22 17:18:56 +03:00
|
|
|
CODEC_ID_H263,
|
|
|
|
sizeof(MpegEncContext),
|
2002-12-28 01:51:46 +02:00
|
|
|
ff_h263_decode_init,
|
2001-07-22 17:18:56 +03:00
|
|
|
NULL,
|
2002-12-28 01:51:46 +02:00
|
|
|
ff_h263_decode_end,
|
|
|
|
ff_h263_decode_frame,
|
2005-01-23 20:09:06 +02:00
|
|
|
CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY,
|
2003-07-17 15:29:07 +03:00
|
|
|
.flush= ff_mpeg_flush,
|
2010-07-08 00:23:36 +03:00
|
|
|
.max_lowres= 3,
|
2009-03-02 07:18:33 +02:00
|
|
|
.long_name= NULL_IF_CONFIG_SMALL("H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2"),
|
2009-02-27 17:49:32 +02:00
|
|
|
.pix_fmts= ff_hwaccel_pixfmt_list_420,
|
2001-07-22 17:18:56 +03:00
|
|
|
};
|