| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2009-01-19 15:46:40 +00:00
										 |  |  |  * Copyright (c) 2003 The FFmpeg Project | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +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 | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +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. | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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 | 
					
						
							| 
									
										
										
										
											2007-07-05 10:40:25 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |  * How to use this decoder: | 
					
						
							|  |  |  |  * SVQ3 data is transported within Apple Quicktime files. Quicktime files | 
					
						
							| 
									
										
										
										
											2003-05-10 04:30:29 +00:00
										 |  |  |  * have stsd atoms to describe media trak properties. A stsd atom for a | 
					
						
							|  |  |  |  * video trak contains 1 or more ImageDescription atoms. These atoms begin | 
					
						
							|  |  |  |  * with the 4-byte length of the atom followed by the codec fourcc. Some | 
					
						
							|  |  |  |  * decoders need information in this atom to operate correctly. Such | 
					
						
							|  |  |  |  * is the case with SVQ3. In order to get the best use out of this decoder, | 
					
						
							|  |  |  |  * the calling app must make the SVQ3 ImageDescription atom available | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |  * via the AVCodecContext's extradata[_size] field: | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |  * AVCodecContext.extradata = pointer to ImageDescription, first characters | 
					
						
							| 
									
										
										
										
											2003-05-10 04:30:29 +00:00
										 |  |  |  * are expected to be 'S', 'V', 'Q', and '3', NOT the 4-byte atom length | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |  * AVCodecContext.extradata_size = size of ImageDescription atom memory | 
					
						
							|  |  |  |  * buffer (which will be the same as the ImageDescription atom size field | 
					
						
							| 
									
										
										
										
											2003-05-10 04:30:29 +00:00
										 |  |  |  * from the QT file, minus 4 bytes since the length is missing) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You will know you have these parameters passed correctly when the decoder | 
					
						
							|  |  |  |  * correctly decodes this file: | 
					
						
							| 
									
										
										
										
											2008-12-25 15:49:02 +00:00
										 |  |  |  *  http://samples.mplayerhq.hu/V-codecs/SVQ3/Vertical400kbit.sorenson3.mov
 | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-01-12 05:30:31 +00:00
										 |  |  | #include "internal.h"
 | 
					
						
							|  |  |  | #include "dsputil.h"
 | 
					
						
							|  |  |  | #include "avcodec.h"
 | 
					
						
							|  |  |  | #include "mpegvideo.h"
 | 
					
						
							|  |  |  | #include "h264.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "h264data.h" //FIXME FIXME FIXME
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-12 21:36:26 +00:00
										 |  |  | #include "h264_mvpred.h"
 | 
					
						
							| 
									
										
										
										
											2010-01-12 05:30:31 +00:00
										 |  |  | #include "golomb.h"
 | 
					
						
							|  |  |  | #include "rectangle.h"
 | 
					
						
							|  |  |  | #include "vdpau_internal.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_ZLIB
 | 
					
						
							| 
									
										
										
										
											2008-10-26 23:41:00 +00:00
										 |  |  | #include <zlib.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-28 23:11:59 +00:00
										 |  |  | #include "svq1.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-04-20 14:45:34 +00:00
										 |  |  |  * @file | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |  * svq3 decoder. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  | typedef struct { | 
					
						
							|  |  |  |     H264Context h; | 
					
						
							|  |  |  |     int halfpel_flag; | 
					
						
							|  |  |  |     int thirdpel_flag; | 
					
						
							|  |  |  |     int unknown_flag; | 
					
						
							|  |  |  |     int next_slice_index; | 
					
						
							|  |  |  |     uint32_t watermark_key; | 
					
						
							| 
									
										
										
										
											2011-05-05 15:17:51 +02:00
										 |  |  |     uint8_t *buf; | 
					
						
							|  |  |  |     int buf_size; | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  | } SVQ3Context; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | #define FULLPEL_MODE  1
 | 
					
						
							|  |  |  | #define HALFPEL_MODE  2
 | 
					
						
							| 
									
										
										
										
											2003-05-15 00:43:43 +00:00
										 |  |  | #define THIRDPEL_MODE 3
 | 
					
						
							| 
									
										
										
										
											2003-06-27 15:05:29 +00:00
										 |  |  | #define PREDICT_MODE  4
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-13 13:38:09 +00:00
										 |  |  | /* dual scan (from some older h264 draft)
 | 
					
						
							|  |  |  |  o-->o-->o   o | 
					
						
							|  |  |  |          |  /| | 
					
						
							|  |  |  |  o   o   o / o | 
					
						
							|  |  |  |  | / |   |/  | | 
					
						
							|  |  |  |  o   o   o   o | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |    / | 
					
						
							| 
									
										
										
										
											2003-05-13 13:38:09 +00:00
										 |  |  |  o-->o-->o-->o | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  | static const uint8_t svq3_scan[16] = { | 
					
						
							|  |  |  |     0+0*4, 1+0*4, 2+0*4, 2+1*4, | 
					
						
							|  |  |  |     2+2*4, 3+0*4, 3+1*4, 3+2*4, | 
					
						
							|  |  |  |     0+1*4, 0+2*4, 1+1*4, 1+2*4, | 
					
						
							|  |  |  |     0+3*4, 1+3*4, 2+3*4, 3+3*4, | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const uint8_t svq3_pred_0[25][2] = { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     { 0, 0 }, | 
					
						
							|  |  |  |     { 1, 0 }, { 0, 1 }, | 
					
						
							|  |  |  |     { 0, 2 }, { 1, 1 }, { 2, 0 }, | 
					
						
							|  |  |  |     { 3, 0 }, { 2, 1 }, { 1, 2 }, { 0, 3 }, | 
					
						
							|  |  |  |     { 0, 4 }, { 1, 3 }, { 2, 2 }, { 3, 1 }, { 4, 0 }, | 
					
						
							|  |  |  |     { 4, 1 }, { 3, 2 }, { 2, 3 }, { 1, 4 }, | 
					
						
							|  |  |  |     { 2, 4 }, { 3, 3 }, { 4, 2 }, | 
					
						
							|  |  |  |     { 4, 3 }, { 3, 4 }, | 
					
						
							|  |  |  |     { 4, 4 } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const int8_t svq3_pred_1[6][6][5] = { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     { { 2,-1,-1,-1,-1 }, { 2, 1,-1,-1,-1 }, { 1, 2,-1,-1,-1 }, | 
					
						
							|  |  |  |       { 2, 1,-1,-1,-1 }, { 1, 2,-1,-1,-1 }, { 1, 2,-1,-1,-1 } }, | 
					
						
							|  |  |  |     { { 0, 2,-1,-1,-1 }, { 0, 2, 1, 4, 3 }, { 0, 1, 2, 4, 3 }, | 
					
						
							|  |  |  |       { 0, 2, 1, 4, 3 }, { 2, 0, 1, 3, 4 }, { 0, 4, 2, 1, 3 } }, | 
					
						
							|  |  |  |     { { 2, 0,-1,-1,-1 }, { 2, 1, 0, 4, 3 }, { 1, 2, 4, 0, 3 }, | 
					
						
							|  |  |  |       { 2, 1, 0, 4, 3 }, { 2, 1, 4, 3, 0 }, { 1, 2, 4, 0, 3 } }, | 
					
						
							|  |  |  |     { { 2, 0,-1,-1,-1 }, { 2, 0, 1, 4, 3 }, { 1, 2, 0, 4, 3 }, | 
					
						
							|  |  |  |       { 2, 1, 0, 4, 3 }, { 2, 1, 3, 4, 0 }, { 2, 4, 1, 0, 3 } }, | 
					
						
							|  |  |  |     { { 0, 2,-1,-1,-1 }, { 0, 2, 1, 3, 4 }, { 1, 2, 3, 0, 4 }, | 
					
						
							|  |  |  |       { 2, 0, 1, 3, 4 }, { 2, 1, 3, 0, 4 }, { 2, 0, 4, 3, 1 } }, | 
					
						
							|  |  |  |     { { 0, 2,-1,-1,-1 }, { 0, 2, 4, 1, 3 }, { 1, 4, 2, 0, 3 }, | 
					
						
							|  |  |  |       { 4, 2, 0, 1, 3 }, { 2, 0, 1, 4, 3 }, { 4, 2, 1, 0, 3 } }, | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct { uint8_t run; uint8_t level; } svq3_dct_tables[2][16] = { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     { { 0, 0 }, { 0, 1 }, { 1, 1 }, { 2, 1 }, { 0, 2 }, { 3, 1 }, { 4, 1 }, { 5, 1 }, | 
					
						
							|  |  |  |       { 0, 3 }, { 1, 2 }, { 2, 2 }, { 6, 1 }, { 7, 1 }, { 8, 1 }, { 9, 1 }, { 0, 4 } }, | 
					
						
							|  |  |  |     { { 0, 0 }, { 0, 1 }, { 1, 1 }, { 0, 2 }, { 2, 1 }, { 0, 3 }, { 0, 4 }, { 0, 5 }, | 
					
						
							|  |  |  |       { 3, 1 }, { 4, 1 }, { 1, 2 }, { 1, 3 }, { 0, 6 }, { 0, 7 }, { 0, 8 }, { 0, 9 } } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const uint32_t svq3_dequant_coeff[32] = { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |      3881,  4351,  4890,  5481,  6154,  6914,  7761,  8718, | 
					
						
							|  |  |  |      9781, 10987, 12339, 13828, 15523, 17435, 19561, 21873, | 
					
						
							|  |  |  |     24552, 27656, 30847, 34870, 38807, 43747, 49103, 54683, | 
					
						
							|  |  |  |     61694, 68745, 77615, 89113,100253,109366,126635,141533 | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-15 00:41:18 +00:00
										 |  |  | void ff_svq3_luma_dc_dequant_idct_c(DCTELEM *output, DCTELEM *input, int qp){ | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     const int qmul = svq3_dequant_coeff[qp]; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | #define stride 16
 | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     int temp[16]; | 
					
						
							| 
									
										
										
										
											2011-01-15 00:41:18 +00:00
										 |  |  |     static const uint8_t x_offset[4]={0, 1*stride, 4*stride, 5*stride}; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-15 00:41:18 +00:00
										 |  |  |     for(i=0; i<4; i++){ | 
					
						
							|  |  |  |         const int z0 = 13*(input[4*i+0] +    input[4*i+2]); | 
					
						
							|  |  |  |         const int z1 = 13*(input[4*i+0] -    input[4*i+2]); | 
					
						
							|  |  |  |         const int z2 =  7* input[4*i+1] - 17*input[4*i+3]; | 
					
						
							|  |  |  |         const int z3 = 17* input[4*i+1] +  7*input[4*i+3]; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         temp[4*i+0] = z0+z3; | 
					
						
							|  |  |  |         temp[4*i+1] = z1+z2; | 
					
						
							|  |  |  |         temp[4*i+2] = z1-z2; | 
					
						
							|  |  |  |         temp[4*i+3] = z0-z3; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-15 00:41:18 +00:00
										 |  |  |     for(i=0; i<4; i++){ | 
					
						
							|  |  |  |         const int offset= x_offset[i]; | 
					
						
							|  |  |  |         const int z0= 13*(temp[4*0+i] +    temp[4*2+i]); | 
					
						
							|  |  |  |         const int z1= 13*(temp[4*0+i] -    temp[4*2+i]); | 
					
						
							|  |  |  |         const int z2=  7* temp[4*1+i] - 17*temp[4*3+i]; | 
					
						
							|  |  |  |         const int z3= 17* temp[4*1+i] +  7*temp[4*3+i]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         output[stride* 0+offset] = ((z0 + z3)*qmul + 0x80000) >> 20; | 
					
						
							|  |  |  |         output[stride* 2+offset] = ((z1 + z2)*qmul + 0x80000) >> 20; | 
					
						
							|  |  |  |         output[stride* 8+offset] = ((z1 - z2)*qmul + 0x80000) >> 20; | 
					
						
							|  |  |  |         output[stride*10+offset] = ((z0 - z3)*qmul + 0x80000) >> 20; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #undef stride
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-27 22:22:01 +00:00
										 |  |  | void ff_svq3_add_idct_c(uint8_t *dst, DCTELEM *block, int stride, int qp, | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                             int dc) | 
					
						
							| 
									
										
										
										
											2008-11-22 16:03:20 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     const int qmul = svq3_dequant_coeff[qp]; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (dc) { | 
					
						
							|  |  |  |         dc = 13*13*((dc == 1) ? 1538*block[0] : ((qmul*(block[0] >> 3)) / 2)); | 
					
						
							|  |  |  |         block[0] = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     for (i = 0; i < 4; i++) { | 
					
						
							|  |  |  |         const int z0 = 13*(block[0 + 4*i] +    block[2 + 4*i]); | 
					
						
							|  |  |  |         const int z1 = 13*(block[0 + 4*i] -    block[2 + 4*i]); | 
					
						
							|  |  |  |         const int z2 =  7* block[1 + 4*i] - 17*block[3 + 4*i]; | 
					
						
							|  |  |  |         const int z3 = 17* block[1 + 4*i] +  7*block[3 + 4*i]; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         block[0 + 4*i] = z0 + z3; | 
					
						
							|  |  |  |         block[1 + 4*i] = z1 + z2; | 
					
						
							|  |  |  |         block[2 + 4*i] = z1 - z2; | 
					
						
							|  |  |  |         block[3 + 4*i] = z0 - z3; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     for (i = 0; i < 4; i++) { | 
					
						
							|  |  |  |         const int z0 = 13*(block[i + 4*0] +    block[i + 4*2]); | 
					
						
							|  |  |  |         const int z1 = 13*(block[i + 4*0] -    block[i + 4*2]); | 
					
						
							|  |  |  |         const int z2 =  7* block[i + 4*1] - 17*block[i + 4*3]; | 
					
						
							|  |  |  |         const int z3 = 17* block[i + 4*1] +  7*block[i + 4*3]; | 
					
						
							|  |  |  |         const int rr = (dc + 0x80000); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-01 05:25:11 +01:00
										 |  |  |         dst[i + stride*0] = av_clip_uint8( dst[i + stride*0] + (((z0 + z3)*qmul + rr) >> 20) ); | 
					
						
							|  |  |  |         dst[i + stride*1] = av_clip_uint8( dst[i + stride*1] + (((z1 + z2)*qmul + rr) >> 20) ); | 
					
						
							|  |  |  |         dst[i + stride*2] = av_clip_uint8( dst[i + stride*2] + (((z1 - z2)*qmul + rr) >> 20) ); | 
					
						
							|  |  |  |         dst[i + stride*3] = av_clip_uint8( dst[i + stride*3] + (((z0 - z3)*qmul + rr) >> 20) ); | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:03:20 +00:00
										 |  |  | static inline int svq3_decode_block(GetBitContext *gb, DCTELEM *block, | 
					
						
							|  |  |  |                                     int index, const int type) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     static const uint8_t *const scan_patterns[4] = | 
					
						
							|  |  |  |     { luma_dc_zigzag_scan, zigzag_scan, svq3_scan, chroma_dc_scan }; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     int run, level, sign, vlc, limit; | 
					
						
							|  |  |  |     const int intra = (3 * type) >> 2; | 
					
						
							|  |  |  |     const uint8_t *const scan = scan_patterns[type]; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     for (limit = (16 >> intra); index < 16; index = limit, limit += 8) { | 
					
						
							|  |  |  |         for (; (vlc = svq3_get_ue_golomb(gb)) != 0; index++) { | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-17 21:53:21 +02:00
										 |  |  |           if (vlc < 0) | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |               return -1; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |           sign = (vlc & 0x1) - 1; | 
					
						
							|  |  |  |           vlc  = (vlc + 1) >> 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           if (type == 3) { | 
					
						
							|  |  |  |               if (vlc < 3) { | 
					
						
							|  |  |  |                   run   = 0; | 
					
						
							|  |  |  |                   level = vlc; | 
					
						
							|  |  |  |               } else if (vlc < 4) { | 
					
						
							|  |  |  |                   run   = 1; | 
					
						
							|  |  |  |                   level = 1; | 
					
						
							|  |  |  |               } else { | 
					
						
							|  |  |  |                   run   = (vlc & 0x3); | 
					
						
							|  |  |  |                   level = ((vlc + 9) >> 2) - run; | 
					
						
							|  |  |  |               } | 
					
						
							|  |  |  |           } else { | 
					
						
							| 
									
										
										
										
											2011-09-17 21:53:21 +02:00
										 |  |  |               if (vlc < 16U) { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                   run   = svq3_dct_tables[intra][vlc].run; | 
					
						
							|  |  |  |                   level = svq3_dct_tables[intra][vlc].level; | 
					
						
							|  |  |  |               } else if (intra) { | 
					
						
							|  |  |  |                   run   = (vlc & 0x7); | 
					
						
							|  |  |  |                   level = (vlc >> 3) + ((run == 0) ? 8 : ((run < 2) ? 2 : ((run < 5) ? 0 : -1))); | 
					
						
							|  |  |  |               } else { | 
					
						
							|  |  |  |                   run   = (vlc & 0xF); | 
					
						
							|  |  |  |                   level = (vlc >> 4) + ((run == 0) ? 4 : ((run < 3) ? 2 : ((run < 10) ? 1 : 0))); | 
					
						
							|  |  |  |               } | 
					
						
							|  |  |  |           } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |           if ((index += run) >= limit) | 
					
						
							|  |  |  |               return -1; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |           block[scan[index]] = (level ^ sign) - sign; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         if (type != 2) { | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:03:20 +00:00
										 |  |  | static inline void svq3_mc_dir_part(MpegEncContext *s, | 
					
						
							|  |  |  |                                     int x, int y, int width, int height, | 
					
						
							|  |  |  |                                     int mx, int my, int dxy, | 
					
						
							|  |  |  |                                     int thirdpel, int dir, int avg) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     const Picture *pic = (dir == 0) ? &s->last_picture : &s->next_picture; | 
					
						
							|  |  |  |     uint8_t *src, *dest; | 
					
						
							|  |  |  |     int i, emu = 0; | 
					
						
							|  |  |  |     int blocksize = 2 - (width>>3); //16->0, 8->1, 4->2
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     mx += x; | 
					
						
							|  |  |  |     my += y; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     if (mx < 0 || mx >= (s->h_edge_pos - width  - 1) || | 
					
						
							|  |  |  |         my < 0 || my >= (s->v_edge_pos - height - 1)) { | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         if ((s->flags & CODEC_FLAG_EMU_EDGE)) { | 
					
						
							|  |  |  |             emu = 1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         mx = av_clip (mx, -16, (s->h_edge_pos - width  + 15)); | 
					
						
							|  |  |  |         my = av_clip (my, -16, (s->v_edge_pos - height + 15)); | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     /* form component predictions */ | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |     dest = s->current_picture.f.data[0] + x + y*s->linesize; | 
					
						
							|  |  |  |     src  = pic->f.data[0] + mx + my*s->linesize; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (emu) { | 
					
						
							| 
									
										
										
										
											2011-01-26 22:35:56 -05:00
										 |  |  |         s->dsp.emulated_edge_mc(s->edge_emu_buffer, src, s->linesize, (width + 1), (height + 1), | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                             mx, my, s->h_edge_pos, s->v_edge_pos); | 
					
						
							| 
									
										
										
										
											2003-06-20 02:38:29 +00:00
										 |  |  |         src = s->edge_emu_buffer; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     if (thirdpel) | 
					
						
							|  |  |  |         (avg ? s->dsp.avg_tpel_pixels_tab : s->dsp.put_tpel_pixels_tab)[dxy](dest, src, s->linesize, width, height); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         (avg ? s->dsp.avg_pixels_tab : s->dsp.put_pixels_tab)[blocksize][dxy](dest, src, s->linesize, height); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!(s->flags & CODEC_FLAG_GRAY)) { | 
					
						
							|  |  |  |         mx     = (mx + (mx < (int) x)) >> 1; | 
					
						
							|  |  |  |         my     = (my + (my < (int) y)) >> 1; | 
					
						
							|  |  |  |         width  = (width  >> 1); | 
					
						
							|  |  |  |         height = (height >> 1); | 
					
						
							|  |  |  |         blocksize++; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for (i = 1; i < 3; i++) { | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |             dest = s->current_picture.f.data[i] + (x >> 1) + (y >> 1) * s->uvlinesize; | 
					
						
							|  |  |  |             src  = pic->f.data[i] + mx + my * s->uvlinesize; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if (emu) { | 
					
						
							| 
									
										
										
										
											2011-01-26 22:35:56 -05:00
										 |  |  |                 s->dsp.emulated_edge_mc(s->edge_emu_buffer, src, s->uvlinesize, (width + 1), (height + 1), | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                                     mx, my, (s->h_edge_pos >> 1), (s->v_edge_pos >> 1)); | 
					
						
							|  |  |  |                 src = s->edge_emu_buffer; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (thirdpel) | 
					
						
							|  |  |  |                 (avg ? s->dsp.avg_tpel_pixels_tab : s->dsp.put_tpel_pixels_tab)[dxy](dest, src, s->uvlinesize, width, height); | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 (avg ? s->dsp.avg_pixels_tab : s->dsp.put_pixels_tab)[blocksize][dxy](dest, src, s->uvlinesize, height); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:03:20 +00:00
										 |  |  | static inline int svq3_mc_dir(H264Context *h, int size, int mode, int dir, | 
					
						
							|  |  |  |                               int avg) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     int i, j, k, mx, my, dx, dy, x, y; | 
					
						
							|  |  |  |     MpegEncContext *const s = (MpegEncContext *) h; | 
					
						
							|  |  |  |     const int part_width  = ((size & 5) == 4) ? 4 : 16 >> (size & 1); | 
					
						
							|  |  |  |     const int part_height = 16 >> ((unsigned) (size + 1) / 3); | 
					
						
							|  |  |  |     const int extra_width = (mode == PREDICT_MODE) ? -16*6 : 0; | 
					
						
							|  |  |  |     const int h_edge_pos  = 6*(s->h_edge_pos - part_width ) - extra_width; | 
					
						
							|  |  |  |     const int v_edge_pos  = 6*(s->v_edge_pos - part_height) - extra_width; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < 16; i += part_height) { | 
					
						
							|  |  |  |         for (j = 0; j < 16; j += part_width) { | 
					
						
							|  |  |  |             const int b_xy = (4*s->mb_x + (j >> 2)) + (4*s->mb_y + (i >> 2))*h->b_stride; | 
					
						
							|  |  |  |             int dxy; | 
					
						
							|  |  |  |             x = 16*s->mb_x + j; | 
					
						
							|  |  |  |             y = 16*s->mb_y + i; | 
					
						
							|  |  |  |             k = ((j >> 2) & 1) + ((i >> 1) & 2) + ((j >> 1) & 4) + (i & 8); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (mode != PREDICT_MODE) { | 
					
						
							|  |  |  |                 pred_motion(h, k, (part_width >> 2), dir, 1, &mx, &my); | 
					
						
							|  |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |                 mx = s->next_picture.f.motion_val[0][b_xy][0] << 1; | 
					
						
							|  |  |  |                 my = s->next_picture.f.motion_val[0][b_xy][1] << 1; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 if (dir == 0) { | 
					
						
							|  |  |  |                     mx = ((mx * h->frame_num_offset) / h->prev_frame_num_offset + 1) >> 1; | 
					
						
							|  |  |  |                     my = ((my * h->frame_num_offset) / h->prev_frame_num_offset + 1) >> 1; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     mx = ((mx * (h->frame_num_offset - h->prev_frame_num_offset)) / h->prev_frame_num_offset + 1) >> 1; | 
					
						
							|  |  |  |                     my = ((my * (h->frame_num_offset - h->prev_frame_num_offset)) / h->prev_frame_num_offset + 1) >> 1; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* clip motion vector prediction to frame border */ | 
					
						
							|  |  |  |             mx = av_clip(mx, extra_width - 6*x, h_edge_pos - 6*x); | 
					
						
							|  |  |  |             my = av_clip(my, extra_width - 6*y, v_edge_pos - 6*y); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* get (optional) motion vector differential */ | 
					
						
							|  |  |  |             if (mode == PREDICT_MODE) { | 
					
						
							|  |  |  |                 dx = dy = 0; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 dy = svq3_get_se_golomb(&s->gb); | 
					
						
							|  |  |  |                 dx = svq3_get_se_golomb(&s->gb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 if (dx == INVALID_VLC || dy == INVALID_VLC) { | 
					
						
							|  |  |  |                     av_log(h->s.avctx, AV_LOG_ERROR, "invalid MV vlc\n"); | 
					
						
							|  |  |  |                     return -1; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* compute motion vector */ | 
					
						
							|  |  |  |             if (mode == THIRDPEL_MODE) { | 
					
						
							|  |  |  |                 int fx, fy; | 
					
						
							|  |  |  |                 mx  = ((mx + 1)>>1) + dx; | 
					
						
							|  |  |  |                 my  = ((my + 1)>>1) + dy; | 
					
						
							|  |  |  |                 fx  = ((unsigned)(mx + 0x3000))/3 - 0x1000; | 
					
						
							|  |  |  |                 fy  = ((unsigned)(my + 0x3000))/3 - 0x1000; | 
					
						
							|  |  |  |                 dxy = (mx - 3*fx) + 4*(my - 3*fy); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 svq3_mc_dir_part(s, x, y, part_width, part_height, fx, fy, dxy, 1, dir, avg); | 
					
						
							|  |  |  |                 mx += mx; | 
					
						
							|  |  |  |                 my += my; | 
					
						
							|  |  |  |             } else if (mode == HALFPEL_MODE || mode == PREDICT_MODE) { | 
					
						
							|  |  |  |                 mx  = ((unsigned)(mx + 1 + 0x3000))/3 + dx - 0x1000; | 
					
						
							|  |  |  |                 my  = ((unsigned)(my + 1 + 0x3000))/3 + dy - 0x1000; | 
					
						
							|  |  |  |                 dxy = (mx&1) + 2*(my&1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 svq3_mc_dir_part(s, x, y, part_width, part_height, mx>>1, my>>1, dxy, 0, dir, avg); | 
					
						
							|  |  |  |                 mx *= 3; | 
					
						
							|  |  |  |                 my *= 3; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 mx = ((unsigned)(mx + 3 + 0x6000))/6 + dx - 0x1000; | 
					
						
							|  |  |  |                 my = ((unsigned)(my + 3 + 0x6000))/6 + dy - 0x1000; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 svq3_mc_dir_part(s, x, y, part_width, part_height, mx, my, 0, 0, dir, avg); | 
					
						
							|  |  |  |                 mx *= 6; | 
					
						
							|  |  |  |                 my *= 6; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* update mv_cache */ | 
					
						
							|  |  |  |             if (mode != PREDICT_MODE) { | 
					
						
							|  |  |  |                 int32_t mv = pack16to32(mx,my); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 if (part_height == 8 && i < 8) { | 
					
						
							|  |  |  |                     *(int32_t *) h->mv_cache[dir][scan8[k] + 1*8] = mv; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     if (part_width == 8 && j < 8) { | 
					
						
							|  |  |  |                         *(int32_t *) h->mv_cache[dir][scan8[k] + 1 + 1*8] = mv; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 if (part_width == 8 && j < 8) { | 
					
						
							|  |  |  |                     *(int32_t *) h->mv_cache[dir][scan8[k] + 1] = mv; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 if (part_width == 4 || part_height == 4) { | 
					
						
							|  |  |  |                     *(int32_t *) h->mv_cache[dir][scan8[k]] = mv; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* write back motion vectors */ | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |             fill_rectangle(s->current_picture.f.motion_val[dir][b_xy], | 
					
						
							|  |  |  |                            part_width >> 2, part_height >> 2, h->b_stride, | 
					
						
							|  |  |  |                            pack16to32(mx, my), 4); | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-06-27 15:05:29 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2003-06-27 15:05:29 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  | static int svq3_decode_mb(SVQ3Context *svq3, unsigned int mb_type) | 
					
						
							| 
									
										
										
										
											2008-11-22 16:03:20 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |     H264Context *h = &svq3->h; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     int i, j, k, m, dir, mode; | 
					
						
							|  |  |  |     int cbp = 0; | 
					
						
							|  |  |  |     uint32_t vlc; | 
					
						
							|  |  |  |     int8_t *top, *left; | 
					
						
							|  |  |  |     MpegEncContext *const s = (MpegEncContext *) h; | 
					
						
							|  |  |  |     const int mb_xy = h->mb_xy; | 
					
						
							|  |  |  |     const int b_xy  = 4*s->mb_x + 4*s->mb_y*h->b_stride; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     h->top_samples_available      = (s->mb_y == 0) ? 0x33FF : 0xFFFF; | 
					
						
							|  |  |  |     h->left_samples_available     = (s->mb_x == 0) ? 0x5F5F : 0xFFFF; | 
					
						
							|  |  |  |     h->topright_samples_available = 0xFFFF; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (mb_type == 0) {           /* SKIP */ | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |         if (s->pict_type == AV_PICTURE_TYPE_P || s->next_picture.f.mb_type[mb_xy] == -1) { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             svq3_mc_dir_part(s, 16*s->mb_x, 16*s->mb_y, 16, 16, 0, 0, 0, 0, 0, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |             if (s->pict_type == AV_PICTURE_TYPE_B) { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 svq3_mc_dir_part(s, 16*s->mb_x, 16*s->mb_y, 16, 16, 0, 0, 0, 0, 1, 1); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             mb_type = MB_TYPE_SKIP; | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |             mb_type = FFMIN(s->next_picture.f.mb_type[mb_xy], 6); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             if (svq3_mc_dir(h, mb_type, PREDICT_MODE, 0, 0) < 0) | 
					
						
							|  |  |  |                 return -1; | 
					
						
							|  |  |  |             if (svq3_mc_dir(h, mb_type, PREDICT_MODE, 1, 1) < 0) | 
					
						
							|  |  |  |                 return -1; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             mb_type = MB_TYPE_16x16; | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     } else if (mb_type < 8) {     /* INTER */ | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |         if (svq3->thirdpel_flag && svq3->halfpel_flag == !get_bits1 (&s->gb)) { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             mode = THIRDPEL_MODE; | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |         } else if (svq3->halfpel_flag && svq3->thirdpel_flag == !get_bits1 (&s->gb)) { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             mode = HALFPEL_MODE; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             mode = FULLPEL_MODE; | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         /* fill caches */ | 
					
						
							|  |  |  |         /* note ref_cache should contain here:
 | 
					
						
							|  |  |  |             ???????? | 
					
						
							|  |  |  |             ???11111 | 
					
						
							|  |  |  |             N??11111 | 
					
						
							|  |  |  |             N??11111 | 
					
						
							|  |  |  |             N??11111 | 
					
						
							|  |  |  |         */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for (m = 0; m < 2; m++) { | 
					
						
							| 
									
										
										
										
											2010-02-25 18:41:48 +00:00
										 |  |  |             if (s->mb_x > 0 && h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - 1]+6] != -1) { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 for (i = 0; i < 4; i++) { | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |                     *(uint32_t *) h->mv_cache[m][scan8[0] - 1 + i*8] = *(uint32_t *) s->current_picture.f.motion_val[m][b_xy - 1 + i*h->b_stride]; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 for (i = 0; i < 4; i++) { | 
					
						
							|  |  |  |                     *(uint32_t *) h->mv_cache[m][scan8[0] - 1 + i*8] = 0; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (s->mb_y > 0) { | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |                 memcpy(h->mv_cache[m][scan8[0] - 1*8], s->current_picture.f.motion_val[m][b_xy - h->b_stride], 4*2*sizeof(int16_t)); | 
					
						
							| 
									
										
										
										
											2010-02-25 18:41:48 +00:00
										 |  |  |                 memset(&h->ref_cache[m][scan8[0] - 1*8], (h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride]] == -1) ? PART_NOT_AVAILABLE : 1, 4); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 if (s->mb_x < (s->mb_width - 1)) { | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |                     *(uint32_t *) h->mv_cache[m][scan8[0] + 4 - 1*8] = *(uint32_t *) s->current_picture.f.motion_val[m][b_xy - h->b_stride + 4]; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                     h->ref_cache[m][scan8[0] + 4 - 1*8] = | 
					
						
							| 
									
										
										
										
											2010-02-25 18:41:48 +00:00
										 |  |  |                         (h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride + 1]+6] == -1 || | 
					
						
							|  |  |  |                          h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride    ]  ] == -1) ? PART_NOT_AVAILABLE : 1; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 }else | 
					
						
							|  |  |  |                     h->ref_cache[m][scan8[0] + 4 - 1*8] = PART_NOT_AVAILABLE; | 
					
						
							|  |  |  |                 if (s->mb_x > 0) { | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |                     *(uint32_t *) h->mv_cache[m][scan8[0] - 1 - 1*8] = *(uint32_t *) s->current_picture.f.motion_val[m][b_xy - h->b_stride - 1]; | 
					
						
							| 
									
										
										
										
											2010-02-25 18:41:48 +00:00
										 |  |  |                     h->ref_cache[m][scan8[0] - 1 - 1*8] = (h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride - 1]+3] == -1) ? PART_NOT_AVAILABLE : 1; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 }else | 
					
						
							|  |  |  |                     h->ref_cache[m][scan8[0] - 1 - 1*8] = PART_NOT_AVAILABLE; | 
					
						
							|  |  |  |             }else | 
					
						
							|  |  |  |                 memset(&h->ref_cache[m][scan8[0] - 1*8 - 1], PART_NOT_AVAILABLE, 8); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |             if (s->pict_type != AV_PICTURE_TYPE_B) | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         /* decode motion vector(s) and form prediction(s) */ | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |         if (s->pict_type == AV_PICTURE_TYPE_P) { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             if (svq3_mc_dir(h, (mb_type - 1), mode, 0, 0) < 0) | 
					
						
							|  |  |  |                 return -1; | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |         } else {        /* AV_PICTURE_TYPE_B */ | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             if (mb_type != 2) { | 
					
						
							|  |  |  |                 if (svq3_mc_dir(h, 0, mode, 0, 0) < 0) | 
					
						
							|  |  |  |                     return -1; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 for (i = 0; i < 4; i++) { | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |                     memset(s->current_picture.f.motion_val[0][b_xy + i*h->b_stride], 0, 4*2*sizeof(int16_t)); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (mb_type != 1) { | 
					
						
							|  |  |  |                 if (svq3_mc_dir(h, 0, mode, 1, (mb_type == 3)) < 0) | 
					
						
							|  |  |  |                     return -1; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 for (i = 0; i < 4; i++) { | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |                     memset(s->current_picture.f.motion_val[1][b_xy + i*h->b_stride], 0, 4*2*sizeof(int16_t)); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         mb_type = MB_TYPE_16x16; | 
					
						
							|  |  |  |     } else if (mb_type == 8 || mb_type == 33) {   /* INTRA4x4 */ | 
					
						
							|  |  |  |         memset(h->intra4x4_pred_mode_cache, -1, 8*5*sizeof(int8_t)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (mb_type == 8) { | 
					
						
							|  |  |  |             if (s->mb_x > 0) { | 
					
						
							|  |  |  |                 for (i = 0; i < 4; i++) { | 
					
						
							| 
									
										
										
										
											2010-02-25 18:41:48 +00:00
										 |  |  |                     h->intra4x4_pred_mode_cache[scan8[0] - 1 + i*8] = h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - 1]+6-i]; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |                 if (h->intra4x4_pred_mode_cache[scan8[0] - 1] == -1) { | 
					
						
							|  |  |  |                     h->left_samples_available = 0x5F5F; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (s->mb_y > 0) { | 
					
						
							| 
									
										
										
										
											2010-02-25 18:41:48 +00:00
										 |  |  |                 h->intra4x4_pred_mode_cache[4+8*0] = h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride]+0]; | 
					
						
							|  |  |  |                 h->intra4x4_pred_mode_cache[5+8*0] = h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride]+1]; | 
					
						
							|  |  |  |                 h->intra4x4_pred_mode_cache[6+8*0] = h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride]+2]; | 
					
						
							|  |  |  |                 h->intra4x4_pred_mode_cache[7+8*0] = h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride]+3]; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 if (h->intra4x4_pred_mode_cache[4+8*0] == -1) { | 
					
						
							|  |  |  |                     h->top_samples_available = 0x33FF; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* decode prediction codes for luma blocks */ | 
					
						
							|  |  |  |             for (i = 0; i < 16; i+=2) { | 
					
						
							|  |  |  |                 vlc = svq3_get_ue_golomb(&s->gb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-17 21:53:21 +02:00
										 |  |  |                 if (vlc >= 25U){ | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                     av_log(h->s.avctx, AV_LOG_ERROR, "luma prediction:%d\n", vlc); | 
					
						
							|  |  |  |                     return -1; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 left    = &h->intra4x4_pred_mode_cache[scan8[i] - 1]; | 
					
						
							|  |  |  |                 top     = &h->intra4x4_pred_mode_cache[scan8[i] - 8]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 left[1] = svq3_pred_1[top[0] + 1][left[0] + 1][svq3_pred_0[vlc][0]]; | 
					
						
							|  |  |  |                 left[2] = svq3_pred_1[top[1] + 1][left[1] + 1][svq3_pred_0[vlc][1]]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 if (left[1] == -1 || left[2] == -1){ | 
					
						
							|  |  |  |                     av_log(h->s.avctx, AV_LOG_ERROR, "weird prediction\n"); | 
					
						
							|  |  |  |                     return -1; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else {    /* mb_type == 33, DC_128_PRED block type */ | 
					
						
							|  |  |  |             for (i = 0; i < 4; i++) { | 
					
						
							|  |  |  |                 memset(&h->intra4x4_pred_mode_cache[scan8[0] + 8*i], DC_PRED, 4); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2005-01-23 17:59:01 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-29 13:27:36 -07:00
										 |  |  |         write_back_intra_pred_mode(h); | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         if (mb_type == 8) { | 
					
						
							| 
									
										
										
										
											2010-01-12 21:17:26 +00:00
										 |  |  |             ff_h264_check_intra4x4_pred_mode(h); | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             h->top_samples_available  = (s->mb_y == 0) ? 0x33FF : 0xFFFF; | 
					
						
							|  |  |  |             h->left_samples_available = (s->mb_x == 0) ? 0x5F5F : 0xFFFF; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             for (i = 0; i < 4; i++) { | 
					
						
							|  |  |  |                 memset(&h->intra4x4_pred_mode_cache[scan8[0] + 8*i], DC_128_PRED, 4); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             h->top_samples_available  = 0x33FF; | 
					
						
							|  |  |  |             h->left_samples_available = 0x5F5F; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         mb_type = MB_TYPE_INTRA4x4; | 
					
						
							|  |  |  |     } else {                      /* INTRA16x16 */ | 
					
						
							|  |  |  |         dir = i_mb_type_info[mb_type - 8].pred_mode; | 
					
						
							|  |  |  |         dir = (dir >> 1) ^ 3*(dir & 1) ^ 1; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 22:57:01 -08:00
										 |  |  |         if ((h->intra16x16_pred_mode = ff_h264_check_intra_pred_mode(h, dir, 0)) == -1){ | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             av_log(h->s.avctx, AV_LOG_ERROR, "check_intra_pred_mode = -1\n"); | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         cbp = i_mb_type_info[mb_type - 8].cbp; | 
					
						
							|  |  |  |         mb_type = MB_TYPE_INTRA16x16; | 
					
						
							| 
									
										
										
										
											2005-01-23 17:59:01 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |     if (!IS_INTER(mb_type) && s->pict_type != AV_PICTURE_TYPE_I) { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         for (i = 0; i < 4; i++) { | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |             memset(s->current_picture.f.motion_val[0][b_xy + i*h->b_stride], 0, 4*2*sizeof(int16_t)); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |         if (s->pict_type == AV_PICTURE_TYPE_B) { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             for (i = 0; i < 4; i++) { | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |                 memset(s->current_picture.f.motion_val[1][b_xy + i*h->b_stride], 0, 4*2*sizeof(int16_t)); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     if (!IS_INTRA4x4(mb_type)) { | 
					
						
							| 
									
										
										
										
											2010-02-25 18:41:48 +00:00
										 |  |  |         memset(h->intra4x4_pred_mode+h->mb2br_xy[mb_xy], DC_PRED, 8); | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |     if (!IS_SKIP(mb_type) || s->pict_type == AV_PICTURE_TYPE_B) { | 
					
						
							| 
									
										
										
										
											2011-06-13 10:21:46 -07:00
										 |  |  |         memset(h->non_zero_count_cache + 8, 0, 14*8*sizeof(uint8_t)); | 
					
						
							|  |  |  |         s->dsp.clear_blocks(h->mb+  0); | 
					
						
							|  |  |  |         s->dsp.clear_blocks(h->mb+384); | 
					
						
							| 
									
										
										
										
											2005-01-23 17:59:01 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-06-27 15:05:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |     if (!IS_INTRA16x16(mb_type) && (!IS_SKIP(mb_type) || s->pict_type == AV_PICTURE_TYPE_B)) { | 
					
						
							| 
									
										
										
										
											2011-09-17 21:53:21 +02:00
										 |  |  |         if ((vlc = svq3_get_ue_golomb(&s->gb)) >= 48U){ | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             av_log(h->s.avctx, AV_LOG_ERROR, "cbp_vlc=%d\n", vlc); | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         cbp = IS_INTRA(mb_type) ? golomb_to_intra4x4_cbp[vlc] : golomb_to_inter_cbp[vlc]; | 
					
						
							| 
									
										
										
										
											2005-01-23 17:59:01 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |     if (IS_INTRA16x16(mb_type) || (s->pict_type != AV_PICTURE_TYPE_I && s->adaptive_quant && cbp)) { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         s->qscale += svq3_get_se_golomb(&s->gb); | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-17 21:53:21 +02:00
										 |  |  |         if (s->qscale > 31U){ | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             av_log(h->s.avctx, AV_LOG_ERROR, "qscale:%d\n", s->qscale); | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     if (IS_INTRA16x16(mb_type)) { | 
					
						
							| 
									
										
										
										
											2011-06-13 10:21:46 -07:00
										 |  |  |         AV_ZERO128(h->mb_luma_dc[0]+0); | 
					
						
							|  |  |  |         AV_ZERO128(h->mb_luma_dc[0]+8); | 
					
						
							| 
									
										
										
										
											2012-03-30 21:51:46 +02:00
										 |  |  |         if (svq3_decode_block(&s->gb, *h->mb_luma_dc, 0, 1)){ | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding intra luma dc\n"); | 
					
						
							|  |  |  |             return -1; | 
					
						
							| 
									
										
										
										
											2005-01-23 17:59:01 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     if (cbp) { | 
					
						
							|  |  |  |         const int index = IS_INTRA16x16(mb_type) ? 1 : 0; | 
					
						
							|  |  |  |         const int type = ((s->qscale < 24 && IS_INTRA4x4(mb_type)) ? 2 : 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for (i = 0; i < 4; i++) { | 
					
						
							|  |  |  |             if ((cbp & (1 << i))) { | 
					
						
							|  |  |  |                 for (j = 0; j < 4; j++) { | 
					
						
							|  |  |  |                     k = index ? ((j&1) + 2*(i&1) + 2*(j&2) + 4*(i&2)) : (4*i + j); | 
					
						
							|  |  |  |                     h->non_zero_count_cache[ scan8[k] ] = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     if (svq3_decode_block(&s->gb, &h->mb[16*k], index, type)){ | 
					
						
							|  |  |  |                         av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding block\n"); | 
					
						
							|  |  |  |                         return -1; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         if ((cbp & 0x30)) { | 
					
						
							| 
									
										
										
										
											2011-06-13 10:21:46 -07:00
										 |  |  |             for (i = 1; i < 3; ++i) { | 
					
						
							|  |  |  |               if (svq3_decode_block(&s->gb, &h->mb[16*16*i], 0, 3)){ | 
					
						
							| 
									
										
										
										
											2011-01-20 17:24:19 -05:00
										 |  |  |                 av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding chroma dc block\n"); | 
					
						
							|  |  |  |                 return -1; | 
					
						
							|  |  |  |               } | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if ((cbp & 0x20)) { | 
					
						
							| 
									
										
										
										
											2011-06-13 10:21:46 -07:00
										 |  |  |                 for (i = 1; i < 3; i++) { | 
					
						
							|  |  |  |                     for (j = 0; j < 4; j++) { | 
					
						
							|  |  |  |                         k = 16*i + j; | 
					
						
							|  |  |  |                         h->non_zero_count_cache[ scan8[k] ] = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         if (svq3_decode_block(&s->gb, &h->mb[16*k], 1, 1)){ | 
					
						
							|  |  |  |                             av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding chroma ac block\n"); | 
					
						
							|  |  |  |                             return -1; | 
					
						
							|  |  |  |                         } | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-18 11:01:38 +00:00
										 |  |  |     h->cbp= cbp; | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |     s->current_picture.f.mb_type[mb_xy] = mb_type; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     if (IS_INTRA(mb_type)) { | 
					
						
							| 
									
										
										
										
											2012-02-09 22:57:01 -08:00
										 |  |  |         h->chroma_pred_mode = ff_h264_check_intra_pred_mode(h, DC_PRED8x8, 1); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  | static int svq3_decode_slice_header(AVCodecContext *avctx) | 
					
						
							| 
									
										
										
										
											2008-11-22 16:03:20 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |     SVQ3Context *svq3 = avctx->priv_data; | 
					
						
							|  |  |  |     H264Context *h = &svq3->h; | 
					
						
							|  |  |  |     MpegEncContext *s = &h->s; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     const int mb_xy = h->mb_xy; | 
					
						
							|  |  |  |     int i, header; | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     header = get_bits(&s->gb, 8); | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     if (((header & 0x9F) != 1 && (header & 0x9F) != 2) || (header & 0x60) == 0) { | 
					
						
							|  |  |  |         /* TODO: what? */ | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |         av_log(avctx, AV_LOG_ERROR, "unsupported slice header (%02X)\n", header); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         int length = (header >> 5) & 3; | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |         svq3->next_slice_index = get_bits_count(&s->gb) + 8*show_bits(&s->gb, 8*length) + 8*length; | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |         if (svq3->next_slice_index > s->gb.size_in_bits) { | 
					
						
							|  |  |  |             av_log(avctx, AV_LOG_ERROR, "slice after bitstream end\n"); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             return -1; | 
					
						
							| 
									
										
										
										
											2004-01-22 19:48:28 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |         s->gb.size_in_bits = svq3->next_slice_index - 8*(length - 1); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         skip_bits(&s->gb, 8); | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |         if (svq3->watermark_key) { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             uint32_t header = AV_RL32(&s->gb.buffer[(get_bits_count(&s->gb)>>3)+1]); | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |             AV_WL32(&s->gb.buffer[(get_bits_count(&s->gb)>>3)+1], header ^ svq3->watermark_key); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         if (length > 0) { | 
					
						
							|  |  |  |             memcpy((uint8_t *) &s->gb.buffer[get_bits_count(&s->gb) >> 3], | 
					
						
							|  |  |  |                    &s->gb.buffer[s->gb.size_in_bits >> 3], (length - 1)); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-03-01 12:11:07 +00:00
										 |  |  |         skip_bits_long(&s->gb, 0); | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-17 21:53:21 +02:00
										 |  |  |     if ((i = svq3_get_ue_golomb(&s->gb)) >= 3U){ | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         av_log(h->s.avctx, AV_LOG_ERROR, "illegal slice type %d \n", i); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     h->slice_type = golomb_to_pict_type[i]; | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     if ((header & 0x9F) == 2) { | 
					
						
							|  |  |  |         i = (s->mb_num < 64) ? 6 : (1 + av_log2 (s->mb_num - 1)); | 
					
						
							|  |  |  |         s->mb_skip_run = get_bits(&s->gb, i) - (s->mb_x + (s->mb_y * s->mb_width)); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         skip_bits1(&s->gb); | 
					
						
							|  |  |  |         s->mb_skip_run = 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     h->slice_num = get_bits(&s->gb, 8); | 
					
						
							|  |  |  |     s->qscale = get_bits(&s->gb, 5); | 
					
						
							|  |  |  |     s->adaptive_quant = get_bits1(&s->gb); | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     /* unknown fields */ | 
					
						
							|  |  |  |     skip_bits1(&s->gb); | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |     if (svq3->unknown_flag) { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         skip_bits1(&s->gb); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     skip_bits1(&s->gb); | 
					
						
							|  |  |  |     skip_bits(&s->gb, 2); | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     while (get_bits1(&s->gb)) { | 
					
						
							|  |  |  |         skip_bits(&s->gb, 8); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     /* reset intra predictors and invalidate motion vector references */ | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  |     if (s->mb_x > 0) { | 
					
						
							| 
									
										
										
										
											2010-02-25 18:41:48 +00:00
										 |  |  |         memset(h->intra4x4_pred_mode+h->mb2br_xy[mb_xy - 1      ]+3, -1, 4*sizeof(int8_t)); | 
					
						
							|  |  |  |         memset(h->intra4x4_pred_mode+h->mb2br_xy[mb_xy - s->mb_x]  , -1, 8*sizeof(int8_t)*s->mb_x); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (s->mb_y > 0) { | 
					
						
							| 
									
										
										
										
											2010-02-25 18:41:48 +00:00
										 |  |  |         memset(h->intra4x4_pred_mode+h->mb2br_xy[mb_xy - s->mb_stride], -1, 8*sizeof(int8_t)*(s->mb_width - s->mb_x)); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (s->mb_x > 0) { | 
					
						
							| 
									
										
										
										
											2010-02-25 18:41:48 +00:00
										 |  |  |             h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride - 1]+3] = -1; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-22 13:48:55 +00:00
										 |  |  | static av_cold int svq3_decode_init(AVCodecContext *avctx) | 
					
						
							| 
									
										
										
										
											2008-11-22 16:03:20 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |     SVQ3Context *svq3 = avctx->priv_data; | 
					
						
							|  |  |  |     H264Context *h = &svq3->h; | 
					
						
							|  |  |  |     MpegEncContext *s = &h->s; | 
					
						
							| 
									
										
										
										
											2008-11-24 18:49:50 +00:00
										 |  |  |     int m; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     unsigned char *extradata; | 
					
						
							| 
									
										
										
										
											2012-02-09 20:21:47 -08:00
										 |  |  |     unsigned char *extradata_end; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     unsigned int size; | 
					
						
							| 
									
										
										
										
											2012-02-09 20:21:47 -08:00
										 |  |  |     int marker_found = 0; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-12 05:30:31 +00:00
										 |  |  |     if (ff_h264_decode_init(avctx) < 0) | 
					
						
							| 
									
										
										
										
											2008-11-24 18:49:50 +00:00
										 |  |  |         return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     s->flags  = avctx->flags; | 
					
						
							|  |  |  |     s->flags2 = avctx->flags2; | 
					
						
							|  |  |  |     s->unrestricted_mv = 1; | 
					
						
							| 
									
										
										
										
											2008-12-17 03:41:48 +00:00
										 |  |  |     h->is_complex=1; | 
					
						
							| 
									
										
										
										
											2012-03-27 15:16:37 +02:00
										 |  |  |     h->sps.chroma_format_idc = 1; | 
					
						
							| 
									
										
										
										
											2009-12-12 17:10:05 +00:00
										 |  |  |     avctx->pix_fmt = avctx->codec->pix_fmts[0]; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!s->context_initialized) { | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |         h->chroma_qp[0] = h->chroma_qp[1] = 4; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |         svq3->halfpel_flag  = 1; | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |         svq3->thirdpel_flag = 1; | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |         svq3->unknown_flag  = 0; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* prowl for the "SEQH" marker in the extradata */ | 
					
						
							|  |  |  |         extradata = (unsigned char *)avctx->extradata; | 
					
						
							| 
									
										
										
										
											2012-02-09 20:21:47 -08:00
										 |  |  |         extradata_end = avctx->extradata + avctx->extradata_size; | 
					
						
							|  |  |  |         if (extradata) { | 
					
						
							|  |  |  |             for (m = 0; m + 8 < avctx->extradata_size; m++) { | 
					
						
							|  |  |  |                 if (!memcmp(extradata, "SEQH", 4)) { | 
					
						
							|  |  |  |                     marker_found = 1; | 
					
						
							|  |  |  |                     break; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 extradata++; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         /* if a match was found, parse the extra data */ | 
					
						
							| 
									
										
										
										
											2012-02-09 20:21:47 -08:00
										 |  |  |         if (marker_found) { | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             GetBitContext gb; | 
					
						
							| 
									
										
										
										
											2009-08-04 21:55:47 +00:00
										 |  |  |             int frame_size_code; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             size = AV_RB32(&extradata[4]); | 
					
						
							| 
									
										
										
										
											2012-02-09 20:21:47 -08:00
										 |  |  |             if (size > extradata_end - extradata - 8) | 
					
						
							|  |  |  |                 return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             init_get_bits(&gb, extradata + 8, size*8); | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             /* 'frame size code' and optional 'width, height' */ | 
					
						
							| 
									
										
										
										
											2009-08-04 21:55:47 +00:00
										 |  |  |             frame_size_code = get_bits(&gb, 3); | 
					
						
							|  |  |  |             switch (frame_size_code) { | 
					
						
							|  |  |  |                 case 0: avctx->width = 160; avctx->height = 120; break; | 
					
						
							|  |  |  |                 case 1: avctx->width = 128; avctx->height =  96; break; | 
					
						
							|  |  |  |                 case 2: avctx->width = 176; avctx->height = 144; break; | 
					
						
							|  |  |  |                 case 3: avctx->width = 352; avctx->height = 288; break; | 
					
						
							|  |  |  |                 case 4: avctx->width = 704; avctx->height = 576; break; | 
					
						
							|  |  |  |                 case 5: avctx->width = 240; avctx->height = 180; break; | 
					
						
							|  |  |  |                 case 6: avctx->width = 320; avctx->height = 240; break; | 
					
						
							|  |  |  |                 case 7: | 
					
						
							|  |  |  |                     avctx->width  = get_bits(&gb, 12); | 
					
						
							|  |  |  |                     avctx->height = get_bits(&gb, 12); | 
					
						
							|  |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |             svq3->halfpel_flag  = get_bits1(&gb); | 
					
						
							|  |  |  |             svq3->thirdpel_flag = get_bits1(&gb); | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             /* unknown fields */ | 
					
						
							|  |  |  |             skip_bits1(&gb); | 
					
						
							|  |  |  |             skip_bits1(&gb); | 
					
						
							|  |  |  |             skip_bits1(&gb); | 
					
						
							|  |  |  |             skip_bits1(&gb); | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             s->low_delay = get_bits1(&gb); | 
					
						
							| 
									
										
										
										
											2008-10-26 23:34:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             /* unknown field */ | 
					
						
							|  |  |  |             skip_bits1(&gb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             while (get_bits1(&gb)) { | 
					
						
							|  |  |  |                 skip_bits(&gb, 8); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |             svq3->unknown_flag = get_bits1(&gb); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             avctx->has_b_frames = !s->low_delay; | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |             if (svq3->unknown_flag) { | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_ZLIB
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 unsigned watermark_width  = svq3_get_ue_golomb(&gb); | 
					
						
							|  |  |  |                 unsigned watermark_height = svq3_get_ue_golomb(&gb); | 
					
						
							|  |  |  |                 int u1 = svq3_get_ue_golomb(&gb); | 
					
						
							|  |  |  |                 int u2 = get_bits(&gb, 8); | 
					
						
							|  |  |  |                 int u3 = get_bits(&gb, 2); | 
					
						
							|  |  |  |                 int u4 = svq3_get_ue_golomb(&gb); | 
					
						
							| 
									
										
										
										
											2010-06-15 22:38:16 +00:00
										 |  |  |                 unsigned long buf_len = watermark_width*watermark_height*4; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 int offset = (get_bits_count(&gb)+7)>>3; | 
					
						
							|  |  |  |                 uint8_t *buf; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-16 18:26:49 +02:00
										 |  |  |                 if (watermark_height<=0 || (uint64_t)watermark_width*4 > UINT_MAX/watermark_height) | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                     return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 buf = av_malloc(buf_len); | 
					
						
							|  |  |  |                 av_log(avctx, AV_LOG_DEBUG, "watermark size: %dx%d\n", watermark_width, watermark_height); | 
					
						
							|  |  |  |                 av_log(avctx, AV_LOG_DEBUG, "u1: %x u2: %x u3: %x compressed data size: %d offset: %d\n", u1, u2, u3, u4, offset); | 
					
						
							| 
									
										
										
										
											2010-06-15 22:38:16 +00:00
										 |  |  |                 if (uncompress(buf, &buf_len, extradata + 8 + offset, size - offset) != Z_OK) { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                     av_log(avctx, AV_LOG_ERROR, "could not uncompress watermark logo\n"); | 
					
						
							|  |  |  |                     av_free(buf); | 
					
						
							|  |  |  |                     return -1; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |                 svq3->watermark_key = ff_svq1_packet_checksum(buf, buf_len, 0); | 
					
						
							|  |  |  |                 svq3->watermark_key = svq3->watermark_key << 16 | svq3->watermark_key; | 
					
						
							|  |  |  |                 av_log(avctx, AV_LOG_DEBUG, "watermark key %#x\n", svq3->watermark_key); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 av_free(buf); | 
					
						
							| 
									
										
										
										
											2008-10-26 23:34:44 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 av_log(avctx, AV_LOG_ERROR, "this svq3 file contains watermark which need zlib support compiled in\n"); | 
					
						
							|  |  |  |                 return -1; | 
					
						
							| 
									
										
										
										
											2008-10-26 23:34:44 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-05-13 10:24:31 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |         s->width  = avctx->width; | 
					
						
							|  |  |  |         s->height = avctx->height; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-15 14:10:33 +02:00
										 |  |  |         if (ff_MPV_common_init(s) < 0) | 
					
						
							| 
									
										
										
										
											2011-05-13 10:24:31 +03:00
										 |  |  |             return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         h->b_stride = 4*s->mb_width; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-12 12:05:46 -04:00
										 |  |  |         if (ff_h264_alloc_tables(h) < 0) { | 
					
						
							|  |  |  |             av_log(avctx, AV_LOG_ERROR, "svq3 memory allocation failed\n"); | 
					
						
							|  |  |  |             return AVERROR(ENOMEM); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-24 18:49:50 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int svq3_decode_frame(AVCodecContext *avctx, | 
					
						
							|  |  |  |                              void *data, int *data_size, | 
					
						
							| 
									
										
										
										
											2009-04-07 15:59:50 +00:00
										 |  |  |                              AVPacket *avpkt) | 
					
						
							| 
									
										
										
										
											2008-11-24 18:49:50 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |     SVQ3Context *svq3 = avctx->priv_data; | 
					
						
							|  |  |  |     H264Context *h = &svq3->h; | 
					
						
							|  |  |  |     MpegEncContext *s = &h->s; | 
					
						
							| 
									
										
										
										
											2009-04-07 15:59:50 +00:00
										 |  |  |     int buf_size = avpkt->size; | 
					
						
							| 
									
										
										
										
											2011-05-05 14:40:26 +02:00
										 |  |  |     int m, mb_type, left; | 
					
						
							| 
									
										
										
										
											2011-05-05 15:17:51 +02:00
										 |  |  |     uint8_t *buf; | 
					
						
							| 
									
										
										
										
											2008-11-24 18:49:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     /* special case for last picture */ | 
					
						
							|  |  |  |     if (buf_size == 0) { | 
					
						
							|  |  |  |         if (s->next_picture_ptr && !s->low_delay) { | 
					
						
							| 
									
										
										
										
											2012-02-27 22:08:41 +01:00
										 |  |  |             *(AVFrame *) data   = s->next_picture.f; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             s->next_picture_ptr = NULL; | 
					
						
							|  |  |  |             *data_size = sizeof(AVFrame); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     s->mb_x = s->mb_y = h->mb_xy = 0; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 15:17:51 +02:00
										 |  |  |     if (svq3->watermark_key) { | 
					
						
							| 
									
										
										
										
											2011-05-07 09:58:38 +02:00
										 |  |  |         av_fast_malloc(&svq3->buf, &svq3->buf_size, | 
					
						
							|  |  |  |                        buf_size+FF_INPUT_BUFFER_PADDING_SIZE); | 
					
						
							| 
									
										
										
										
											2011-05-05 15:17:51 +02:00
										 |  |  |         if (!svq3->buf) | 
					
						
							|  |  |  |             return AVERROR(ENOMEM); | 
					
						
							|  |  |  |         memcpy(svq3->buf, avpkt->data, buf_size); | 
					
						
							|  |  |  |         buf = svq3->buf; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         buf = avpkt->data; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     init_get_bits(&s->gb, buf, 8*buf_size); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |     if (svq3_decode_slice_header(avctx)) | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     s->pict_type = h->slice_type; | 
					
						
							|  |  |  |     s->picture_number = h->slice_num; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     if (avctx->debug&FF_DEBUG_PICT_INFO){ | 
					
						
							|  |  |  |         av_log(h->s.avctx, AV_LOG_DEBUG, "%c hpel:%d, tpel:%d aqp:%d qp:%d, slice_num:%02X\n", | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |                av_get_picture_type_char(s->pict_type), svq3->halfpel_flag, svq3->thirdpel_flag, | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                s->adaptive_quant, s->qscale, h->slice_num); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-02 11:56:21 +02:00
										 |  |  |     /* for skipping the frame */ | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |     s->current_picture.f.pict_type = s->pict_type; | 
					
						
							|  |  |  |     s->current_picture.f.key_frame = (s->pict_type == AV_PICTURE_TYPE_I); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Skip B-frames if we do not have reference frames. */ | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |     if (s->last_picture_ptr == NULL && s->pict_type == AV_PICTURE_TYPE_B) | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |     if (  (avctx->skip_frame >= AVDISCARD_NONREF && s->pict_type == AV_PICTURE_TYPE_B) | 
					
						
							|  |  |  |         ||(avctx->skip_frame >= AVDISCARD_NONKEY && s->pict_type != AV_PICTURE_TYPE_I) | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         || avctx->skip_frame >= AVDISCARD_ALL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s->next_p_frame_damaged) { | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |         if (s->pict_type == AV_PICTURE_TYPE_B) | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             return 0; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             s->next_p_frame_damaged = 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-12 05:30:31 +00:00
										 |  |  |     if (ff_h264_frame_start(h) < 0) | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |     if (s->pict_type == AV_PICTURE_TYPE_B) { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         h->frame_num_offset = (h->slice_num - h->prev_frame_num); | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         if (h->frame_num_offset < 0) { | 
					
						
							|  |  |  |             h->frame_num_offset += 256; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (h->frame_num_offset == 0 || h->frame_num_offset >= h->prev_frame_num_offset) { | 
					
						
							|  |  |  |             av_log(h->s.avctx, AV_LOG_ERROR, "error in B-frame picture id\n"); | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         h->prev_frame_num = h->frame_num; | 
					
						
							|  |  |  |         h->frame_num = h->slice_num; | 
					
						
							|  |  |  |         h->prev_frame_num_offset = (h->frame_num - h->prev_frame_num); | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         if (h->prev_frame_num_offset < 0) { | 
					
						
							|  |  |  |             h->prev_frame_num_offset += 256; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     for (m = 0; m < 2; m++){ | 
					
						
							|  |  |  |         int i; | 
					
						
							|  |  |  |         for (i = 0; i < 4; i++){ | 
					
						
							|  |  |  |             int j; | 
					
						
							|  |  |  |             for (j = -1; j < 4; j++) | 
					
						
							|  |  |  |                 h->ref_cache[m][scan8[0] + 8*i + j]= 1; | 
					
						
							|  |  |  |             if (i < 3) | 
					
						
							|  |  |  |                 h->ref_cache[m][scan8[0] + 8*i + j]= PART_NOT_AVAILABLE; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     for (s->mb_y = 0; s->mb_y < s->mb_height; s->mb_y++) { | 
					
						
							|  |  |  |         for (s->mb_x = 0; s->mb_x < s->mb_width; s->mb_x++) { | 
					
						
							|  |  |  |             h->mb_xy = s->mb_x + s->mb_y*s->mb_stride; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             if ( (get_bits_count(&s->gb) + 7) >= s->gb.size_in_bits && | 
					
						
							|  |  |  |                 ((get_bits_count(&s->gb) & 7) == 0 || show_bits(&s->gb, (-get_bits_count(&s->gb) & 7)) == 0)) { | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |                 skip_bits(&s->gb, svq3->next_slice_index - get_bits_count(&s->gb)); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 s->gb.size_in_bits = 8*buf_size; | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |                 if (svq3_decode_slice_header(avctx)) | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                     return -1; | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 /* TODO: support s->mb_skip_run */ | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             mb_type = svq3_get_ue_golomb(&s->gb); | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |             if (s->pict_type == AV_PICTURE_TYPE_I) { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 mb_type += 8; | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |             } else if (s->pict_type == AV_PICTURE_TYPE_B && mb_type >= 4) { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 mb_type += 4; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-05-04 18:45:36 -07:00
										 |  |  |             if ((unsigned)mb_type > 33 || svq3_decode_mb(svq3, mb_type)) { | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |                 av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding MB %d %d\n", s->mb_x, s->mb_y); | 
					
						
							|  |  |  |                 return -1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             if (mb_type != 0) { | 
					
						
							| 
									
										
										
										
											2010-01-12 05:30:31 +00:00
										 |  |  |                 ff_h264_hl_decode_mb (h); | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |             if (s->pict_type != AV_PICTURE_TYPE_B && !s->low_delay) { | 
					
						
							| 
									
										
										
										
											2011-07-06 20:08:30 +02:00
										 |  |  |                 s->current_picture.f.mb_type[s->mb_x + s->mb_y * s->mb_stride] = | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |                     (s->pict_type == AV_PICTURE_TYPE_P && mb_type < 8) ? (mb_type - 1) : -1; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-06-27 15:05:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |         ff_draw_horiz_band(s, 16*s->mb_y, 16); | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-05-16 10:14:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 14:40:26 +02:00
										 |  |  |     left = buf_size*8 - get_bits_count(&s->gb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s->mb_y != s->mb_height || s->mb_x != s->mb_width) { | 
					
						
							|  |  |  |         av_log(avctx, AV_LOG_INFO, "frame num %d incomplete pic x %d y %d left %d\n", avctx->frame_number, s->mb_y, s->mb_x, left); | 
					
						
							|  |  |  |         //av_hex_dump(stderr, buf+buf_size-8, 8);
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (left < 0) { | 
					
						
							|  |  |  |         av_log(avctx, AV_LOG_ERROR, "frame num %d left %d\n", avctx->frame_number, left); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-15 14:10:33 +02:00
										 |  |  |     ff_MPV_frame_end(s); | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02:00
										 |  |  |     if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) { | 
					
						
							| 
									
										
										
										
											2012-02-27 22:08:41 +01:00
										 |  |  |         *(AVFrame *) data = s->current_picture.f; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2012-02-27 22:08:41 +01:00
										 |  |  |         *(AVFrame *) data = s->last_picture.f; | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     /* Do not output the last pic after seeking. */ | 
					
						
							|  |  |  |     if (s->last_picture_ptr || s->low_delay) { | 
					
						
							|  |  |  |         *data_size = sizeof(AVFrame); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-06-19 01:44:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-22 16:36:50 +00:00
										 |  |  |     return buf_size; | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  | static int svq3_decode_end(AVCodecContext *avctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SVQ3Context *svq3 = avctx->priv_data; | 
					
						
							|  |  |  |     H264Context *h = &svq3->h; | 
					
						
							|  |  |  |     MpegEncContext *s = &h->s; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ff_h264_free_context(h); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-15 14:10:33 +02:00
										 |  |  |     ff_MPV_common_end(s); | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 15:17:51 +02:00
										 |  |  |     av_freep(&svq3->buf); | 
					
						
							|  |  |  |     svq3->buf_size = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-05 14:18:33 +02:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 21:40:11 +00:00
										 |  |  | AVCodec ff_svq3_decoder = { | 
					
						
							| 
									
										
										
										
											2011-07-17 12:54:31 +02:00
										 |  |  |     .name           = "svq3", | 
					
						
							|  |  |  |     .type           = AVMEDIA_TYPE_VIDEO, | 
					
						
							|  |  |  |     .id             = CODEC_ID_SVQ3, | 
					
						
							|  |  |  |     .priv_data_size = sizeof(SVQ3Context), | 
					
						
							|  |  |  |     .init           = svq3_decode_init, | 
					
						
							|  |  |  |     .close          = svq3_decode_end, | 
					
						
							|  |  |  |     .decode         = svq3_decode_frame, | 
					
						
							| 
									
										
										
										
											2012-04-06 19:19:39 +03:00
										 |  |  |     .capabilities   = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | | 
					
						
							|  |  |  |                       CODEC_CAP_DELAY, | 
					
						
							|  |  |  |     .long_name      = NULL_IF_CONFIG_SMALL("Sorenson Vector Quantizer 3 / Sorenson Video 3 / SVQ3"), | 
					
						
							|  |  |  |     .pix_fmts       = (const enum PixelFormat[]){ PIX_FMT_YUVJ420P, PIX_FMT_NONE }, | 
					
						
							| 
									
										
										
										
											2003-05-09 22:16:14 +00:00
										 |  |  | }; |