annotate svq3.c @ 1268:fb865ca0c251 libavcodec

CODEC_CAP_DRAW_HORIZ_BAND
author michaelni
date Fri, 16 May 2003 10:14:25 +0000
parents 85b71f9f7450
children 2498a7045b37
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
1 /*
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
2 * Copyright (c) 2003 The FFmpeg Project.
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
3 *
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
4 * This library is free software; you can redistribute it and/or
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
5 * modify it under the terms of the GNU Lesser General Public
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
6 * License as published by the Free Software Foundation; either
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
7 * version 2 of the License, or (at your option) any later version.
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
8 *
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
9 * This library is distributed in the hope that it will be useful,
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
12 * Lesser General Public License for more details.
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
13 *
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
14 * You should have received a copy of the GNU Lesser General Public
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
15 * License along with this library; if not, write to the Free Software
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
17 *
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
18 *
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
19 * How to use this decoder:
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
20 * SVQ3 data is transported within Apple Quicktime files. Quicktime files
1235
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
21 * have stsd atoms to describe media trak properties. A stsd atom for a
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
22 * video trak contains 1 or more ImageDescription atoms. These atoms begin
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
23 * with the 4-byte length of the atom followed by the codec fourcc. Some
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
24 * decoders need information in this atom to operate correctly. Such
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
25 * is the case with SVQ3. In order to get the best use out of this decoder,
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
26 * the calling app must make the SVQ3 ImageDescription atom available
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
27 * via the AVCodecContext's extradata[_size] field:
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
28 *
1235
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
29 * AVCodecContext.extradata = pointer to ImageDescription, first characters
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
30 * are expected to be 'S', 'V', 'Q', and '3', NOT the 4-byte atom length
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
31 * AVCodecContext.extradata_size = size of ImageDescription atom memory
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
32 * buffer (which will be the same as the ImageDescription atom size field
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
33 * from the QT file, minus 4 bytes since the length is missing)
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
34 *
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
35 * You will know you have these parameters passed correctly when the decoder
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
36 * correctly decodes this file:
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
37 * ftp://ftp.mplayerhq.hu/MPlayer/samples/V-codecs/SVQ3/Vertical400kbit.sorenson3.mov
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
38 *
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
39 */
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
40
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
41 /**
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
42 * @file svq3.c
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
43 * svq3 decoder.
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
44 */
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
45
1265
09165461996f optimize
michaelni
parents: 1264
diff changeset
46 #define FULLPEL_MODE 1
09165461996f optimize
michaelni
parents: 1264
diff changeset
47 #define HALFPEL_MODE 2
09165461996f optimize
michaelni
parents: 1264
diff changeset
48 #define THIRDPEL_MODE 3
09165461996f optimize
michaelni
parents: 1264
diff changeset
49
1252
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
50 /* dual scan (from some older h264 draft)
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
51 o-->o-->o o
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
52 | /|
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
53 o o o / o
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
54 | / | |/ |
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
55 o o o o
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
56 /
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
57 o-->o-->o-->o
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
58 */
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
59 static const uint8_t svq3_scan[16]={
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
60 0+0*4, 1+0*4, 2+0*4, 2+1*4,
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
61 2+2*4, 3+0*4, 3+1*4, 3+2*4,
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
62 0+1*4, 0+2*4, 1+1*4, 1+2*4,
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
63 0+3*4, 1+3*4, 2+3*4, 3+3*4,
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
64 };
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
65
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
66 static const uint8_t svq3_pred_0[25][2] = {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
67 { 0, 0 },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
68 { 1, 0 }, { 0, 1 },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
69 { 0, 2 }, { 1, 1 }, { 2, 0 },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
70 { 3, 0 }, { 2, 1 }, { 1, 2 }, { 0, 3 },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
71 { 0, 4 }, { 1, 3 }, { 2, 2 }, { 3, 1 }, { 4, 0 },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
72 { 4, 1 }, { 3, 2 }, { 2, 3 }, { 1, 4 },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
73 { 2, 4 }, { 3, 3 }, { 4, 2 },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
74 { 4, 3 }, { 3, 4 },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
75 { 4, 4 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
76 };
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
77
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
78 static const int8_t svq3_pred_1[6][6][5] = {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
79 { { 2,-1,-1,-1,-1 }, { 2, 1,-1,-1,-1 }, { 1, 2,-1,-1,-1 },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
80 { 2, 1,-1,-1,-1 }, { 1, 2,-1,-1,-1 }, { 1, 2,-1,-1,-1 } },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
81 { { 0, 2,-1,-1,-1 }, { 0, 2, 1, 4, 3 }, { 0, 1, 2, 4, 3 },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
82 { 0, 2, 1, 4, 3 }, { 2, 0, 1, 3, 4 }, { 0, 4, 2, 1, 3 } },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
83 { { 2, 0,-1,-1,-1 }, { 2, 1, 0, 4, 3 }, { 1, 2, 4, 0, 3 },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
84 { 2, 1, 0, 4, 3 }, { 2, 1, 4, 3, 0 }, { 1, 2, 4, 0, 3 } },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
85 { { 2, 0,-1,-1,-1 }, { 2, 0, 1, 4, 3 }, { 1, 2, 0, 4, 3 },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
86 { 2, 1, 0, 4, 3 }, { 2, 1, 3, 4, 0 }, { 2, 4, 1, 0, 3 } },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
87 { { 0, 2,-1,-1,-1 }, { 0, 2, 1, 3, 4 }, { 1, 2, 3, 0, 4 },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
88 { 2, 0, 1, 3, 4 }, { 2, 1, 3, 0, 4 }, { 2, 0, 4, 3, 1 } },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
89 { { 0, 2,-1,-1,-1 }, { 0, 2, 4, 1, 3 }, { 1, 4, 2, 0, 3 },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
90 { 4, 2, 0, 1, 3 }, { 2, 0, 1, 4, 3 }, { 4, 2, 1, 0, 3 } },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
91 };
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
92
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
93 static const struct { uint8_t run; uint8_t level; } svq3_dct_tables[2][16] = {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
94 { { 0, 0 }, { 0, 1 }, { 1, 1 }, { 2, 1 }, { 0, 2 }, { 3, 1 }, { 4, 1 }, { 5, 1 },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
95 { 0, 3 }, { 1, 2 }, { 2, 2 }, { 6, 1 }, { 7, 1 }, { 8, 1 }, { 9, 1 }, { 0, 4 } },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
96 { { 0, 0 }, { 0, 1 }, { 1, 1 }, { 0, 2 }, { 2, 1 }, { 0, 3 }, { 0, 4 }, { 0, 5 },
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
97 { 3, 1 }, { 4, 1 }, { 1, 2 }, { 1, 3 }, { 0, 6 }, { 0, 7 }, { 0, 8 }, { 0, 9 } }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
98 };
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
99
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
100 static const uint32_t svq3_dequant_coeff[32] = {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
101 3881, 4351, 4890, 5481, 6154, 6914, 7761, 8718,
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
102 9781, 10987, 12339, 13828, 15523, 17435, 19561, 21873,
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
103 24552, 27656, 30847, 34870, 38807, 43747, 49103, 54683,
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
104 61694, 68745, 77615, 89113,100253,109366,126635,141533
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
105 };
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
106
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
107
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
108 static void svq3_luma_dc_dequant_idct_c(DCTELEM *block, int qp){
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
109 const int qmul= svq3_dequant_coeff[qp];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
110 #define stride 16
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
111 int i;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
112 int temp[16];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
113 static const int x_offset[4]={0, 1*stride, 4* stride, 5*stride};
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
114 static const int y_offset[4]={0, 2*stride, 8* stride, 10*stride};
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
115
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
116 for(i=0; i<4; i++){
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
117 const int offset= y_offset[i];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
118 const int z0= 13*(block[offset+stride*0] + block[offset+stride*4]);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
119 const int z1= 13*(block[offset+stride*0] - block[offset+stride*4]);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
120 const int z2= 7* block[offset+stride*1] - 17*block[offset+stride*5];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
121 const int z3= 17* block[offset+stride*1] + 7*block[offset+stride*5];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
122
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
123 temp[4*i+0]= z0+z3;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
124 temp[4*i+1]= z1+z2;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
125 temp[4*i+2]= z1-z2;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
126 temp[4*i+3]= z0-z3;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
127 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
128
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
129 for(i=0; i<4; i++){
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
130 const int offset= x_offset[i];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
131 const int z0= 13*(temp[4*0+i] + temp[4*2+i]);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
132 const int z1= 13*(temp[4*0+i] - temp[4*2+i]);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
133 const int z2= 7* temp[4*1+i] - 17*temp[4*3+i];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
134 const int z3= 17* temp[4*1+i] + 7*temp[4*3+i];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
135
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
136 block[stride*0 +offset]= ((z0 + z3)*qmul + 0x80000)>>20;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
137 block[stride*2 +offset]= ((z1 + z2)*qmul + 0x80000)>>20;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
138 block[stride*8 +offset]= ((z1 - z2)*qmul + 0x80000)>>20;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
139 block[stride*10+offset]= ((z0 - z3)*qmul + 0x80000)>>20;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
140 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
141 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
142 #undef stride
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
143
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
144 static void svq3_add_idct_c (uint8_t *dst, DCTELEM *block, int stride, int qp, int dc){
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
145 const int qmul= svq3_dequant_coeff[qp];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
146 int i;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
147 uint8_t *cm = cropTbl + MAX_NEG_CROP;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
148
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
149 if (dc) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
150 dc = 13*13*((dc == 1) ? 1538*block[0] : ((qmul*(block[0] >> 3)) / 2));
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
151 block[0] = 0;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
152 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
153
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
154 for (i=0; i < 4; i++) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
155 const int z0= 13*(block[0 + 4*i] + block[2 + 4*i]);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
156 const int z1= 13*(block[0 + 4*i] - block[2 + 4*i]);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
157 const int z2= 7* block[1 + 4*i] - 17*block[3 + 4*i];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
158 const int z3= 17* block[1 + 4*i] + 7*block[3 + 4*i];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
159
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
160 block[0 + 4*i]= z0 + z3;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
161 block[1 + 4*i]= z1 + z2;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
162 block[2 + 4*i]= z1 - z2;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
163 block[3 + 4*i]= z0 - z3;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
164 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
165
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
166 for (i=0; i < 4; i++) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
167 const int z0= 13*(block[i + 4*0] + block[i + 4*2]);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
168 const int z1= 13*(block[i + 4*0] - block[i + 4*2]);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
169 const int z2= 7* block[i + 4*1] - 17*block[i + 4*3];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
170 const int z3= 17* block[i + 4*1] + 7*block[i + 4*3];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
171 const int rr= (dc + 0x80000);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
172
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
173 dst[i + stride*0]= cm[ dst[i + stride*0] + (((z0 + z3)*qmul + rr) >> 20) ];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
174 dst[i + stride*1]= cm[ dst[i + stride*1] + (((z1 + z2)*qmul + rr) >> 20) ];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
175 dst[i + stride*2]= cm[ dst[i + stride*2] + (((z1 - z2)*qmul + rr) >> 20) ];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
176 dst[i + stride*3]= cm[ dst[i + stride*3] + (((z0 - z3)*qmul + rr) >> 20) ];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
177 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
178 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
179
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
180 static void pred4x4_down_left_svq3_c(uint8_t *src, uint8_t *topright, int stride){
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
181 LOAD_TOP_EDGE
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
182 LOAD_LEFT_EDGE
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
183 const __attribute__((unused)) int unu0= t0;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
184 const __attribute__((unused)) int unu1= l0;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
185
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
186 src[0+0*stride]=(l1 + t1)>>1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
187 src[1+0*stride]=
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
188 src[0+1*stride]=(l2 + t2)>>1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
189 src[2+0*stride]=
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
190 src[1+1*stride]=
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
191 src[0+2*stride]=
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
192 src[3+0*stride]=
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
193 src[2+1*stride]=
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
194 src[1+2*stride]=
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
195 src[0+3*stride]=
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
196 src[3+1*stride]=
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
197 src[2+2*stride]=
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
198 src[1+3*stride]=
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
199 src[3+2*stride]=
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
200 src[2+3*stride]=
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
201 src[3+3*stride]=(l3 + t3)>>1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
202 };
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
203
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
204 static void pred16x16_plane_svq3_c(uint8_t *src, int stride){
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
205 pred16x16_plane_compat_c(src, stride, 1);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
206 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
207
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
208 static inline int svq3_decode_block (GetBitContext *gb, DCTELEM *block,
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
209 int index, const int type) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
210
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
211 static const uint8_t *const scan_patterns[4] =
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
212 { luma_dc_zigzag_scan, zigzag_scan, svq3_scan, chroma_dc_scan };
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
213
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
214 int run, level, sign, vlc, limit;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
215 const int intra = (3 * type) >> 2;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
216 const uint8_t *const scan = scan_patterns[type];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
217
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
218 for (limit=(16 >> intra); index < 16; index=limit, limit+=8) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
219 for (; (vlc = svq3_get_ue_golomb (gb)) != 0; index++) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
220
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
221 if (vlc == INVALID_VLC)
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
222 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
223
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
224 sign = (vlc & 0x1) - 1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
225 vlc = (vlc + 1) >> 1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
226
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
227 if (type == 3) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
228 if (vlc < 3) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
229 run = 0;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
230 level = vlc;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
231 } else if (vlc < 4) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
232 run = 1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
233 level = 1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
234 } else {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
235 run = (vlc & 0x3);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
236 level = ((vlc + 9) >> 2) - run;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
237 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
238 } else {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
239 if (vlc < 16) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
240 run = svq3_dct_tables[intra][vlc].run;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
241 level = svq3_dct_tables[intra][vlc].level;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
242 } else if (intra) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
243 run = (vlc & 0x7);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
244 level = (vlc >> 3) + ((run == 0) ? 8 : ((run < 2) ? 2 : ((run < 5) ? 0 : -1)));
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
245 } else {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
246 run = (vlc & 0xF);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
247 level = (vlc >> 4) + ((run == 0) ? 4 : ((run < 3) ? 2 : ((run < 10) ? 1 : 0)));
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
248 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
249 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
250
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
251 if ((index += run) >= limit)
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
252 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
253
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
254 block[scan[index]] = (level ^ sign) - sign;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
255 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
256
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
257 if (type != 2) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
258 break;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
259 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
260 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
261
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
262 return 0;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
263 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
264
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
265 static inline void svq3_mc_dir_part (MpegEncContext *s, int x, int y,
1267
85b71f9f7450 moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents: 1265
diff changeset
266 int width, int height, int mx, int my, int dxy, int thirdpel) {
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
267 uint8_t *src, *dest;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
268 int i, emu = 0;
1267
85b71f9f7450 moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents: 1265
diff changeset
269 int blocksize= 2 - (width>>3); //16->0, 8->1, 4->2
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
270
1265
09165461996f optimize
michaelni
parents: 1264
diff changeset
271 mx += x;
09165461996f optimize
michaelni
parents: 1264
diff changeset
272 my += y;
09165461996f optimize
michaelni
parents: 1264
diff changeset
273
1268
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
274 if (mx < 0 || mx >= (s->h_edge_pos - width - 1) ||
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
275 my < 0 || my >= (s->v_edge_pos - height - 1)) {
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
276
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
277 if ((s->flags & CODEC_FLAG_EMU_EDGE)) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
278 emu = 1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
279 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
280
1268
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
281 mx = clip (mx, -16, (s->h_edge_pos - width + 15));
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
282 my = clip (my, -16, (s->v_edge_pos - height + 15));
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
283 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
284
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
285 /* form component predictions */
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
286 dest = s->current_picture.data[0] + x + y*s->linesize;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
287 src = s->last_picture.data[0] + mx + my*s->linesize;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
288
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
289 if (emu) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
290 ff_emulated_edge_mc (s, src, s->linesize, (width + 1), (height + 1),
1268
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
291 mx, my, s->h_edge_pos, s->v_edge_pos);
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
292 src = s->edge_emu_buffer;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
293 }
1267
85b71f9f7450 moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents: 1265
diff changeset
294 if(thirdpel)
85b71f9f7450 moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents: 1265
diff changeset
295 s->dsp.put_tpel_pixels_tab[dxy](dest, src, s->linesize, width, height);
85b71f9f7450 moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents: 1265
diff changeset
296 else
85b71f9f7450 moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents: 1265
diff changeset
297 s->dsp.put_pixels_tab[blocksize][dxy](dest, src, s->linesize, height);
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
298
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
299 if (!(s->flags & CODEC_FLAG_GRAY)) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
300 mx = (mx + (mx < (int) x)) >> 1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
301 my = (my + (my < (int) y)) >> 1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
302 width = (width >> 1);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
303 height = (height >> 1);
1267
85b71f9f7450 moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents: 1265
diff changeset
304 blocksize++;
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
305
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
306 for (i=1; i < 3; i++) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
307 dest = s->current_picture.data[i] + (x >> 1) + (y >> 1)*s->uvlinesize;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
308 src = s->last_picture.data[i] + mx + my*s->uvlinesize;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
309
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
310 if (emu) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
311 ff_emulated_edge_mc (s, src, s->uvlinesize, (width + 1), (height + 1),
1268
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
312 mx, my, (s->h_edge_pos >> 1), (s->v_edge_pos >> 1));
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
313 src = s->edge_emu_buffer;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
314 }
1267
85b71f9f7450 moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents: 1265
diff changeset
315 if(thirdpel)
85b71f9f7450 moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents: 1265
diff changeset
316 s->dsp.put_tpel_pixels_tab[dxy](dest, src, s->uvlinesize, width, height);
85b71f9f7450 moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents: 1265
diff changeset
317 else
85b71f9f7450 moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents: 1265
diff changeset
318 s->dsp.put_pixels_tab[blocksize][dxy](dest, src, s->uvlinesize, height);
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
319 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
320 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
321 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
322
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
323 static int svq3_decode_mb (H264Context *h, unsigned int mb_type) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
324 int cbp, dir, mode, mx, my, dx, dy, x, y, part_width, part_height;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
325 int i, j, k, l, m;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
326 uint32_t vlc;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
327 int8_t *top, *left;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
328 MpegEncContext *const s = (MpegEncContext *) h;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
329 const int mb_xy = s->mb_x + s->mb_y*s->mb_stride;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
330 const int b_xy = 4*s->mb_x + 4*s->mb_y*h->b_stride;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
331
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
332 h->top_samples_available = (s->mb_y == 0) ? 0x33FF : 0xFFFF;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
333 h->left_samples_available = (s->mb_x == 0) ? 0x5F5F : 0xFFFF;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
334 h->topright_samples_available = 0xFFFF;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
335
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
336 if (mb_type == 0) { /* SKIP */
1267
85b71f9f7450 moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents: 1265
diff changeset
337 svq3_mc_dir_part (s, 16*s->mb_x, 16*s->mb_y, 16, 16, 0, 0, 0, 0);
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
338
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
339 cbp = 0;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
340 mb_type = MB_TYPE_SKIP;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
341 } else if (mb_type < 8) { /* INTER */
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
342 if (h->thirdpel_flag && h->halfpel_flag == !get_bits (&s->gb, 1)) {
1265
09165461996f optimize
michaelni
parents: 1264
diff changeset
343 mode = THIRDPEL_MODE;
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
344 } else if (h->halfpel_flag && h->thirdpel_flag == !get_bits (&s->gb, 1)) {
1265
09165461996f optimize
michaelni
parents: 1264
diff changeset
345 mode = HALFPEL_MODE;
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
346 } else {
1265
09165461996f optimize
michaelni
parents: 1264
diff changeset
347 mode = FULLPEL_MODE;
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
348 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
349
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
350 /* fill caches */
1252
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
351 /* note ref_cache[0] should contain here:
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
352 ????????
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
353 ???11111
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
354 N??11111
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
355 N??11111
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
356 N??11111
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
357 N
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
358 */
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
359
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
360 if (s->mb_x > 0) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
361 for (i=0; i < 4; i++) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
362 *(uint32_t *) h->mv_cache[0][scan8[0] - 1 + i*8] = *(uint32_t *) s->current_picture.motion_val[0][b_xy - 1 + i*h->b_stride];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
363 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
364 } else {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
365 for (i=0; i < 4; i++) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
366 *(uint32_t *) h->mv_cache[0][scan8[0] - 1 + i*8] = 0;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
367 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
368 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
369 if (s->mb_y > 0) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
370 memcpy (h->mv_cache[0][scan8[0] - 1*8], s->current_picture.motion_val[0][b_xy - h->b_stride], 4*2*sizeof(int16_t));
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
371 memset (&h->ref_cache[0][scan8[0] - 1*8], 1, 4);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
372
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
373 if (s->mb_x < (s->mb_width - 1)) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
374 *(uint32_t *) h->mv_cache[0][scan8[0] + 4 - 1*8] = *(uint32_t *) s->current_picture.motion_val[0][b_xy - h->b_stride + 4];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
375 h->ref_cache[0][scan8[0] + 4 - 1*8] = 1;
1252
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
376 }else
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
377 h->ref_cache[0][scan8[0] + 4 - 1*8] = PART_NOT_AVAILABLE;
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
378 if (s->mb_x > 0) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
379 *(uint32_t *) h->mv_cache[0][scan8[0] - 1 - 1*8] = *(uint32_t *) s->current_picture.motion_val[0][b_xy - h->b_stride - 1];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
380 h->ref_cache[0][scan8[0] - 1 - 1*8] = 1;
1252
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
381 }else
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
382 h->ref_cache[0][scan8[0] - 1 - 1*8] = PART_NOT_AVAILABLE;
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
383 }else
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
384 memset (&h->ref_cache[0][scan8[0] - 1*8 - 1], PART_NOT_AVAILABLE, 8);
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
385
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
386 /* decode motion vector(s) and form prediction(s) */
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
387 part_width = ((mb_type & 5) == 5) ? 4 : 8 << (mb_type & 1);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
388 part_height = 16 >> ((unsigned) mb_type / 3);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
389
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
390 for (i=0; i < 16; i+=part_height) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
391 for (j=0; j < 16; j+=part_width) {
1265
09165461996f optimize
michaelni
parents: 1264
diff changeset
392 int dxy;
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
393 x = 16*s->mb_x + j;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
394 y = 16*s->mb_y + i;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
395 k = ((j>>2)&1) + ((i>>1)&2) + ((j>>1)&4) + (i&8);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
396
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
397 pred_motion (h, k, (part_width >> 2), 0, 1, &mx, &my);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
398
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
399 /* clip motion vector prediction to frame border */
1268
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
400 mx = clip (mx, -6*x, 6*(s->h_edge_pos - part_width - x));
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
401 my = clip (my, -6*y, 6*(s->v_edge_pos - part_height - y));
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
402
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
403 /* get motion vector differential */
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
404 dy = svq3_get_se_golomb (&s->gb);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
405 dx = svq3_get_se_golomb (&s->gb);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
406
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
407 if (dx == INVALID_VLC || dy == INVALID_VLC) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
408 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
409 }
1265
09165461996f optimize
michaelni
parents: 1264
diff changeset
410 /* compute motion vector */
09165461996f optimize
michaelni
parents: 1264
diff changeset
411 if (mode == THIRDPEL_MODE) {
09165461996f optimize
michaelni
parents: 1264
diff changeset
412 int fx, fy;
09165461996f optimize
michaelni
parents: 1264
diff changeset
413 mx = ((mx + 1)>>1) + dx;
09165461996f optimize
michaelni
parents: 1264
diff changeset
414 my = ((my + 1)>>1) + dy;
09165461996f optimize
michaelni
parents: 1264
diff changeset
415 fx= ((unsigned)(mx + 0x3000))/3 - 0x1000;
09165461996f optimize
michaelni
parents: 1264
diff changeset
416 fy= ((unsigned)(my + 0x3000))/3 - 0x1000;
1267
85b71f9f7450 moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents: 1265
diff changeset
417 dxy= (mx - 3*fx) + 4*(my - 3*fy);
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
418
1267
85b71f9f7450 moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents: 1265
diff changeset
419 svq3_mc_dir_part (s, x, y, part_width, part_height, fx, fy, dxy, 1);
1265
09165461996f optimize
michaelni
parents: 1264
diff changeset
420 mx += mx;
09165461996f optimize
michaelni
parents: 1264
diff changeset
421 my += my;
09165461996f optimize
michaelni
parents: 1264
diff changeset
422 } else if (mode == HALFPEL_MODE) {
09165461996f optimize
michaelni
parents: 1264
diff changeset
423 mx = ((unsigned)(mx + 1 + 0x3000))/3 + dx - 0x1000;
09165461996f optimize
michaelni
parents: 1264
diff changeset
424 my = ((unsigned)(my + 1 + 0x3000))/3 + dy - 0x1000;
1267
85b71f9f7450 moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents: 1265
diff changeset
425 dxy= (mx&1) + 2*(my&1);
1265
09165461996f optimize
michaelni
parents: 1264
diff changeset
426
1267
85b71f9f7450 moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents: 1265
diff changeset
427 svq3_mc_dir_part (s, x, y, part_width, part_height, mx>>1, my>>1, dxy, 0);
1265
09165461996f optimize
michaelni
parents: 1264
diff changeset
428 mx *= 3;
09165461996f optimize
michaelni
parents: 1264
diff changeset
429 my *= 3;
09165461996f optimize
michaelni
parents: 1264
diff changeset
430 } else {
09165461996f optimize
michaelni
parents: 1264
diff changeset
431 assert(mode == FULLPEL_MODE);
09165461996f optimize
michaelni
parents: 1264
diff changeset
432 mx = ((unsigned)(mx + 3 + 0x6000))/6 + dx - 0x1000;
09165461996f optimize
michaelni
parents: 1264
diff changeset
433 my = ((unsigned)(my + 3 + 0x6000))/6 + dy - 0x1000;
09165461996f optimize
michaelni
parents: 1264
diff changeset
434
1267
85b71f9f7450 moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents: 1265
diff changeset
435 svq3_mc_dir_part (s, x, y, part_width, part_height, mx, my, 0, 0);
1265
09165461996f optimize
michaelni
parents: 1264
diff changeset
436 mx *= 6;
09165461996f optimize
michaelni
parents: 1264
diff changeset
437 my *= 6;
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
438 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
439
1265
09165461996f optimize
michaelni
parents: 1264
diff changeset
440 /* update mv_cache */
1252
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
441 fill_rectangle(h->mv_cache[0][scan8[k]], part_width>>2, part_height>>2, 8, (mx&0xFFFF)+(my<<16), 4);
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
442 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
443 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
444
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
445 for (i=0; i < 4; i++) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
446 memcpy (s->current_picture.motion_val[0][b_xy + i*h->b_stride], h->mv_cache[0][scan8[0] + 8*i], 4*2*sizeof(int16_t));
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
447 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
448
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
449 if ((vlc = svq3_get_ue_golomb (&s->gb)) >= 48)
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
450 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
451
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
452 cbp = golomb_to_inter_cbp[vlc];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
453 mb_type = MB_TYPE_16x16;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
454 } else if (mb_type == 8) { /* INTRA4x4 */
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
455 memset (h->intra4x4_pred_mode_cache, -1, 8*5*sizeof(int8_t));
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
456
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
457 if (s->mb_x > 0) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
458 for (i=0; i < 4; i++) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
459 h->intra4x4_pred_mode_cache[scan8[0] - 1 + i*8] = h->intra4x4_pred_mode[mb_xy - 1][i];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
460 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
461 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
462 if (s->mb_y > 0) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
463 h->intra4x4_pred_mode_cache[4+8*0] = h->intra4x4_pred_mode[mb_xy - s->mb_stride][4];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
464 h->intra4x4_pred_mode_cache[5+8*0] = h->intra4x4_pred_mode[mb_xy - s->mb_stride][5];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
465 h->intra4x4_pred_mode_cache[6+8*0] = h->intra4x4_pred_mode[mb_xy - s->mb_stride][6];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
466 h->intra4x4_pred_mode_cache[7+8*0] = h->intra4x4_pred_mode[mb_xy - s->mb_stride][3];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
467 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
468
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
469 /* decode prediction codes for luma blocks */
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
470 for (i=0; i < 16; i+=2) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
471 vlc = svq3_get_ue_golomb (&s->gb);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
472
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
473 if (vlc >= 25)
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
474 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
475
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
476 left = &h->intra4x4_pred_mode_cache[scan8[i] - 1];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
477 top = &h->intra4x4_pred_mode_cache[scan8[i] - 8];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
478
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
479 left[1] = svq3_pred_1[top[0] + 1][left[0] + 1][svq3_pred_0[vlc][0]];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
480 left[2] = svq3_pred_1[top[1] + 1][left[1] + 1][svq3_pred_0[vlc][1]];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
481
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
482 if (left[1] == -1 || left[2] == -1)
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
483 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
484 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
485
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
486 write_back_intra_pred_mode (h);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
487 check_intra4x4_pred_mode (h);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
488
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
489 if ((vlc = svq3_get_ue_golomb (&s->gb)) >= 48)
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
490 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
491
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
492 cbp = golomb_to_intra4x4_cbp[vlc];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
493 mb_type = MB_TYPE_INTRA4x4;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
494 } else { /* INTRA16x16 */
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
495 dir = i_mb_type_info[mb_type - 8].pred_mode;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
496 dir = (dir >> 1) ^ 3*(dir & 1) ^ 1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
497
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
498 if ((h->intra16x16_pred_mode = check_intra_pred_mode (h, dir)) == -1)
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
499 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
500
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
501 cbp = i_mb_type_info[mb_type - 8].cbp;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
502 mb_type = MB_TYPE_INTRA16x16;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
503 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
504
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
505 if (!IS_INTER(mb_type) && s->pict_type != I_TYPE) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
506 for (i=0; i < 4; i++) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
507 memset (s->current_picture.motion_val[0][b_xy + i*h->b_stride], 0, 4*2*sizeof(int16_t));
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
508 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
509 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
510 if (!IS_INTRA4x4(mb_type)) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
511 memset (h->intra4x4_pred_mode[mb_xy], DC_PRED, 8);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
512 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
513 if (!IS_SKIP(mb_type)) {
1252
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
514 memset (h->non_zero_count_cache + 8, 0, 4*9*sizeof(uint8_t));
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
515 s->dsp.clear_blocks(h->mb);
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
516 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
517
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
518 if (IS_INTRA16x16(mb_type) || (s->pict_type != I_TYPE && s->adaptive_quant && cbp)) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
519 s->qscale += svq3_get_se_golomb (&s->gb);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
520
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
521 if (s->qscale > 31)
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
522 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
523 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
524 if (IS_INTRA16x16(mb_type)) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
525 if (svq3_decode_block (&s->gb, h->mb, 0, 0))
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
526 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
527 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
528
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
529 if (!IS_SKIP(mb_type) && cbp) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
530 l = IS_INTRA16x16(mb_type) ? 1 : 0;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
531 m = ((s->qscale < 24 && IS_INTRA4x4(mb_type)) ? 2 : 1);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
532
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
533 for (i=0; i < 4; i++) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
534 if ((cbp & (1 << i))) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
535 for (j=0; j < 4; j++) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
536 k = l ? ((j&1) + 2*(i&1) + 2*(j&2) + 4*(i&2)) : (4*i + j);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
537 h->non_zero_count_cache[ scan8[k] ] = 1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
538
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
539 if (svq3_decode_block (&s->gb, &h->mb[16*k], l, m))
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
540 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
541 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
542 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
543 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
544
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
545 if ((cbp & 0x30)) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
546 for (i=0; i < 2; ++i) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
547 if (svq3_decode_block (&s->gb, &h->mb[16*(16 + 4*i)], 0, 3))
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
548 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
549 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
550
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
551 if ((cbp & 0x20)) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
552 for (i=0; i < 8; i++) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
553 h->non_zero_count_cache[ scan8[16+i] ] = 1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
554
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
555 if (svq3_decode_block (&s->gb, &h->mb[16*(16 + i)], 1, 1))
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
556 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
557 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
558 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
559 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
560 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
561
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
562 s->current_picture.mb_type[mb_xy] = mb_type;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
563
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
564 if (IS_INTRA(mb_type)) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
565 h->chroma_pred_mode = check_intra_pred_mode (h, DC_PRED8x8);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
566 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
567
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
568 return 0;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
569 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
570
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
571 static int svq3_decode_frame (AVCodecContext *avctx,
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
572 void *data, int *data_size,
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
573 uint8_t *buf, int buf_size) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
574 MpegEncContext *const s = avctx->priv_data;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
575 H264Context *const h = avctx->priv_data;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
576 int i;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
577
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
578 s->flags = avctx->flags;
1268
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
579
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
580 if (!s->context_initialized) {
1268
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
581 s->width = avctx->width;
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
582 s->height = avctx->height;
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
583 h->pred4x4[DIAG_DOWN_LEFT_PRED] = pred4x4_down_left_svq3_c;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
584 h->pred16x16[PLANE_PRED8x8] = pred16x16_plane_svq3_c;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
585 h->halfpel_flag = 1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
586 h->thirdpel_flag = 1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
587 h->chroma_qp = 4;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
588
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
589 if (MPV_common_init (s) < 0)
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
590 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
591
1268
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
592 h->b_stride = 4*s->mb_width;
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
593
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
594 alloc_tables (h);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
595 }
1268
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
596
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
597 s->low_delay= 1;
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
598
1235
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
599 if (avctx->extradata && avctx->extradata_size >= 0x63
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
600 && !memcmp (avctx->extradata, "SVQ3", 4)) {
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
601
1235
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
602 uint8_t *stsd = (uint8_t *) avctx->extradata + 0x62;
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
603
1235
8bb75c3c2f21 change the way the ImageDescription is passed to the decoder
tmmm
parents: 1234
diff changeset
604 if ((*stsd >> 5) != 7 || avctx->extradata_size >= 0x66) {
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
605
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
606 if ((*stsd >> 5) == 7) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
607 stsd += 3; /* skip width, height (12 bits each) */
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
608 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
609
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
610 h->halfpel_flag = (*stsd >> 4) & 1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
611 h->thirdpel_flag = (*stsd >> 3) & 1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
612 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
613 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
614
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
615 if ((buf[0] & 0x9F) != 1) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
616 /* TODO: what? */
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
617 fprintf (stderr, "unsupported header (%02X)\n", buf[0]);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
618 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
619 } else {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
620 int length = (buf[0] >> 5) & 3;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
621 int offset = 0;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
622
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
623 for (i=0; i < length; i++) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
624 offset = (offset << 8) | buf[i + 1];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
625 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
626
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
627 if (buf_size < (offset + length + 1) || length == 0)
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
628 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
629
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
630 memcpy (&buf[2], &buf[offset + 2], (length - 1));
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
631 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
632
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
633 init_get_bits (&s->gb, &buf[2], 8*(buf_size - 2));
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
634
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
635 if ((i = svq3_get_ue_golomb (&s->gb)) == INVALID_VLC || i >= 3)
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
636 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
637
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
638 s->pict_type = golomb_to_pict_type[i];
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
639
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
640 /* unknown fields */
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
641 get_bits (&s->gb, 1);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
642 get_bits (&s->gb, 8);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
643
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
644 s->qscale = get_bits (&s->gb, 5);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
645 s->adaptive_quant = get_bits (&s->gb, 1);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
646
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
647 /* unknown fields */
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
648 get_bits (&s->gb, 1);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
649 get_bits (&s->gb, 1);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
650 get_bits (&s->gb, 2);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
651
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
652 while (get_bits (&s->gb, 1)) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
653 get_bits (&s->gb, 8);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
654 }
1250
fa181d095027 optimizations
michaelni
parents: 1235
diff changeset
655
fa181d095027 optimizations
michaelni
parents: 1235
diff changeset
656 if(avctx->debug&FF_DEBUG_PICT_INFO){
fa181d095027 optimizations
michaelni
parents: 1235
diff changeset
657 printf("%c hpel:%d, tpel:%d aqp:%d qp:%d\n",
1264
2fa34e615c76 cleanup
michaelni
parents: 1252
diff changeset
658 av_get_pict_type_char(s->pict_type), h->halfpel_flag, h->thirdpel_flag,
1250
fa181d095027 optimizations
michaelni
parents: 1235
diff changeset
659 s->adaptive_quant, s->qscale
fa181d095027 optimizations
michaelni
parents: 1235
diff changeset
660 );
fa181d095027 optimizations
michaelni
parents: 1235
diff changeset
661 }
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
662
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
663 /* B-frames are not supported */
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
664 if (s->pict_type == B_TYPE/* && avctx->hurry_up*/)
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
665 return buf_size;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
666
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
667 frame_start (h);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
668
1252
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
669 for(i=0; i<4; i++){
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
670 int j;
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
671 for(j=-1; j<4; j++)
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
672 h->ref_cache[0][scan8[0] + 8*i + j]= 1;
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
673 h->ref_cache[0][scan8[0] + 8*i + j]= PART_NOT_AVAILABLE;
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
674 }
67ee8bab0f28 optimizations
michaelni
parents: 1250
diff changeset
675
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
676 for (s->mb_y=0; s->mb_y < s->mb_height; s->mb_y++) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
677 for (s->mb_x=0; s->mb_x < s->mb_width; s->mb_x++) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
678 int mb_type = svq3_get_ue_golomb (&s->gb);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
679
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
680 if (s->pict_type == I_TYPE) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
681 mb_type += 8;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
682 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
683 if (mb_type > 32 || svq3_decode_mb (h, mb_type)) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
684 fprintf (stderr, "error while decoding MB %d %d\n", s->mb_x, s->mb_y);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
685 return -1;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
686 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
687
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
688 if (mb_type != 0) {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
689 hl_decode_mb (h);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
690 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
691 }
1268
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
692
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
693 ff_draw_horiz_band(s, 16*s->mb_y, 16);
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
694 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
695
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
696 *(AVFrame *) data = *(AVFrame *) &s->current_picture;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
697 *data_size = sizeof(AVFrame);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
698
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
699 MPV_frame_end(s);
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
700
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
701 return buf_size;
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
702 }
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
703
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
704
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
705 AVCodec svq3_decoder = {
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
706 "svq3",
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
707 CODEC_TYPE_VIDEO,
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
708 CODEC_ID_SVQ3,
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
709 sizeof(H264Context),
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
710 decode_init,
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
711 NULL,
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
712 decode_end,
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
713 svq3_decode_frame,
1268
fb865ca0c251 CODEC_CAP_DRAW_HORIZ_BAND
michaelni
parents: 1267
diff changeset
714 CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1,
1234
fc2a7eefa9cc svq3 decoder by anonymous
michaelni
parents:
diff changeset
715 };