| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2003-03-06 11:32:04 +00:00
										 |  |  |  * H.263 decoder | 
					
						
							| 
									
										
										
										
											2002-05-25 22:45:33 +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
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @file h263dec.c | 
					
						
							|  |  |  |  * H.263 decoder. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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"
 | 
					
						
							| 
									
										
										
										
											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"
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  | 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; | 
					
						
							| 
									
										
										
										
											2002-12-29 22:20:03 +00:00
										 |  |  |     avctx->pix_fmt= PIX_FMT_YUV420P; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2001-08-15 13:09:47 +00:00
										 |  |  |     case CODEC_ID_MPEG4: | 
					
						
							| 
									
										
										
										
											2003-12-03 01:16:35 +00:00
										 |  |  |         s->decode_mb= ff_mpeg4_decode_mb; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |         s->time_increment_bits = 4; /* default value for broken headers */ | 
					
						
							|  |  |  |         s->h263_pred = 1; | 
					
						
							| 
									
										
										
										
											2002-12-09 00:29:17 +00:00
										 |  |  |         s->low_delay = 0; //default, might be overriden in the vol header during header parsing
 | 
					
						
							| 
									
										
										
										
											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_msmpeg4 = 1; | 
					
						
							|  |  |  |         s->h263_pred = 1; | 
					
						
							| 
									
										
										
										
											2002-04-05 04:09:04 +00:00
										 |  |  |         s->msmpeg4_version=1; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case CODEC_ID_MSMPEG4V2: | 
					
						
							|  |  |  |         s->h263_msmpeg4 = 1; | 
					
						
							|  |  |  |         s->h263_pred = 1; | 
					
						
							|  |  |  |         s->msmpeg4_version=2; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case CODEC_ID_MSMPEG4V3: | 
					
						
							|  |  |  |         s->h263_msmpeg4 = 1; | 
					
						
							|  |  |  |         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_msmpeg4 = 1; | 
					
						
							|  |  |  |         s->h263_pred = 1; | 
					
						
							|  |  |  |         s->msmpeg4_version=4; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2002-06-18 00:46:02 +00:00
										 |  |  |     case CODEC_ID_WMV2: | 
					
						
							|  |  |  |         s->h263_msmpeg4 = 1; | 
					
						
							|  |  |  |         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: | 
					
						
							|  |  |  |         s->h263_msmpeg4 = 1; | 
					
						
							|  |  |  |         s->h263_pred = 1; | 
					
						
							|  |  |  |         s->msmpeg4_version=6; | 
					
						
							|  |  |  |         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; | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-10 13:11:36 +00:00
										 |  |  |     if (ENABLE_MSMPEG4_DECODER && s->h263_msmpeg4) | 
					
						
							| 
									
										
										
										
											2002-06-18 00:46:02 +00:00
										 |  |  |         ff_msmpeg4_decode_init(s); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     else | 
					
						
							|  |  |  |         h263_decode_init_vlc(s); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  | 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
										 |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2005-06-17 15:02:53 +00:00
										 |  |  |  * returns 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-20 17:52:30 +00:00
										 |  |  |     if(s->divx_packed){ | 
					
						
							| 
									
										
										
										
											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{ | 
					
						
							|  |  |  |         if(pos==0) pos=1; //avoid infinite loops (i doubt thats 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){ | 
					
						
							| 
									
										
										
										
											2003-03-20 01:00:57 +00:00
										 |  |  |     const int part_mask= s->partitioned_frame ? (AC_END|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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |     if(s->partitioned_frame){ | 
					
						
							|  |  |  |         const int qscale= s->qscale; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if(s->codec_id==CODEC_ID_MPEG4){ | 
					
						
							|  |  |  |             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){ | 
					
						
							| 
									
										
										
										
											2003-03-20 01:00:57 +00:00
										 |  |  |                 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, AC_END|DC_END|MV_END); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 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); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-29 02:09:12 +00:00
										 |  |  |             if (s->pict_type!=B_TYPE) | 
					
						
							|  |  |  |                 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));
 | 
					
						
							| 
									
										
										
										
											2003-03-20 01:00:57 +00:00
										 |  |  |                     ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_END|DC_END|MV_END)&part_mask); | 
					
						
							| 
									
										
										
										
											2002-10-14 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); | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							| 
									
										
										
										
											2003-03-20 01:00:57 +00:00
										 |  |  |                     ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x+1, s->mb_y, (AC_END|DC_END|MV_END)&part_mask); | 
					
						
							| 
									
										
										
										
											2002-10-13 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); | 
					
						
							| 
									
										
										
										
											2003-03-20 01:00:57 +00:00
										 |  |  |                 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_ERROR|DC_ERROR|MV_ERROR)&part_mask); | 
					
						
							| 
									
										
										
										
											2005-12-17 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); | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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) | 
					
						
							| 
									
										
										
										
											2003-01-21 17:34:12 +00:00
										 |  |  |        &&    s->gb.size_in_bits - get_bits_count(&s->gb) >=0 | 
					
						
							|  |  |  |        &&    s->gb.size_in_bits - get_bits_count(&s->gb) < 48 | 
					
						
							| 
									
										
										
										
											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){ | 
					
						
							| 
									
										
										
										
											2005-01-05 00:20:52 +00:00
										 |  |  |         if(s->padding_bug_score > -2 && !s->data_partitioning /*&& (s->divx_version || !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
 | 
					
						
							| 
									
										
										
										
											2003-01-21 17:34:12 +00:00
										 |  |  |         int left= s->gb.size_in_bits - get_bits_count(&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 */ | 
					
						
							|  |  |  |         if(s->msmpeg4_version && s->pict_type==I_TYPE) | 
					
						
							|  |  |  |             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 */ | 
					
						
							| 
									
										
										
										
											2003-01-13 13:20:21 +00:00
										 |  |  |         if((s->workaround_bugs&FF_BUG_NO_PADDING) && s->error_resilience>=3) | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2003-03-20 01:00:57 +00:00
										 |  |  |             ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, AC_END|DC_END|MV_END); | 
					
						
							| 
									
										
										
										
											2005-12-17 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", | 
					
						
							| 
									
										
										
										
											2003-01-21 17:34:12 +00:00
										 |  |  |             s->gb.size_in_bits - get_bits_count(&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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-20 01:00:57 +00:00
										 |  |  |     ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_END|DC_END|MV_END)&part_mask); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 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, | 
					
						
							| 
									
										
										
										
											2003-02-11 16:35:48 +00:00
										 |  |  |                              uint8_t *buf, int buf_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(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | #ifdef DEBUG
 | 
					
						
							| 
									
										
										
										
											2006-08-04 22:51:20 +00:00
										 |  |  |     av_log(avctx, AV_LOG_DEBUG, "*****frame %d size=%d\n", avctx->frame_number, buf_size); | 
					
						
							| 
									
										
										
										
											2007-03-08 14:49:43 +00:00
										 |  |  |     if(buf_size>0) | 
					
						
							|  |  |  |         av_log(avctx, AV_LOG_DEBUG, "bytes=%x %x %x %x\n", buf[0], buf[1], buf[2], buf[3]); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-08 18:35:39 +00:00
										 |  |  |         if(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); | 
					
						
							| 
									
										
										
										
											2003-05-22 14:12:22 +00:00
										 |  |  |         }else if(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: | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-10-30 16:58:49 +00:00
										 |  |  |     //we need to set current_picture_ptr before reading the header, otherwise we cant store anyting im there
 | 
					
						
							|  |  |  |     if(s->current_picture_ptr==NULL || s->current_picture_ptr->data[0]){ | 
					
						
							|  |  |  |         int i= ff_find_unused_picture(s, 0); | 
					
						
							|  |  |  |         s->current_picture_ptr= &s->picture[i]; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     /* let's go :-) */ | 
					
						
							| 
									
										
										
										
											2007-05-10 13:11:36 +00:00
										 |  |  |     if (ENABLE_WMV2_DECODER && s->msmpeg4_version==5) { | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  |         ret= ff_wmv2_decode_picture_header(s); | 
					
						
							| 
									
										
										
										
											2007-05-10 13:11:36 +00:00
										 |  |  |     } else if (ENABLE_MSMPEG4_DECODER && s->msmpeg4_version) { | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |         ret = msmpeg4_decode_picture_header(s); | 
					
						
							|  |  |  |     } else if (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); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-02 18:47:51 +00:00
										 |  |  |         if(s->flags& CODEC_FLAG_LOW_DELAY) | 
					
						
							|  |  |  |             s->low_delay=1; | 
					
						
							| 
									
										
										
										
											2003-12-13 20:41:33 +00:00
										 |  |  |     } else if (s->codec_id == CODEC_ID_H263I) { | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |         ret = intel_h263_decode_picture_header(s); | 
					
						
							| 
									
										
										
										
											2003-07-09 23:10:59 +00:00
										 |  |  |     } else if (s->h263_flv) { | 
					
						
							|  |  |  |         ret = flv_h263_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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-25 12:50:15 +00:00
										 |  |  |     if(s->xvid_build==0 && s->divx_version==0 && s->lavc_build==0){ | 
					
						
							| 
									
										
										
										
											2006-11-07 09:46:57 +00:00
										 |  |  |         if(s->stream_codec_tag == ff_get_fourcc("XVID") || | 
					
						
							|  |  |  |            s->codec_tag == ff_get_fourcc("XVID") || s->codec_tag == ff_get_fourcc("XVIX") || | 
					
						
							|  |  |  |            s->codec_tag == ff_get_fourcc("RMP4")) | 
					
						
							| 
									
										
										
										
											2003-08-25 12:50:15 +00:00
										 |  |  |             s->xvid_build= -1; | 
					
						
							| 
									
										
										
										
											2003-09-10 23:40:55 +00:00
										 |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2006-11-07 09:46:57 +00:00
										 |  |  |         if(s->codec_tag == ff_get_fourcc("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
 | 
					
						
							| 
									
										
										
										
											2003-09-10 11:28:18 +00:00
										 |  |  |             s->xvid_build= -1; | 
					
						
							| 
									
										
										
										
											2003-09-10 23:40:55 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-08-25 12:50:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-10 23:40:55 +00:00
										 |  |  |     if(s->xvid_build==0 && s->divx_version==0 && s->lavc_build==0){ | 
					
						
							| 
									
										
										
										
											2006-11-07 09:46:57 +00:00
										 |  |  |         if(s->codec_tag == ff_get_fourcc("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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-15 11:48:50 +00:00
										 |  |  |     if(s->xvid_build && s->divx_version){ | 
					
						
							|  |  |  |         s->divx_version= | 
					
						
							|  |  |  |         s->divx_build= 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if(s->workaround_bugs&FF_BUG_AUTODETECT){ | 
					
						
							| 
									
										
										
										
											2006-11-07 09:46:57 +00:00
										 |  |  |         if(s->codec_tag == ff_get_fourcc("XVIX")) | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_XVID_ILACE; | 
					
						
							| 
									
										
										
										
											2003-08-25 12:50:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-07 09:46:57 +00:00
										 |  |  |         if(s->codec_tag == ff_get_fourcc("UMP4")){ | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_UMP4; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2002-10-22 18:55:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-25 12:50:15 +00:00
										 |  |  |         if(s->divx_version>=500){ | 
					
						
							| 
									
										
										
										
											2002-10-22 18:55:20 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_QPEL_CHROMA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2002-10-22 19:48:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-02 23:34:30 +00:00
										 |  |  |         if(s->divx_version>502){ | 
					
						
							|  |  |  |             s->workaround_bugs|= FF_BUG_QPEL_CHROMA2; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-29 01:27:50 +00:00
										 |  |  |         if(s->xvid_build && s->xvid_build<=3) | 
					
						
							|  |  |  |             s->padding_bug_score= 256*256*256*64; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-22 19:48:52 +00:00
										 |  |  |         if(s->xvid_build && s->xvid_build<=1) | 
					
						
							|  |  |  |             s->workaround_bugs|= FF_BUG_QPEL_CHROMA; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-25 12:50:15 +00:00
										 |  |  |         if(s->xvid_build && s->xvid_build<=12) | 
					
						
							|  |  |  |             s->workaround_bugs|= FF_BUG_EDGE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-05 19:53:40 +00:00
										 |  |  |         if(s->xvid_build && s->xvid_build<=32) | 
					
						
							|  |  |  |             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; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if(s->lavc_build && s->lavc_build<4653) | 
					
						
							|  |  |  |             s->workaround_bugs|= FF_BUG_STD_QPEL; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-08 18:23:39 +00:00
										 |  |  |         if(s->lavc_build && s->lavc_build<4655) | 
					
						
							|  |  |  |             s->workaround_bugs|= FF_BUG_DIRECT_BLOCKSIZE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-10-04 23:59:14 +00:00
										 |  |  |         if(s->lavc_build && s->lavc_build<4670){ | 
					
						
							| 
									
										
										
										
											2003-07-16 18:12:14 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_EDGE; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-05 19:53:40 +00:00
										 |  |  |         if(s->lavc_build && s->lavc_build<=4712) | 
					
						
							|  |  |  |             s->workaround_bugs|= FF_BUG_DC_CLIP; | 
					
						
							| 
									
										
										
										
											2003-07-16 18:12:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-08 18:23:39 +00:00
										 |  |  |         if(s->divx_version) | 
					
						
							|  |  |  |             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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-16 18:12:14 +00:00
										 |  |  |         if(s->divx_version && s->divx_version<500){ | 
					
						
							| 
									
										
										
										
											2003-03-15 20:47:09 +00:00
										 |  |  |             s->workaround_bugs|= FF_BUG_EDGE; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-04-02 19:54:33 +00:00
										 |  |  |         if(s->divx_version) | 
					
						
							|  |  |  |             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
 | 
					
						
							|  |  |  |          * lets hope this at least works | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if(   s->resync_marker==0 && s->data_partitioning==0 && s->divx_version==0 | 
					
						
							|  |  |  |            && 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |         if(s->lavc_build && s->lavc_build<4609) //FIXME not sure about the version num but a 4609 file seems ok
 | 
					
						
							|  |  |  |             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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-27 14:48:44 +00:00
										 |  |  | #if 0 // dump bits per frame / qp / complexity
 | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     static FILE *f=NULL; | 
					
						
							|  |  |  |     if(!f) f=fopen("rate_qp_cplx.txt", "w"); | 
					
						
							| 
									
										
										
										
											2002-08-01 23:23:48 +00:00
										 |  |  |     fprintf(f, "%d %d %f\n", buf_size, s->qscale, buf_size*(double)s->qscale); | 
					
						
							| 
									
										
										
										
											2002-07-27 14:48:44 +00:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-06-26 09:52:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-10 17:09:54 +00:00
										 |  |  | #if defined(HAVE_MMX) && defined(CONFIG_GPL)
 | 
					
						
							| 
									
										
										
										
											2006-11-14 03:18:09 +00:00
										 |  |  |     if(s->codec_id == CODEC_ID_MPEG4 && s->xvid_build && avctx->idct_algo == FF_IDCT_AUTO && (mm_flags & MM_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
										 |  |  | 
 | 
					
						
							|  |  |  |     if((s->codec_id==CODEC_ID_H263 || s->codec_id==CODEC_ID_H263P)) | 
					
						
							|  |  |  |         s->gob_index = ff_h263_get_gob_height(s); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-04 10:04:03 +00:00
										 |  |  |     // for hurry_up==5
 | 
					
						
							|  |  |  |     s->current_picture.pict_type= s->pict_type; | 
					
						
							|  |  |  |     s->current_picture.key_frame= s->pict_type == I_TYPE; | 
					
						
							| 
									
										
										
										
											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 */ | 
					
						
							| 
									
										
										
										
											2004-06-03 14:17:59 +00:00
										 |  |  |     if(s->last_picture_ptr==NULL && (s->pict_type==B_TYPE || s->dropable)) return get_consumed_bytes(s, buf_size); | 
					
						
							| 
									
										
										
										
											2002-04-27 13:12:57 +00:00
										 |  |  |     /* skip b frames if we are in a hurry */ | 
					
						
							| 
									
										
										
										
											2002-11-23 09:12:57 +00:00
										 |  |  |     if(avctx->hurry_up && s->pict_type==B_TYPE) return get_consumed_bytes(s, buf_size); | 
					
						
							| 
									
										
										
										
											2005-07-14 21:39:36 +00:00
										 |  |  |     if(   (avctx->skip_frame >= AVDISCARD_NONREF && s->pict_type==B_TYPE) | 
					
						
							|  |  |  |        || (avctx->skip_frame >= AVDISCARD_NONKEY && s->pict_type!=I_TYPE) | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							| 
									
										
										
										
											2002-11-10 10:54:07 +00:00
										 |  |  |     /* skip everything if we are in a hurry>=5 */ | 
					
						
							| 
									
										
										
										
											2002-11-23 09:12:57 +00:00
										 |  |  |     if(avctx->hurry_up>=5) 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){ | 
					
						
							|  |  |  |         if(s->pict_type==B_TYPE) | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-01 21:25:17 +00:00
										 |  |  |     if((s->avctx->flags2 & CODEC_FLAG2_FAST) && s->pict_type==B_TYPE){ | 
					
						
							|  |  |  |         s->me.qpel_put= s->dsp.put_2tap_qpel_pixels_tab; | 
					
						
							|  |  |  |         s->me.qpel_avg= s->dsp.avg_2tap_qpel_pixels_tab; | 
					
						
							|  |  |  |     }else if((!s->no_rounding) || s->pict_type==B_TYPE){ | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef DEBUG
 | 
					
						
							| 
									
										
										
										
											2006-03-08 11:43:10 +00:00
										 |  |  |     av_log(avctx, AV_LOG_DEBUG, "qscale=%d\n", s->qscale); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							|  |  |  |     //which isnt available before MPV_frame_start()
 | 
					
						
							|  |  |  |     if (s->msmpeg4_version==5){ | 
					
						
							| 
									
										
										
										
											2007-05-10 13:11:36 +00:00
										 |  |  |         if(!ENABLE_WMV2_DECODER || ff_wmv2_decode_secondary_picture_header(s) < 0) | 
					
						
							| 
									
										
										
										
											2003-04-12 15:00:32 +00:00
										 |  |  |             return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |     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{ | 
					
						
							|  |  |  |             if(ff_h263_resync(s)<0) | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  |         decode_slice(s); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-10-19 01:31:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-06 22:29:37 +00:00
										 |  |  |     if (s->h263_msmpeg4 && s->msmpeg4_version<4 && s->pict_type==I_TYPE) | 
					
						
							| 
									
										
										
										
											2007-05-10 13:11:36 +00:00
										 |  |  |         if(!ENABLE_MSMPEG4_DECODER || msmpeg4_decode_ext_header(s, buf_size) < 0){ | 
					
						
							| 
									
										
										
										
											2002-12-04 10:04:03 +00:00
										 |  |  |             s->error_status_table[s->mb_num-1]= AC_ERROR|DC_ERROR|MV_ERROR; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-22 12:45:22 +00:00
										 |  |  |     /* divx 5.01+ bistream reorder stuff */ | 
					
						
							| 
									
										
										
										
											2003-03-20 17:52:30 +00:00
										 |  |  |     if(s->codec_id==CODEC_ID_MPEG4 && s->bitstream_buffer_size==0 && s->divx_packed){ | 
					
						
							| 
									
										
										
										
											2002-06-02 12:16:28 +00:00
										 |  |  |         int current_pos= 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-01-12 00:16:25 +00:00
										 |  |  |         if(buf_size - current_pos > 5){ | 
					
						
							| 
									
										
										
										
											2002-06-02 12:16:28 +00:00
										 |  |  |             int i; | 
					
						
							| 
									
										
										
										
											2002-09-12 11:10:33 +00:00
										 |  |  |             for(i=current_pos; i<buf_size-3; 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){ | 
					
						
							|  |  |  |                     startcode_found=1; | 
					
						
							|  |  |  |                     break; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2004-01-15 01:29:26 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         if(s->gb.buffer == s->bitstream_buffer && buf_size>20){ //xvid style
 | 
					
						
							|  |  |  |             startcode_found=1; | 
					
						
							|  |  |  |             current_pos=0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if(startcode_found){ | 
					
						
							| 
									
										
										
										
											2005-01-12 00:16:25 +00:00
										 |  |  |             s->bitstream_buffer= av_fast_realloc( | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |                 s->bitstream_buffer, | 
					
						
							|  |  |  |                 &s->allocated_bitstream_buffer_size, | 
					
						
							| 
									
										
										
										
											2005-01-12 00:16:25 +00:00
										 |  |  |                 buf_size - current_pos + FF_INPUT_BUFFER_PADDING_SIZE); | 
					
						
							| 
									
										
										
										
											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
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-20 01:00:57 +00:00
										 |  |  |     ff_er_frame_end(s); | 
					
						
							| 
									
										
										
										
											2002-10-13 13:16:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     MPV_frame_end(s); | 
					
						
							| 
									
										
										
										
											2003-01-09 20:42:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-27 12:31:03 +00:00
										 |  |  | assert(s->current_picture.pict_type == s->current_picture_ptr->pict_type); | 
					
						
							|  |  |  | assert(s->current_picture.pict_type == s->pict_type); | 
					
						
							| 
									
										
										
										
											2006-03-10 20:40:52 +00:00
										 |  |  |     if (s->pict_type == B_TYPE || s->low_delay) { | 
					
						
							|  |  |  |         *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-02-09 16:59:56 +00:00
										 |  |  |     /* Return the Picture timestamp as the frame number */ | 
					
						
							|  |  |  |     /* we substract 1 because it is added on utils.c    */ | 
					
						
							|  |  |  |     avctx->frame_number = s->picture_number - 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-12 11:10:33 +00:00
										 |  |  |     return get_consumed_bytes(s, buf_size); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-15 13:09:47 +00:00
										 |  |  | AVCodec mpeg4_decoder = { | 
					
						
							|  |  |  |     "mpeg4", | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     CODEC_TYPE_VIDEO, | 
					
						
							| 
									
										
										
										
											2001-08-15 13:09:47 +00:00
										 |  |  |     CODEC_ID_MPEG4, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     sizeof(MpegEncContext), | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  |     ff_h263_decode_init, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  |     ff_h263_decode_end, | 
					
						
							|  |  |  |     ff_h263_decode_frame, | 
					
						
							| 
									
										
										
										
											2005-01-23 18:09:06 +00:00
										 |  |  |     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, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | AVCodec h263_decoder = { | 
					
						
							|  |  |  |     "h263", | 
					
						
							|  |  |  |     CODEC_TYPE_VIDEO, | 
					
						
							|  |  |  |     CODEC_ID_H263, | 
					
						
							|  |  |  |     sizeof(MpegEncContext), | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  |     ff_h263_decode_init, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  |     ff_h263_decode_end, | 
					
						
							|  |  |  |     ff_h263_decode_frame, | 
					
						
							| 
									
										
										
										
											2005-01-23 18:09:06 +00:00
										 |  |  |     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, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-05 04:09:04 +00:00
										 |  |  | AVCodec msmpeg4v1_decoder = { | 
					
						
							|  |  |  |     "msmpeg4v1", | 
					
						
							|  |  |  |     CODEC_TYPE_VIDEO, | 
					
						
							|  |  |  |     CODEC_ID_MSMPEG4V1, | 
					
						
							|  |  |  |     sizeof(MpegEncContext), | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  |     ff_h263_decode_init, | 
					
						
							| 
									
										
										
										
											2002-04-05 04:09:04 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  |     ff_h263_decode_end, | 
					
						
							|  |  |  |     ff_h263_decode_frame, | 
					
						
							| 
									
										
										
										
											2002-07-14 18:37:35 +00:00
										 |  |  |     CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1, | 
					
						
							| 
									
										
										
										
											2002-04-05 04:09:04 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | AVCodec msmpeg4v2_decoder = { | 
					
						
							|  |  |  |     "msmpeg4v2", | 
					
						
							|  |  |  |     CODEC_TYPE_VIDEO, | 
					
						
							|  |  |  |     CODEC_ID_MSMPEG4V2, | 
					
						
							|  |  |  |     sizeof(MpegEncContext), | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  |     ff_h263_decode_init, | 
					
						
							| 
									
										
										
										
											2002-04-05 04:09:04 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  |     ff_h263_decode_end, | 
					
						
							|  |  |  |     ff_h263_decode_frame, | 
					
						
							| 
									
										
										
										
											2002-07-14 18:37:35 +00:00
										 |  |  |     CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1, | 
					
						
							| 
									
										
										
										
											2002-04-05 04:09:04 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | AVCodec msmpeg4v3_decoder = { | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     "msmpeg4", | 
					
						
							|  |  |  |     CODEC_TYPE_VIDEO, | 
					
						
							| 
									
										
										
										
											2002-04-05 04:09:04 +00:00
										 |  |  |     CODEC_ID_MSMPEG4V3, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     sizeof(MpegEncContext), | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  |     ff_h263_decode_init, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  |     ff_h263_decode_end, | 
					
						
							|  |  |  |     ff_h263_decode_frame, | 
					
						
							| 
									
										
										
										
											2002-07-14 18:37:35 +00:00
										 |  |  |     CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-06 22:29:37 +00:00
										 |  |  | AVCodec wmv1_decoder = { | 
					
						
							|  |  |  |     "wmv1", | 
					
						
							|  |  |  |     CODEC_TYPE_VIDEO, | 
					
						
							|  |  |  |     CODEC_ID_WMV1, | 
					
						
							|  |  |  |     sizeof(MpegEncContext), | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  |     ff_h263_decode_init, | 
					
						
							| 
									
										
										
										
											2002-06-18 00:46:02 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  |     ff_h263_decode_end, | 
					
						
							|  |  |  |     ff_h263_decode_frame, | 
					
						
							| 
									
										
										
										
											2002-07-14 18:37:35 +00:00
										 |  |  |     CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1, | 
					
						
							| 
									
										
										
										
											2002-06-18 00:46:02 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | AVCodec h263i_decoder = { | 
					
						
							|  |  |  |     "h263i", | 
					
						
							|  |  |  |     CODEC_TYPE_VIDEO, | 
					
						
							|  |  |  |     CODEC_ID_H263I, | 
					
						
							|  |  |  |     sizeof(MpegEncContext), | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  |     ff_h263_decode_init, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2002-12-27 23:51:46 +00:00
										 |  |  |     ff_h263_decode_end, | 
					
						
							|  |  |  |     ff_h263_decode_frame, | 
					
						
							| 
									
										
										
										
											2002-07-14 18:37:35 +00:00
										 |  |  |     CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-09 23:10:59 +00:00
										 |  |  | AVCodec flv_decoder = { | 
					
						
							|  |  |  |     "flv", | 
					
						
							|  |  |  |     CODEC_TYPE_VIDEO, | 
					
						
							|  |  |  |     CODEC_ID_FLV1, | 
					
						
							|  |  |  |     sizeof(MpegEncContext), | 
					
						
							|  |  |  |     ff_h263_decode_init, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     ff_h263_decode_end, | 
					
						
							|  |  |  |     ff_h263_decode_frame, | 
					
						
							|  |  |  |     CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | 
					
						
							|  |  |  | }; |