| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-08 15:07:14 +00:00
										 |  |  | #include "libavutil/cpu.h"
 | 
					
						
							| 
									
										
										
										
											2009-02-23 13:44:51 +00:00
										 |  |  | #include "internal.h"
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | #include "avcodec.h"
 | 
					
						
							| 
									
										
										
										
											2002-05-18 23:03:29 +00:00
										 |  |  | #include "dsputil.h"
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | #include "mpegvideo.h"
 | 
					
						
							| 
									
										
										
										
											2010-01-09 14:59:06 +00:00
										 |  |  | #include "h263.h"
 | 
					
						
							| 
									
										
										
										
											2007-05-08 08:52:38 +00:00
										 |  |  | #include "h263_parser.h"
 | 
					
						
							| 
									
										
										
										
											2007-05-09 23:13:43 +00:00
										 |  |  | #include "mpeg4video_parser.h"
 | 
					
						
							| 
									
										
										
										
											2007-05-10 13:11:36 +00:00
										 |  |  | #include "msmpeg4.h"
 | 
					
						
							| 
									
										
										
										
											2009-11-10 18:52:39 +00:00
										 |  |  | #include "vdpau_internal.h"
 | 
					
						
							| 
									
										
										
										
											2011-03-22 22:36:57 +01:00
										 |  |  | #include "thread.h"
 | 
					
						
							| 
									
										
										
										
											2010-01-07 05:36:45 +00:00
										 |  |  | #include "flv.h"
 | 
					
						
							| 
									
										
										
										
											2010-01-07 23:53:49 +00:00
										 |  |  | #include "mpeg4video.h"
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | //#define DEBUG
 | 
					
						
							| 
									
										
										
										
											2002-05-16 22:01:30 +00:00
										 |  |  | //#define PRINT_FRAME_TIME
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2001-08-12 00:52:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-15 13:09:47 +00:00
										 |  |  |     s->avctx = avctx; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     s->out_format = FMT_H263; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-27 11:50:56 +00:00
										 |  |  |     s->width  = avctx->coded_width; | 
					
						
							|  |  |  |     s->height = avctx->coded_height; | 
					
						
							| 
									
										
										
										
											2002-05-21 23:13:57 +00:00
										 |  |  |     s->workaround_bugs= avctx->workaround_bugs; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |     // set defaults
 | 
					
						
							| 
									
										
										
										
											2004-03-16 16:11:29 +00:00
										 |  |  |     MPV_decode_defaults(s); | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |     s->quant_precision=5; | 
					
						
							|  |  |  |     s->decode_mb= ff_h263_decode_mb; | 
					
						
							| 
									
										
										
										
											2002-12-09 00:29:17 +00:00
										 |  |  |     s->low_delay= 1; | 
					
						
							| 
									
										
										
										
											2009-02-24 18:27:52 +00:00
										 |  |  |     avctx->pix_fmt= avctx->get_format(avctx, avctx->codec->pix_fmts); | 
					
						
							| 
									
										
										
										
											2003-10-17 18:56:01 +00:00
										 |  |  |     s->unrestricted_mv= 1; | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     /* select sub codec */ | 
					
						
							|  |  |  |     switch(avctx->codec->id) { | 
					
						
							|  |  |  |     case CODEC_ID_H263: | 
					
						
							| 
									
										
										
										
											2003-11-30 14:35:35 +00:00
										 |  |  |         s->unrestricted_mv= 0; | 
					
						
							| 
									
										
										
										
											2009-05-11 04:34:23 +00:00
										 |  |  |         avctx->chroma_sample_location = AVCHROMA_LOC_CENTER; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2001-08-15 13:09:47 +00:00
										 |  |  |     case CODEC_ID_MPEG4: | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2002-04-05 04:09:04 +00:00
										 |  |  |     case CODEC_ID_MSMPEG4V1: | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |         s->h263_pred = 1; | 
					
						
							| 
									
										
										
										
											2002-04-05 04:09:04 +00: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 14:18:56 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2002-04-06 22:29:37 +00:00
										 |  |  |     case CODEC_ID_WMV1: | 
					
						
							|  |  |  |         s->h263_pred = 1; | 
					
						
							|  |  |  |         s->msmpeg4_version=4; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2002-06-18 00:46:02 +00:00
										 |  |  |     case CODEC_ID_WMV2: | 
					
						
							|  |  |  |         s->h263_pred = 1; | 
					
						
							|  |  |  |         s->msmpeg4_version=5; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2006-06-29 11:17:50 +00:00
										 |  |  |     case CODEC_ID_VC1: | 
					
						
							| 
									
										
										
										
											2005-01-30 16:34:57 +00:00
										 |  |  |     case CODEC_ID_WMV3: | 
					
						
							| 
									
										
										
										
											2011-08-17 14:24:42 +02:00
										 |  |  |     case CODEC_ID_VC1IMAGE: | 
					
						
							|  |  |  |     case CODEC_ID_WMV3IMAGE: | 
					
						
							| 
									
										
										
										
											2005-01-30 16:34:57 +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; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     case CODEC_ID_H263I: | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2003-07-09 23:10:59 +00:00
										 |  |  |     case CODEC_ID_FLV1: | 
					
						
							|  |  |  |         s->h263_flv = 1; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     default: | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-04-27 12:30:26 +00:00
										 |  |  |     s->codec_id= avctx->codec->id; | 
					
						
							| 
									
										
										
										
											2009-02-24 19:04:43 +00:00
										 |  |  |     avctx->hwaccel= ff_find_hwaccel(avctx->codec->id, avctx->pix_fmt); | 
					
						
							| 
									
										
										
										
											2002-07-14 18:37:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     /* for h263, we allocate the images after having read the header */ | 
					
						
							| 
									
										
										
										
											2002-03-19 03:51:36 +00:00
										 |  |  |     if (avctx->codec->id != CODEC_ID_H263 && avctx->codec->id != CODEC_ID_MPEG4) | 
					
						
							| 
									
										
										
										
											2001-11-03 00:49:53 +00:00
										 |  |  |         if (MPV_common_init(s) < 0) | 
					
						
							|  |  |  |             return -1; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         h263_decode_init_vlc(s); | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     MPV_common_end(s); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-12 11:10:33 +00:00
										 |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2011-12-07 13:03:53 +01:00
										 |  |  |  * Return the number of bytes consumed for building the current frame. | 
					
						
							| 
									
										
										
										
											2002-09-12 11:10:33 +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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 18:24:56 +00:00
										 |  |  |     if(s->divx_packed || s->avctx->hwaccel){ | 
					
						
							| 
									
										
										
										
											2002-09-12 11:10:33 +00:00
										 |  |  |         //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; | 
					
						
							| 
									
										
										
										
											2002-11-08 18:35:39 +00: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 11:10:33 +00:00
										 |  |  |     }else{ | 
					
						
							| 
									
										
										
										
											2007-06-12 09:29:25 +00:00
										 |  |  |         if(pos==0) pos=1; //avoid infinite loops (i doubt that is needed but ...)
 | 
					
						
							| 
									
										
										
										
											2002-09-12 15:00:09 +00:00
										 |  |  |         if(pos+10>buf_size) pos=buf_size; // oops ;)
 | 
					
						
							| 
									
										
										
										
											2002-09-12 11:10:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return pos; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  | static int decode_slice(MpegEncContext *s){ | 
					
						
							| 
									
										
										
										
											2011-11-28 00:31:51 +01:00
										 |  |  |     const int part_mask= s->partitioned_frame ? (ER_AC_END|ER_AC_ERROR) : 0x7F; | 
					
						
							| 
									
										
										
										
											2004-09-26 13:03:43 +00:00
										 |  |  |     const int mb_size= 16>>s->avctx->lowres; | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |     s->last_resync_gb= s->gb; | 
					
						
							|  |  |  |     s->first_slice_line= 1; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |     s->resync_mb_x= s->mb_x; | 
					
						
							|  |  |  |     s->resync_mb_y= s->mb_y; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-03 16:47:17 +00:00
										 |  |  |     ff_set_qscale(s, s->qscale); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 08:27:50 +00: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 13:44:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |     if(s->partitioned_frame){ | 
					
						
							|  |  |  |         const int qscale= s->qscale; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-08 04:00:06 +00:00
										 |  |  |         if(CONFIG_MPEG4_DECODER && s->codec_id==CODEC_ID_MPEG4){ | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |             if(ff_mpeg4_decode_partitions(s) < 0) | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |                 return -1; | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-28 13:30:03 +00:00
										 |  |  |         /* restore variables which were modified */ | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +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
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     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){ | 
					
						
							| 
									
										
										
										
											2011-11-28 00:31:52 +01:00
										 |  |  |                 ff_er_add_slice(s, 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |         if(s->msmpeg4_version==1){ | 
					
						
							|  |  |  |             s->last_dc[0]= | 
					
						
							|  |  |  |             s->last_dc[1]= | 
					
						
							|  |  |  |             s->last_dc[2]= 128; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00: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 18:14:38 +00:00
										 |  |  |                 s->first_slice_line=0; | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* DCT & quantize */ | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |             s->mv_dir = MV_DIR_FORWARD; | 
					
						
							|  |  |  |             s->mv_type = MV_TYPE_16X16; | 
					
						
							| 
									
										
										
										
											2005-04-24 17:21:11 +00:00
										 |  |  | //            s->mb_skipped = 0;
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00: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-28 01:40:44 +02:00
										 |  |  |             if (s->pict_type!=AV_PICTURE_TYPE_B) | 
					
						
							| 
									
										
										
										
											2003-07-29 02:09:12 +00:00
										 |  |  |                 ff_h263_update_motion_val(s); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |             if(ret<0){ | 
					
						
							| 
									
										
										
										
											2003-04-10 13:18:38 +00:00
										 |  |  |                 const int xy= s->mb_x + s->mb_y*s->mb_stride; | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |                 if(ret==SLICE_END){ | 
					
						
							| 
									
										
										
										
											2003-07-03 22:35:39 +00:00
										 |  |  |                     MPV_decode_mb(s, s->block); | 
					
						
							| 
									
										
										
										
											2003-12-01 15:23:14 +00:00
										 |  |  |                     if(s->loop_filter) | 
					
						
							|  |  |  |                         ff_h263_loop_filter(s); | 
					
						
							| 
									
										
										
										
											2003-07-03 22:35:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-19 23:48:08 +00: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));
 | 
					
						
							| 
									
										
										
										
											2011-11-28 00:31:52 +01:00
										 |  |  |                     ff_er_add_slice(s, 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |                     if(++s->mb_x >= s->mb_width){ | 
					
						
							|  |  |  |                         s->mb_x=0; | 
					
						
							| 
									
										
										
										
											2004-09-26 13:03:43 +00:00
										 |  |  |                         ff_draw_horiz_band(s, s->mb_y*mb_size, mb_size); | 
					
						
							| 
									
										
										
										
											2011-03-22 22:36:57 +01:00
										 |  |  |                         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; | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |                 }else if(ret==SLICE_NOEND){ | 
					
						
							| 
									
										
										
										
											2003-11-03 13:26:22 +00:00
										 |  |  |                     av_log(s->avctx, AV_LOG_ERROR, "Slice mismatch at MB: %d\n", xy); | 
					
						
							| 
									
										
										
										
											2011-11-28 00:31:52 +01:00
										 |  |  |                     ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x+1, s->mb_y, ER_MB_END&part_mask); | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |                     return -1; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2003-11-03 13:26:22 +00:00
										 |  |  |                 av_log(s->avctx, AV_LOG_ERROR, "Error at MB: %d\n", xy); | 
					
						
							| 
									
										
										
										
											2011-11-28 00:31:52 +01:00
										 |  |  |                 ff_er_add_slice(s, 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |                 return -1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2003-07-03 22:35:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             MPV_decode_mb(s, s->block); | 
					
						
							| 
									
										
										
										
											2003-12-01 15:23:14 +00:00
										 |  |  |             if(s->loop_filter) | 
					
						
							|  |  |  |                 ff_h263_loop_filter(s); | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-26 13:03:43 +00:00
										 |  |  |         ff_draw_horiz_band(s, s->mb_y*mb_size, mb_size); | 
					
						
							| 
									
										
										
										
											2011-03-22 22:36:57 +01:00
										 |  |  |         MPV_report_decode_progress(s); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |         s->mb_x= 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |     assert(s->mb_x==0 && s->mb_y==s->mb_height); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-04 05:44:18 +00: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 19:53:04 +00:00
										 |  |  |     /* try to detect the padding bug */ | 
					
						
							|  |  |  |     if(      s->codec_id==CODEC_ID_MPEG4 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |        &&   (s->workaround_bugs&FF_BUG_AUTODETECT) | 
					
						
							| 
									
										
										
										
											2009-11-16 17:42:43 +00:00
										 |  |  |        &&    get_bits_left(&s->gb) >=0 | 
					
						
							| 
									
										
										
										
											2011-07-01 02:51:10 +02:00
										 |  |  |        &&    get_bits_left(&s->gb) < 137 | 
					
						
							| 
									
										
										
										
											2002-12-11 08:56:28 +00:00
										 |  |  | //       &&   !s->resync_marker
 | 
					
						
							| 
									
										
										
										
											2002-10-14 19:53:04 +00:00
										 |  |  |        &&   !s->data_partitioning){ | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-14 19:53:04 +00:00
										 |  |  |         const int bits_count= get_bits_count(&s->gb); | 
					
						
							| 
									
										
										
										
											2003-01-21 17:34:12 +00:00
										 |  |  |         const int bits_left = s->gb.size_in_bits - bits_count; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-13 12:57:39 +00:00
										 |  |  |         if(bits_left==0){ | 
					
						
							|  |  |  |             s->padding_bug_score+=16; | 
					
						
							| 
									
										
										
										
											2002-11-02 00:05:06 +00:00
										 |  |  |         } else if(bits_left != 1){ | 
					
						
							| 
									
										
										
										
											2002-10-14 19:53:04 +00:00
										 |  |  |             int v= show_bits(&s->gb, 8); | 
					
						
							|  |  |  |             v|= 0x7F >> (7-(bits_count&7)); | 
					
						
							| 
									
										
										
										
											2002-11-02 00:05:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-11-13 01:05:12 +00:00
										 |  |  |             if(v==0x7F && bits_left<=8) | 
					
						
							| 
									
										
										
										
											2002-10-14 19:53:04 +00:00
										 |  |  |                 s->padding_bug_score--; | 
					
						
							| 
									
										
										
										
											2004-11-13 01:05:12 +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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-11-13 01:05:12 +00:00
										 |  |  |     if(s->workaround_bugs&FF_BUG_AUTODETECT){ | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |         if(s->padding_bug_score > -2 && !s->data_partitioning /*&& (s->divx_version>=0 || !s->resync_marker)*/) | 
					
						
							| 
									
										
										
										
											2004-11-13 01:05:12 +00:00
										 |  |  |             s->workaround_bugs |=  FF_BUG_NO_PADDING; | 
					
						
							|  |  |  |         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
 | 
					
						
							| 
									
										
										
										
											2003-01-13 13:20:21 +00:00
										 |  |  |     if(s->msmpeg4_version || (s->workaround_bugs&FF_BUG_NO_PADDING)){ //FIXME perhaps solve this more cleanly
 | 
					
						
							| 
									
										
										
										
											2009-11-16 17:42:43 +00:00
										 |  |  |         int left= get_bits_left(&s->gb); | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |         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 */ | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |         if(s->msmpeg4_version && s->pict_type==AV_PICTURE_TYPE_I) | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |             max_extra+= 17; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |         /* buggy padding but the frame should still end approximately at the bitstream end */ | 
					
						
							| 
									
										
										
										
											2011-12-13 01:25:08 +01:00
										 |  |  |         if((s->workaround_bugs&FF_BUG_NO_PADDING) && (s->err_recognition&(AV_EF_BUFFER|AV_EF_AGGRESSIVE))) | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |             max_extra+= 48; | 
					
						
							| 
									
										
										
										
											2003-01-13 13:20:21 +00:00
										 |  |  |         else if((s->workaround_bugs&FF_BUG_NO_PADDING)) | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |             max_extra+= 256*256*256*64; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |         if(left>max_extra){ | 
					
						
							| 
									
										
										
										
											2003-11-03 13:26:22 +00: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 13:16:04 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         else if(left<0){ | 
					
						
							| 
									
										
										
										
											2003-11-03 13:26:22 +00:00
										 |  |  |             av_log(s->avctx, AV_LOG_ERROR, "overreading %d bits\n", -left); | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |         }else | 
					
						
							| 
									
										
										
										
											2011-11-28 00:31:52 +01:00
										 |  |  |             ff_er_add_slice(s, 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |     av_log(s->avctx, AV_LOG_ERROR, "slice end not reached but screenspace end (%d left %06X, score= %d)\n", | 
					
						
							| 
									
										
										
										
											2009-11-16 17:42:43 +00:00
										 |  |  |             get_bits_left(&s->gb), | 
					
						
							| 
									
										
										
										
											2003-08-25 12:50:15 +00:00
										 |  |  |             show_bits(&s->gb, 24), s->padding_bug_score); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-28 00:31:52 +01:00
										 |  |  |     ff_er_add_slice(s, 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |     return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | int ff_h263_decode_frame(AVCodecContext *avctx, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |                              void *data, int *data_size, | 
					
						
							| 
									
										
										
										
											2009-04-07 15:59:50 +00:00
										 |  |  |                              AVPacket *avpkt) | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-04-07 15:59:50 +00:00
										 |  |  |     const uint8_t *buf = avpkt->data; | 
					
						
							|  |  |  |     int buf_size = avpkt->size; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     MpegEncContext *s = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2003-09-09 22:50:44 +00:00
										 |  |  |     int ret; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |     AVFrame *pict = data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-16 22:01:30 +00:00
										 |  |  | #ifdef PRINT_FRAME_TIME
 | 
					
						
							|  |  |  | uint64_t time= rdtsc(); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-06-09 13:35:56 +00:00
										 |  |  |     s->flags= avctx->flags; | 
					
						
							| 
									
										
										
										
											2004-01-22 19:48:28 +00:00
										 |  |  |     s->flags2= avctx->flags2; | 
					
						
							| 
									
										
										
										
											2002-06-02 12:16:28 +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 */ | 
					
						
							|  |  |  |         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 14:18:56 +00:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-01-21 21:30:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-08 18:35:39 +00:00
										 |  |  |     if(s->flags&CODEC_FLAG_TRUNCATED){ | 
					
						
							|  |  |  |         int next; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-14 17:19:17 +00:00
										 |  |  |         if(CONFIG_MPEG4_DECODER && s->codec_id==CODEC_ID_MPEG4){ | 
					
						
							| 
									
										
										
										
											2004-04-29 14:21:33 +00:00
										 |  |  |             next= ff_mpeg4_find_frame_end(&s->parse_context, buf, buf_size); | 
					
						
							| 
									
										
										
										
											2009-01-14 17:19:17 +00:00
										 |  |  |         }else if(CONFIG_H263_DECODER && s->codec_id==CODEC_ID_H263){ | 
					
						
							| 
									
										
										
										
											2007-05-08 08:52:38 +00:00
										 |  |  |             next= ff_h263_find_frame_end(&s->parse_context, buf, buf_size); | 
					
						
							| 
									
										
										
										
											2002-11-08 18:35:39 +00:00
										 |  |  |         }else{ | 
					
						
							| 
									
										
										
										
											2005-04-24 17:21:11 +00:00
										 |  |  |             av_log(s->avctx, AV_LOG_ERROR, "this codec does not support truncated bitstreams\n"); | 
					
						
							| 
									
										
										
										
											2002-11-08 18:35:39 +00:00
										 |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-07 00:47:03 +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; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-23 08:14:12 +00:00
										 |  |  | retry: | 
					
						
							| 
									
										
										
										
											2011-09-06 04:09:43 +02:00
										 |  |  |     if(s->divx_packed && s->bitstream_buffer_size){ | 
					
						
							| 
									
										
										
										
											2011-03-03 03:37:44 +01:00
										 |  |  |         int i; | 
					
						
							|  |  |  |         for(i=0; i<buf_size-3; i++){ | 
					
						
							|  |  |  |             if(buf[i]==0 && buf[i+1]==0 && buf[i+2]==1){ | 
					
						
							| 
									
										
										
										
											2011-03-03 14:06:58 +01:00
										 |  |  |                 if(buf[i+3]==0xB0){ | 
					
						
							|  |  |  |                     av_log(s->avctx, AV_LOG_WARNING, "Discarding excessive bitstream in packed xvid\n"); | 
					
						
							| 
									
										
										
										
											2011-03-03 03:37:44 +01:00
										 |  |  |                     s->bitstream_buffer_size=0; | 
					
						
							| 
									
										
										
										
											2011-03-03 14:06:58 +01:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2011-03-03 03:37:44 +01:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-01-15 01:29:26 +00:00
										 |  |  |     if(s->bitstream_buffer_size && (s->divx_packed || buf_size<20)){ //divx 5.01+/xvid frame reorder
 | 
					
						
							| 
									
										
										
										
											2003-01-21 17:34:12 +00:00
										 |  |  |         init_get_bits(&s->gb, s->bitstream_buffer, s->bitstream_buffer_size*8); | 
					
						
							| 
									
										
										
										
											2002-05-02 20:45:43 +00:00
										 |  |  |     }else | 
					
						
							| 
									
										
										
										
											2003-01-21 17:34:12 +00:00
										 |  |  |         init_get_bits(&s->gb, buf, buf_size*8); | 
					
						
							| 
									
										
										
										
											2002-06-02 22:08:04 +00:00
										 |  |  |     s->bitstream_buffer_size=0; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-02 22:56:58 +00:00
										 |  |  |     if (!s->context_initialized) { | 
					
						
							| 
									
										
										
										
											2002-10-16 17:23:18 +00:00
										 |  |  |         if (MPV_common_init(s) < 0) //we need the idct permutaton for reading a custom matrix
 | 
					
						
							| 
									
										
										
										
											2002-10-02 22:56:58 +00:00
										 |  |  |             return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-12 09:29:25 +00:00
										 |  |  |     /* We need to set current_picture_ptr before reading the header,
 | 
					
						
							|  |  |  |      * otherwise we cannot store anyting in there */ | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |     if (s->current_picture_ptr == NULL || s->current_picture_ptr->f.data[0]) { | 
					
						
							| 
									
										
										
										
											2003-10-30 16:58:49 +00:00
										 |  |  |         int i= ff_find_unused_picture(s, 0); | 
					
						
							| 
									
										
										
										
											2011-12-08 13:56:29 +02:00
										 |  |  |         if (i < 0) | 
					
						
							|  |  |  |             return i; | 
					
						
							| 
									
										
										
										
											2003-10-30 16:58:49 +00:00
										 |  |  |         s->current_picture_ptr= &s->picture[i]; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     /* let's go :-) */ | 
					
						
							| 
									
										
										
										
											2009-01-14 17:19:17 +00:00
										 |  |  |     if (CONFIG_WMV2_DECODER && s->msmpeg4_version==5) { | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  |         ret= ff_wmv2_decode_picture_header(s); | 
					
						
							| 
									
										
										
										
											2009-01-14 17:19:17 +00:00
										 |  |  |     } else if (CONFIG_MSMPEG4_DECODER && s->msmpeg4_version) { | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |         ret = msmpeg4_decode_picture_header(s); | 
					
						
							| 
									
										
										
										
											2010-01-07 06:32:34 +00:00
										 |  |  |     } else if (CONFIG_MPEG4_DECODER && s->h263_pred) { | 
					
						
							| 
									
										
										
										
											2002-10-14 12:21:54 +00:00
										 |  |  |         if(s->avctx->extradata_size && s->picture_number==0){ | 
					
						
							|  |  |  |             GetBitContext gb; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-21 17:34:12 +00:00
										 |  |  |             init_get_bits(&gb, s->avctx->extradata, s->avctx->extradata_size*8); | 
					
						
							| 
									
										
										
										
											2002-10-14 12:21:54 +00:00
										 |  |  |             ret = ff_mpeg4_decode_picture_header(s, &gb); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         ret = ff_mpeg4_decode_picture_header(s, &s->gb); | 
					
						
							| 
									
										
										
										
											2010-01-07 06:32:34 +00:00
										 |  |  |     } else if (CONFIG_H263I_DECODER && s->codec_id == 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 { | 
					
						
							|  |  |  |         ret = h263_decode_picture_header(s); | 
					
						
							| 
									
										
										
										
											2002-03-19 03:51:36 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-24 17:21:11 +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 */ | 
					
						
							|  |  |  |     if (ret < 0){ | 
					
						
							| 
									
										
										
										
											2003-11-03 13:26:22 +00:00
										 |  |  |         av_log(s->avctx, AV_LOG_ERROR, "header damaged\n"); | 
					
						
							| 
									
										
										
										
											2003-08-01 11:00:03 +00:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-09 00:29:17 +00:00
										 |  |  |     avctx->has_b_frames= !s->low_delay; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |     if(s->xvid_build==-1 && s->divx_version==-1 && s->lavc_build==-1){ | 
					
						
							| 
									
										
										
										
											2009-01-17 12:21:01 +00:00
										 |  |  |         if(s->stream_codec_tag == AV_RL32("XVID") || | 
					
						
							|  |  |  |            s->codec_tag == AV_RL32("XVID") || s->codec_tag == AV_RL32("XVIX") || | 
					
						
							| 
									
										
										
										
											2010-05-26 17:23:36 +00:00
										 |  |  |            s->codec_tag == AV_RL32("RMP4") || | 
					
						
							|  |  |  |            s->codec_tag == AV_RL32("SIPP") | 
					
						
							|  |  |  |            ) | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |             s->xvid_build= 0; | 
					
						
							| 
									
										
										
										
											2003-09-10 23:40:55 +00:00
										 |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2009-01-17 12:21:01 +00:00
										 |  |  |         if(s->codec_tag == AV_RL32("DIVX") && s->vo_type==0 && s->vol_control_parameters==1 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |            && s->padding_bug_score > 0 && s->low_delay) // XVID with modified fourcc
 | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |             s->xvid_build= 0; | 
					
						
							| 
									
										
										
										
											2003-09-10 23:40:55 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-08-25 12:50:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |     if(s->xvid_build==-1 && s->divx_version==-1 && s->lavc_build==-1){ | 
					
						
							| 
									
										
										
										
											2009-01-17 12:21:01 +00:00
										 |  |  |         if(s->codec_tag == AV_RL32("DIVX") && s->vo_type==0 && s->vol_control_parameters==0) | 
					
						
							| 
									
										
										
										
											2003-08-25 12:50:15 +00:00
										 |  |  |             s->divx_version= 400; //divx 4
 | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |     if(s->xvid_build>=0 && s->divx_version>=0){ | 
					
						
							| 
									
										
										
										
											2004-10-15 11:48:50 +00:00
										 |  |  |         s->divx_version= | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |         s->divx_build= -1; | 
					
						
							| 
									
										
										
										
											2004-10-15 11:48:50 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if(s->workaround_bugs&FF_BUG_AUTODETECT){ | 
					
						
							| 
									
										
										
										
											2009-01-17 12:21:01 +00:00
										 |  |  |         if(s->codec_tag == AV_RL32("XVIX")) | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_XVID_ILACE; | 
					
						
							| 
									
										
										
										
											2003-08-25 12:50:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-17 12:21:01 +00:00
										 |  |  |         if(s->codec_tag == AV_RL32("UMP4")){ | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_UMP4; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2002-10-22 18:55:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-13 08:25:48 +00:00
										 |  |  |         if(s->divx_version>=500 && s->divx_build<1814){ | 
					
						
							| 
									
										
										
										
											2002-10-22 18:55:20 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_QPEL_CHROMA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2002-10-22 19:48:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-13 08:25:48 +00:00
										 |  |  |         if(s->divx_version>502 && s->divx_build<1814){ | 
					
						
							| 
									
										
										
										
											2003-02-02 23:34:30 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_QPEL_CHROMA2; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |         if(s->xvid_build<=3U) | 
					
						
							| 
									
										
										
										
											2002-12-29 01:27:50 +00:00
										 |  |  |             s->padding_bug_score= 256*256*256*64; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |         if(s->xvid_build<=1U) | 
					
						
							| 
									
										
										
										
											2002-10-22 19:48:52 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_QPEL_CHROMA; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |         if(s->xvid_build<=12U) | 
					
						
							| 
									
										
										
										
											2003-08-25 12:50:15 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_EDGE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |         if(s->xvid_build<=32U) | 
					
						
							| 
									
										
										
										
											2004-05-05 19:53:40 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_DC_CLIP; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 20:42:37 +00: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 00:43:15 +00:00
										 |  |  |         if(s->lavc_build<4653U) | 
					
						
							| 
									
										
										
										
											2003-01-09 20:42:37 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_STD_QPEL; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |         if(s->lavc_build<4655U) | 
					
						
							| 
									
										
										
										
											2003-02-08 18:23:39 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_DIRECT_BLOCKSIZE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |         if(s->lavc_build<4670U){ | 
					
						
							| 
									
										
										
										
											2003-07-16 18:12:14 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_EDGE; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |         if(s->lavc_build<=4712U) | 
					
						
							| 
									
										
										
										
											2004-05-05 19:53:40 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_DC_CLIP; | 
					
						
							| 
									
										
										
										
											2003-07-16 18:12:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |         if(s->divx_version>=0) | 
					
						
							| 
									
										
										
										
											2003-02-08 18:23:39 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_DIRECT_BLOCKSIZE; | 
					
						
							| 
									
										
										
										
											2002-10-14 19:53:04 +00:00
										 |  |  | //printf("padding_bug_score: %d\n", s->padding_bug_score);
 | 
					
						
							| 
									
										
										
										
											2003-02-28 01:59:56 +00:00
										 |  |  |         if(s->divx_version==501 && s->divx_build==20020416) | 
					
						
							|  |  |  |             s->padding_bug_score= 256*256*256*64; | 
					
						
							| 
									
										
										
										
											2003-03-15 20:47:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |         if(s->divx_version<500U){ | 
					
						
							| 
									
										
										
										
											2003-03-15 20:47:09 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_EDGE; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |         if(s->divx_version>=0) | 
					
						
							| 
									
										
										
										
											2004-04-02 19:54:33 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_HPEL_CHROMA; | 
					
						
							| 
									
										
										
										
											2002-10-14 19:53:04 +00:00
										 |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |         if(s->divx_version==500) | 
					
						
							| 
									
										
										
										
											2003-02-28 01:59:56 +00:00
										 |  |  |             s->padding_bug_score= 256*256*256*64; | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* very ugly XVID padding bug detection FIXME/XXX solve this differently
 | 
					
						
							| 
									
										
										
										
											2008-07-24 17:09:28 +00:00
										 |  |  |          * Let us hope this at least works. | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |          */ | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |         if(   s->resync_marker==0 && s->data_partitioning==0 && s->divx_version==-1 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |            && s->codec_id==CODEC_ID_MPEG4 && s->vo_type==0) | 
					
						
							|  |  |  |             s->workaround_bugs|= FF_BUG_NO_PADDING; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 00:43:15 +00:00
										 |  |  |         if(s->lavc_build<4609U) //FIXME not sure about the version num but a 4609 file seems ok
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_NO_PADDING; | 
					
						
							| 
									
										
										
										
											2002-10-14 19:53:04 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 20:42:37 +00: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 13:16:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-10 11:28:18 +00:00
										 |  |  |     if(avctx->debug & FF_DEBUG_BUGS) | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00: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 11:28:18 +00:00
										 |  |  |                s->workaround_bugs, s->lavc_build, s->xvid_build, s->divx_version, s->divx_build, | 
					
						
							|  |  |  |                s->divx_packed ? "p" : ""); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if HAVE_MMX
 | 
					
						
							| 
									
										
										
										
											2010-09-08 15:07:14 +00: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 17:09:54 +00:00
										 |  |  |         avctx->idct_algo= FF_IDCT_XVIDMMX; | 
					
						
							| 
									
										
										
										
											2004-09-28 23:31:59 +00:00
										 |  |  |         avctx->coded_width= 0; // force reinit
 | 
					
						
							| 
									
										
										
										
											2005-12-18 02:23:19 +00:00
										 |  |  | //        dsputil_init(&s->dsp, avctx);
 | 
					
						
							|  |  |  |         s->picture_number=0; | 
					
						
							| 
									
										
										
										
											2004-06-25 19:14:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-06-26 09:52:16 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-03-19 03:51:36 +00:00
										 |  |  |         /* After H263 & mpeg4 header decode we have the height, width,*/ | 
					
						
							| 
									
										
										
										
											2001-11-17 15:43:04 +00: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 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (   s->width  != avctx->coded_width | 
					
						
							| 
									
										
										
										
											2004-09-27 11:50:56 +00:00
										 |  |  |         || s->height != avctx->coded_height) { | 
					
						
							| 
									
										
										
										
											2002-07-14 18:37:35 +00:00
										 |  |  |         /* H.263 could change picture size any time */ | 
					
						
							| 
									
										
										
										
											2003-10-15 15:37:25 +00:00
										 |  |  |         ParseContext pc= s->parse_context; //FIXME move these demuxng hack to avformat
 | 
					
						
							|  |  |  |         s->parse_context.buffer=0; | 
					
						
							| 
									
										
										
										
											2002-07-14 18:37:35 +00:00
										 |  |  |         MPV_common_end(s); | 
					
						
							| 
									
										
										
										
											2003-10-15 15:37:25 +00:00
										 |  |  |         s->parse_context= pc; | 
					
						
							| 
									
										
										
										
											2002-07-14 18:37:35 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-03-19 03:51:36 +00:00
										 |  |  |     if (!s->context_initialized) { | 
					
						
							| 
									
										
										
										
											2004-09-27 11:50:56 +00:00
										 |  |  |         avcodec_set_dimensions(avctx, s->width, s->height); | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-23 08:14:12 +00:00
										 |  |  |         goto retry; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-10-19 23:48:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-11 12:02:16 +00:00
										 |  |  |     if((s->codec_id==CODEC_ID_H263 || s->codec_id==CODEC_ID_H263P || s->codec_id == CODEC_ID_H263I)) | 
					
						
							| 
									
										
										
										
											2002-10-19 23:48:08 +00:00
										 |  |  |         s->gob_index = ff_h263_get_gob_height(s); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-02 11:56:21 +02:00
										 |  |  |     // for skipping the frame
 | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02: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 */ | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02: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 18:14:38 +00:00
										 |  |  |        ||  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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-02 12:16:28 +00:00
										 |  |  |     if(s->next_p_frame_damaged){ | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |         if(s->pict_type==AV_PICTURE_TYPE_B) | 
					
						
							| 
									
										
										
										
											2002-09-12 11:10:33 +00:00
										 |  |  |             return get_consumed_bytes(s, buf_size); | 
					
						
							| 
									
										
										
										
											2002-06-02 12:16:28 +00:00
										 |  |  |         else | 
					
						
							|  |  |  |             s->next_p_frame_damaged=0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |     if((s->avctx->flags2 & CODEC_FLAG2_FAST) && s->pict_type==AV_PICTURE_TYPE_B){ | 
					
						
							| 
									
										
										
										
											2006-10-01 21:25:17 +00: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-28 01:40:44 +02:00
										 |  |  |     }else if((!s->no_rounding) || s->pict_type==AV_PICTURE_TYPE_B){ | 
					
						
							| 
									
										
										
										
											2006-10-04 02:57:43 +00:00
										 |  |  |         s->me.qpel_put= s->dsp.put_qpel_pixels_tab; | 
					
						
							| 
									
										
										
										
											2006-10-01 21:25:17 +00:00
										 |  |  |         s->me.qpel_avg= s->dsp.avg_qpel_pixels_tab; | 
					
						
							|  |  |  |     }else{ | 
					
						
							| 
									
										
										
										
											2006-10-04 02:57:43 +00:00
										 |  |  |         s->me.qpel_put= s->dsp.put_no_rnd_qpel_pixels_tab; | 
					
						
							| 
									
										
										
										
											2006-10-01 21:25:17 +00:00
										 |  |  |         s->me.qpel_avg= s->dsp.avg_qpel_pixels_tab; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-27 00:02:23 +00:00
										 |  |  |     if(MPV_frame_start(s, avctx) < 0) | 
					
						
							|  |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-22 22:36:57 +01:00
										 |  |  |     if (!s->divx_packed) ff_thread_finish_setup(avctx); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-10 18:52:39 +00:00
										 |  |  |     if (CONFIG_MPEG4_VDPAU_DECODER && (s->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)) { | 
					
						
							| 
									
										
										
										
											2010-03-02 17:12:41 +00:00
										 |  |  |         ff_vdpau_mpeg4_decode_picture(s, s->gb.buffer, s->gb.buffer_end - s->gb.buffer); | 
					
						
							| 
									
										
										
										
											2009-11-10 18:52:39 +00:00
										 |  |  |         goto frame_end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-27 08:27:50 +00:00
										 |  |  |     if (avctx->hwaccel) { | 
					
						
							| 
									
										
										
										
											2010-03-02 17:12:41 +00:00
										 |  |  |         if (avctx->hwaccel->start_frame(avctx, s->gb.buffer, s->gb.buffer_end - s->gb.buffer) < 0) | 
					
						
							| 
									
										
										
										
											2009-02-27 08:27:50 +00:00
										 |  |  |             return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-20 01:00:57 +00:00
										 |  |  |     ff_er_frame_start(s); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-12 15:00:32 +00:00
										 |  |  |     //the second part of the wmv2 header contains the MB skip bits which are stored in current_picture->mb_type
 | 
					
						
							| 
									
										
										
										
											2007-06-12 09:29:25 +00:00
										 |  |  |     //which is not available before MPV_frame_start()
 | 
					
						
							| 
									
										
										
										
											2009-01-14 17:19:17 +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); | 
					
						
							|  |  |  |         if(ret<0) return ret; | 
					
						
							|  |  |  |         if(ret==1) goto intrax8_decoded; | 
					
						
							| 
									
										
										
										
											2003-04-12 15:00:32 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     /* decode each macroblock */ | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |     s->mb_x=0; | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |     s->mb_y=0; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-27 19:09:45 -04:00
										 |  |  |     ret = decode_slice(s); | 
					
						
							| 
									
										
										
										
											2003-04-12 15:00:32 +00:00
										 |  |  |     while(s->mb_y<s->mb_height){ | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |         if(s->msmpeg4_version){ | 
					
						
							| 
									
										
										
										
											2007-01-22 22:27:02 +00: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 13:16:04 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |         }else{ | 
					
						
							| 
									
										
										
										
											2011-06-02 10:15:58 -07:00
										 |  |  |             int prev_x=s->mb_x, prev_y=s->mb_y; | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |             if(ff_h263_resync(s)<0) | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2011-06-02 10:15:58 -07: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 12:16:28 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 11:37:08 +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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-27 19:09:45 -04:00
										 |  |  |         if (decode_slice(s) < 0) ret = AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-10-19 01:31:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-24 16:28:45 -07:00
										 |  |  |     if (s->msmpeg4_version && s->msmpeg4_version<4 && s->pict_type==AV_PICTURE_TYPE_I) | 
					
						
							| 
									
										
										
										
											2009-01-14 17:19:17 +00:00
										 |  |  |         if(!CONFIG_MSMPEG4_DECODER || msmpeg4_decode_ext_header(s, buf_size) < 0){ | 
					
						
							| 
									
										
										
										
											2011-11-28 00:31:52 +01:00
										 |  |  |             s->error_status_table[s->mb_num-1]= ER_MB_ERROR; | 
					
						
							| 
									
										
										
										
											2002-12-04 10:04:03 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-01 21:07:52 +00:00
										 |  |  |     assert(s->bitstream_buffer_size==0); | 
					
						
							| 
									
										
										
										
											2010-03-01 16:52:35 +00:00
										 |  |  | frame_end: | 
					
						
							| 
									
										
										
										
											2002-04-22 12:45:22 +00:00
										 |  |  |     /* divx 5.01+ bistream reorder stuff */ | 
					
						
							| 
									
										
										
										
											2010-01-01 21:07:52 +00:00
										 |  |  |     if(s->codec_id==CODEC_ID_MPEG4 && s->divx_packed){ | 
					
						
							| 
									
										
										
										
											2011-05-22 19:06:10 +02:00
										 |  |  |         int current_pos= s->gb.buffer == s->bitstream_buffer ? 0 : (get_bits_count(&s->gb)>>3); | 
					
						
							| 
									
										
										
										
											2004-01-15 01:29:26 +00:00
										 |  |  |         int startcode_found=0; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-02 18:00:31 +02:00
										 |  |  |         if(buf_size - current_pos > 7){ | 
					
						
							| 
									
										
										
										
											2002-06-02 12:16:28 +00:00
										 |  |  |             int i; | 
					
						
							| 
									
										
										
										
											2011-05-22 19:06:10 +02:00
										 |  |  |             for(i=current_pos; i<buf_size-4; i++){ | 
					
						
							| 
									
										
										
										
											2002-06-02 12:16:28 +00:00
										 |  |  |                 if(buf[i]==0 && buf[i+1]==0 && buf[i+2]==1 && buf[i+3]==0xB6){ | 
					
						
							| 
									
										
										
										
											2011-05-22 19:06:10 +02:00
										 |  |  |                     startcode_found=!(buf[i+4]&0x40); | 
					
						
							| 
									
										
										
										
											2002-06-02 12:16:28 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2004-01-15 01:29:26 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if(startcode_found){ | 
					
						
							| 
									
										
										
										
											2009-04-12 13:17:37 +00:00
										 |  |  |             av_fast_malloc( | 
					
						
							|  |  |  |                 &s->bitstream_buffer, | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |                 &s->allocated_bitstream_buffer_size, | 
					
						
							| 
									
										
										
										
											2005-01-12 00:16:25 +00:00
										 |  |  |                 buf_size - current_pos + FF_INPUT_BUFFER_PADDING_SIZE); | 
					
						
							| 
									
										
										
										
											2009-04-12 13:17:37 +00:00
										 |  |  |             if (!s->bitstream_buffer) | 
					
						
							|  |  |  |                 return AVERROR(ENOMEM); | 
					
						
							| 
									
										
										
										
											2004-01-15 01:29:26 +00:00
										 |  |  |             memcpy(s->bitstream_buffer, buf + current_pos, buf_size - current_pos); | 
					
						
							|  |  |  |             s->bitstream_buffer_size= buf_size - current_pos; | 
					
						
							| 
									
										
										
										
											2002-06-02 12:16:28 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-09 21:37:48 +00:00
										 |  |  | intrax8_decoded: | 
					
						
							| 
									
										
										
										
											2003-03-20 01:00:57 +00:00
										 |  |  |     ff_er_frame_end(s); | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 18:39:42 +00:00
										 |  |  |     if (avctx->hwaccel) { | 
					
						
							|  |  |  |         if (avctx->hwaccel->end_frame(avctx) < 0) | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     MPV_frame_end(s); | 
					
						
							| 
									
										
										
										
											2003-01-09 20:42:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-03 17:31:11 -07:00
										 |  |  |     assert(s->current_picture.f.pict_type == s->current_picture_ptr->f.pict_type); | 
					
						
							|  |  |  |     assert(s->current_picture.f.pict_type == s->pict_type); | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |     if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) { | 
					
						
							| 
									
										
										
										
											2006-03-10 20:40:52 +00: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 02:12:12 +00:00
										 |  |  |         ff_print_debug_info(s, pict); | 
					
						
							| 
									
										
										
										
											2002-03-12 22:54:25 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-12-18 09:23:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-16 22:01:30 +00:00
										 |  |  | #ifdef PRINT_FRAME_TIME
 | 
					
						
							| 
									
										
										
										
											2006-11-01 22:39:58 +00:00
										 |  |  | av_log(avctx, AV_LOG_DEBUG, "%"PRId64"\n", rdtsc()-time); | 
					
						
							| 
									
										
										
										
											2002-05-16 22:01:30 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2003-05-22 14:12:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-22 08:44:16 -04:00
										 |  |  |     return (ret && (avctx->err_recognition & AV_EF_EXPLODE))?ret:get_consumed_bytes(s, buf_size); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 21:40:11 +00:00
										 |  |  | AVCodec ff_h263_decoder = { | 
					
						
							| 
									
										
										
										
											2011-07-17 12:54:31 +02:00
										 |  |  |     .name           = "h263", | 
					
						
							|  |  |  |     .type           = AVMEDIA_TYPE_VIDEO, | 
					
						
							|  |  |  |     .id             = CODEC_ID_H263, | 
					
						
							|  |  |  |     .priv_data_size = sizeof(MpegEncContext), | 
					
						
							|  |  |  |     .init           = ff_h263_decode_init, | 
					
						
							|  |  |  |     .close          = ff_h263_decode_end, | 
					
						
							|  |  |  |     .decode         = ff_h263_decode_frame, | 
					
						
							|  |  |  |     .capabilities   = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY, | 
					
						
							| 
									
										
										
										
											2003-07-17 12:29:07 +00:00
										 |  |  |     .flush= ff_mpeg_flush, | 
					
						
							| 
									
										
										
										
											2010-07-07 21:23:36 +00:00
										 |  |  |     .max_lowres= 3, | 
					
						
							| 
									
										
										
										
											2009-03-02 05:18:33 +00:00
										 |  |  |     .long_name= NULL_IF_CONFIG_SMALL("H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2"), | 
					
						
							| 
									
										
										
										
											2009-02-27 15:49:32 +00:00
										 |  |  |     .pix_fmts= ff_hwaccel_pixfmt_list_420, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | }; |