Mercurial > libavcodec.hg
annotate svq3.c @ 8172:6cd416513c5a libavcodec
SH4: fix IDCT
author | mru |
---|---|
date | Wed, 19 Nov 2008 00:37:30 +0000 |
parents | 847bcb16028a |
children | f48a0ed93396 |
rev | line source |
---|---|
1234 | 1 /* |
2 * Copyright (c) 2003 The FFmpeg Project. | |
3 * | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
4 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
5 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
6 * FFmpeg is free software; you can redistribute it and/or |
1234 | 7 * modify it under the terms of the GNU Lesser General Public |
8 * License as published by the Free Software Foundation; either | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
9 * version 2.1 of the License, or (at your option) any later version. |
1234 | 10 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
11 * FFmpeg is distributed in the hope that it will be useful, |
1234 | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 * Lesser General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU Lesser General Public | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
17 * License along with FFmpeg; if not, write to the Free Software |
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2979
diff
changeset
|
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
5215 | 19 */ |
20 | |
21 /* | |
1234 | 22 * How to use this decoder: |
23 * 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
|
24 * 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
|
25 * 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
|
26 * 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
|
27 * 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
|
28 * 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
|
29 * the calling app must make the SVQ3 ImageDescription atom available |
1234 | 30 * via the AVCodecContext's extradata[_size] field: |
31 * | |
2967 | 32 * AVCodecContext.extradata = pointer to ImageDescription, first characters |
1235
8bb75c3c2f21
change the way the ImageDescription is passed to the decoder
tmmm
parents:
1234
diff
changeset
|
33 * are expected to be 'S', 'V', 'Q', and '3', NOT the 4-byte atom length |
2967 | 34 * AVCodecContext.extradata_size = size of ImageDescription atom memory |
35 * buffer (which will be the same as the ImageDescription atom size field | |
1235
8bb75c3c2f21
change the way the ImageDescription is passed to the decoder
tmmm
parents:
1234
diff
changeset
|
36 * 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
|
37 * |
8bb75c3c2f21
change the way the ImageDescription is passed to the decoder
tmmm
parents:
1234
diff
changeset
|
38 * 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
|
39 * correctly decodes this file: |
8bb75c3c2f21
change the way the ImageDescription is passed to the decoder
tmmm
parents:
1234
diff
changeset
|
40 * ftp://ftp.mplayerhq.hu/MPlayer/samples/V-codecs/SVQ3/Vertical400kbit.sorenson3.mov |
1234 | 41 */ |
2967 | 42 |
8067 | 43 #ifdef CONFIG_ZLIB |
44 #include <zlib.h> | |
45 #endif | |
46 | |
8080
847bcb16028a
Add the function declaration of ff_svq1_packet_checksum to svq1.h and include
diego
parents:
8067
diff
changeset
|
47 #include "svq1.h" |
847bcb16028a
Add the function declaration of ff_svq1_packet_checksum to svq1.h and include
diego
parents:
8067
diff
changeset
|
48 |
1234 | 49 /** |
50 * @file svq3.c | |
51 * svq3 decoder. | |
52 */ | |
53 | |
2967 | 54 #define FULLPEL_MODE 1 |
55 #define HALFPEL_MODE 2 | |
1265 | 56 #define THIRDPEL_MODE 3 |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
57 #define PREDICT_MODE 4 |
2967 | 58 |
1252 | 59 /* dual scan (from some older h264 draft) |
60 o-->o-->o o | |
61 | /| | |
62 o o o / o | |
63 | / | |/ | | |
64 o o o o | |
2967 | 65 / |
1252 | 66 o-->o-->o-->o |
67 */ | |
1234 | 68 static const uint8_t svq3_scan[16]={ |
69 0+0*4, 1+0*4, 2+0*4, 2+1*4, | |
70 2+2*4, 3+0*4, 3+1*4, 3+2*4, | |
71 0+1*4, 0+2*4, 1+1*4, 1+2*4, | |
72 0+3*4, 1+3*4, 2+3*4, 3+3*4, | |
73 }; | |
74 | |
75 static const uint8_t svq3_pred_0[25][2] = { | |
76 { 0, 0 }, | |
77 { 1, 0 }, { 0, 1 }, | |
78 { 0, 2 }, { 1, 1 }, { 2, 0 }, | |
79 { 3, 0 }, { 2, 1 }, { 1, 2 }, { 0, 3 }, | |
80 { 0, 4 }, { 1, 3 }, { 2, 2 }, { 3, 1 }, { 4, 0 }, | |
81 { 4, 1 }, { 3, 2 }, { 2, 3 }, { 1, 4 }, | |
82 { 2, 4 }, { 3, 3 }, { 4, 2 }, | |
83 { 4, 3 }, { 3, 4 }, | |
84 { 4, 4 } | |
85 }; | |
86 | |
87 static const int8_t svq3_pred_1[6][6][5] = { | |
88 { { 2,-1,-1,-1,-1 }, { 2, 1,-1,-1,-1 }, { 1, 2,-1,-1,-1 }, | |
89 { 2, 1,-1,-1,-1 }, { 1, 2,-1,-1,-1 }, { 1, 2,-1,-1,-1 } }, | |
90 { { 0, 2,-1,-1,-1 }, { 0, 2, 1, 4, 3 }, { 0, 1, 2, 4, 3 }, | |
91 { 0, 2, 1, 4, 3 }, { 2, 0, 1, 3, 4 }, { 0, 4, 2, 1, 3 } }, | |
92 { { 2, 0,-1,-1,-1 }, { 2, 1, 0, 4, 3 }, { 1, 2, 4, 0, 3 }, | |
93 { 2, 1, 0, 4, 3 }, { 2, 1, 4, 3, 0 }, { 1, 2, 4, 0, 3 } }, | |
94 { { 2, 0,-1,-1,-1 }, { 2, 0, 1, 4, 3 }, { 1, 2, 0, 4, 3 }, | |
95 { 2, 1, 0, 4, 3 }, { 2, 1, 3, 4, 0 }, { 2, 4, 1, 0, 3 } }, | |
96 { { 0, 2,-1,-1,-1 }, { 0, 2, 1, 3, 4 }, { 1, 2, 3, 0, 4 }, | |
97 { 2, 0, 1, 3, 4 }, { 2, 1, 3, 0, 4 }, { 2, 0, 4, 3, 1 } }, | |
98 { { 0, 2,-1,-1,-1 }, { 0, 2, 4, 1, 3 }, { 1, 4, 2, 0, 3 }, | |
99 { 4, 2, 0, 1, 3 }, { 2, 0, 1, 4, 3 }, { 4, 2, 1, 0, 3 } }, | |
100 }; | |
101 | |
102 static const struct { uint8_t run; uint8_t level; } svq3_dct_tables[2][16] = { | |
103 { { 0, 0 }, { 0, 1 }, { 1, 1 }, { 2, 1 }, { 0, 2 }, { 3, 1 }, { 4, 1 }, { 5, 1 }, | |
104 { 0, 3 }, { 1, 2 }, { 2, 2 }, { 6, 1 }, { 7, 1 }, { 8, 1 }, { 9, 1 }, { 0, 4 } }, | |
105 { { 0, 0 }, { 0, 1 }, { 1, 1 }, { 0, 2 }, { 2, 1 }, { 0, 3 }, { 0, 4 }, { 0, 5 }, | |
106 { 3, 1 }, { 4, 1 }, { 1, 2 }, { 1, 3 }, { 0, 6 }, { 0, 7 }, { 0, 8 }, { 0, 9 } } | |
107 }; | |
108 | |
109 static const uint32_t svq3_dequant_coeff[32] = { | |
110 3881, 4351, 4890, 5481, 6154, 6914, 7761, 8718, | |
111 9781, 10987, 12339, 13828, 15523, 17435, 19561, 21873, | |
112 24552, 27656, 30847, 34870, 38807, 43747, 49103, 54683, | |
113 61694, 68745, 77615, 89113,100253,109366,126635,141533 | |
114 }; | |
115 | |
116 | |
117 static void svq3_luma_dc_dequant_idct_c(DCTELEM *block, int qp){ | |
118 const int qmul= svq3_dequant_coeff[qp]; | |
119 #define stride 16 | |
120 int i; | |
121 int temp[16]; | |
122 static const int x_offset[4]={0, 1*stride, 4* stride, 5*stride}; | |
123 static const int y_offset[4]={0, 2*stride, 8* stride, 10*stride}; | |
124 | |
125 for(i=0; i<4; i++){ | |
126 const int offset= y_offset[i]; | |
127 const int z0= 13*(block[offset+stride*0] + block[offset+stride*4]); | |
128 const int z1= 13*(block[offset+stride*0] - block[offset+stride*4]); | |
129 const int z2= 7* block[offset+stride*1] - 17*block[offset+stride*5]; | |
130 const int z3= 17* block[offset+stride*1] + 7*block[offset+stride*5]; | |
131 | |
132 temp[4*i+0]= z0+z3; | |
133 temp[4*i+1]= z1+z2; | |
134 temp[4*i+2]= z1-z2; | |
135 temp[4*i+3]= z0-z3; | |
136 } | |
137 | |
138 for(i=0; i<4; i++){ | |
139 const int offset= x_offset[i]; | |
140 const int z0= 13*(temp[4*0+i] + temp[4*2+i]); | |
141 const int z1= 13*(temp[4*0+i] - temp[4*2+i]); | |
142 const int z2= 7* temp[4*1+i] - 17*temp[4*3+i]; | |
143 const int z3= 17* temp[4*1+i] + 7*temp[4*3+i]; | |
144 | |
145 block[stride*0 +offset]= ((z0 + z3)*qmul + 0x80000)>>20; | |
146 block[stride*2 +offset]= ((z1 + z2)*qmul + 0x80000)>>20; | |
147 block[stride*8 +offset]= ((z1 - z2)*qmul + 0x80000)>>20; | |
148 block[stride*10+offset]= ((z0 - z3)*qmul + 0x80000)>>20; | |
149 } | |
150 } | |
151 #undef stride | |
152 | |
153 static void svq3_add_idct_c (uint8_t *dst, DCTELEM *block, int stride, int qp, int dc){ | |
154 const int qmul= svq3_dequant_coeff[qp]; | |
155 int i; | |
4176 | 156 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; |
1234 | 157 |
158 if (dc) { | |
159 dc = 13*13*((dc == 1) ? 1538*block[0] : ((qmul*(block[0] >> 3)) / 2)); | |
160 block[0] = 0; | |
161 } | |
162 | |
163 for (i=0; i < 4; i++) { | |
164 const int z0= 13*(block[0 + 4*i] + block[2 + 4*i]); | |
165 const int z1= 13*(block[0 + 4*i] - block[2 + 4*i]); | |
166 const int z2= 7* block[1 + 4*i] - 17*block[3 + 4*i]; | |
167 const int z3= 17* block[1 + 4*i] + 7*block[3 + 4*i]; | |
168 | |
169 block[0 + 4*i]= z0 + z3; | |
170 block[1 + 4*i]= z1 + z2; | |
171 block[2 + 4*i]= z1 - z2; | |
172 block[3 + 4*i]= z0 - z3; | |
173 } | |
174 | |
175 for (i=0; i < 4; i++) { | |
176 const int z0= 13*(block[i + 4*0] + block[i + 4*2]); | |
177 const int z1= 13*(block[i + 4*0] - block[i + 4*2]); | |
178 const int z2= 7* block[i + 4*1] - 17*block[i + 4*3]; | |
179 const int z3= 17* block[i + 4*1] + 7*block[i + 4*3]; | |
180 const int rr= (dc + 0x80000); | |
181 | |
182 dst[i + stride*0]= cm[ dst[i + stride*0] + (((z0 + z3)*qmul + rr) >> 20) ]; | |
183 dst[i + stride*1]= cm[ dst[i + stride*1] + (((z1 + z2)*qmul + rr) >> 20) ]; | |
184 dst[i + stride*2]= cm[ dst[i + stride*2] + (((z1 - z2)*qmul + rr) >> 20) ]; | |
185 dst[i + stride*3]= cm[ dst[i + stride*3] + (((z0 - z3)*qmul + rr) >> 20) ]; | |
186 } | |
187 } | |
188 | |
189 static inline int svq3_decode_block (GetBitContext *gb, DCTELEM *block, | |
2979 | 190 int index, const int type) { |
1234 | 191 |
192 static const uint8_t *const scan_patterns[4] = | |
193 { luma_dc_zigzag_scan, zigzag_scan, svq3_scan, chroma_dc_scan }; | |
194 | |
195 int run, level, sign, vlc, limit; | |
196 const int intra = (3 * type) >> 2; | |
197 const uint8_t *const scan = scan_patterns[type]; | |
198 | |
199 for (limit=(16 >> intra); index < 16; index=limit, limit+=8) { | |
200 for (; (vlc = svq3_get_ue_golomb (gb)) != 0; index++) { | |
201 | |
202 if (vlc == INVALID_VLC) | |
2979 | 203 return -1; |
1234 | 204 |
205 sign = (vlc & 0x1) - 1; | |
206 vlc = (vlc + 1) >> 1; | |
207 | |
208 if (type == 3) { | |
2979 | 209 if (vlc < 3) { |
210 run = 0; | |
211 level = vlc; | |
212 } else if (vlc < 4) { | |
213 run = 1; | |
214 level = 1; | |
215 } else { | |
216 run = (vlc & 0x3); | |
217 level = ((vlc + 9) >> 2) - run; | |
218 } | |
1234 | 219 } else { |
2979 | 220 if (vlc < 16) { |
221 run = svq3_dct_tables[intra][vlc].run; | |
222 level = svq3_dct_tables[intra][vlc].level; | |
223 } else if (intra) { | |
224 run = (vlc & 0x7); | |
225 level = (vlc >> 3) + ((run == 0) ? 8 : ((run < 2) ? 2 : ((run < 5) ? 0 : -1))); | |
226 } else { | |
227 run = (vlc & 0xF); | |
228 level = (vlc >> 4) + ((run == 0) ? 4 : ((run < 3) ? 2 : ((run < 10) ? 1 : 0))); | |
229 } | |
1234 | 230 } |
231 | |
232 if ((index += run) >= limit) | |
2979 | 233 return -1; |
1234 | 234 |
235 block[scan[index]] = (level ^ sign) - sign; | |
236 } | |
237 | |
238 if (type != 2) { | |
239 break; | |
240 } | |
241 } | |
242 | |
243 return 0; | |
244 } | |
245 | |
1319 | 246 static inline void svq3_mc_dir_part (MpegEncContext *s, |
2979 | 247 int x, int y, int width, int height, |
248 int mx, int my, int dxy, | |
249 int thirdpel, int dir, int avg) { | |
1319 | 250 |
251 const Picture *pic = (dir == 0) ? &s->last_picture : &s->next_picture; | |
1234 | 252 uint8_t *src, *dest; |
253 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
|
254 int blocksize= 2 - (width>>3); //16->0, 8->1, 4->2 |
1234 | 255 |
1265 | 256 mx += x; |
257 my += y; | |
2967 | 258 |
1268 | 259 if (mx < 0 || mx >= (s->h_edge_pos - width - 1) || |
260 my < 0 || my >= (s->v_edge_pos - height - 1)) { | |
1234 | 261 |
262 if ((s->flags & CODEC_FLAG_EMU_EDGE)) { | |
263 emu = 1; | |
264 } | |
265 | |
4594 | 266 mx = av_clip (mx, -16, (s->h_edge_pos - width + 15)); |
267 my = av_clip (my, -16, (s->v_edge_pos - height + 15)); | |
1234 | 268 } |
269 | |
270 /* form component predictions */ | |
271 dest = s->current_picture.data[0] + x + y*s->linesize; | |
1319 | 272 src = pic->data[0] + mx + my*s->linesize; |
1234 | 273 |
274 if (emu) { | |
1321 | 275 ff_emulated_edge_mc (s->edge_emu_buffer, src, s->linesize, (width + 1), (height + 1), |
2979 | 276 mx, my, s->h_edge_pos, s->v_edge_pos); |
1234 | 277 src = s->edge_emu_buffer; |
278 } | |
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
|
279 if(thirdpel) |
1319 | 280 (avg ? s->dsp.avg_tpel_pixels_tab : s->dsp.put_tpel_pixels_tab)[dxy](dest, src, s->linesize, width, height); |
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
|
281 else |
1319 | 282 (avg ? s->dsp.avg_pixels_tab : s->dsp.put_pixels_tab)[blocksize][dxy](dest, src, s->linesize, height); |
1234 | 283 |
284 if (!(s->flags & CODEC_FLAG_GRAY)) { | |
2979 | 285 mx = (mx + (mx < (int) x)) >> 1; |
286 my = (my + (my < (int) y)) >> 1; | |
1234 | 287 width = (width >> 1); |
288 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
|
289 blocksize++; |
1234 | 290 |
291 for (i=1; i < 3; i++) { | |
292 dest = s->current_picture.data[i] + (x >> 1) + (y >> 1)*s->uvlinesize; | |
1319 | 293 src = pic->data[i] + mx + my*s->uvlinesize; |
1234 | 294 |
295 if (emu) { | |
1321 | 296 ff_emulated_edge_mc (s->edge_emu_buffer, src, s->uvlinesize, (width + 1), (height + 1), |
2979 | 297 mx, my, (s->h_edge_pos >> 1), (s->v_edge_pos >> 1)); |
1321 | 298 src = s->edge_emu_buffer; |
1234 | 299 } |
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
|
300 if(thirdpel) |
1319 | 301 (avg ? s->dsp.avg_tpel_pixels_tab : s->dsp.put_tpel_pixels_tab)[dxy](dest, src, s->uvlinesize, width, height); |
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
|
302 else |
1319 | 303 (avg ? s->dsp.avg_pixels_tab : s->dsp.put_pixels_tab)[blocksize][dxy](dest, src, s->uvlinesize, height); |
1234 | 304 } |
305 } | |
306 } | |
307 | |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
308 static inline int svq3_mc_dir (H264Context *h, int size, int mode, int dir, int avg) { |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
309 |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
310 int i, j, k, mx, my, dx, dy, x, y; |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
311 MpegEncContext *const s = (MpegEncContext *) h; |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
312 const int part_width = ((size & 5) == 4) ? 4 : 16 >> (size & 1); |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
313 const int part_height = 16 >> ((unsigned) (size + 1) / 3); |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
314 const int extra_width = (mode == PREDICT_MODE) ? -16*6 : 0; |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
315 const int h_edge_pos = 6*(s->h_edge_pos - part_width ) - extra_width; |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
316 const int v_edge_pos = 6*(s->v_edge_pos - part_height) - extra_width; |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
317 |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
318 for (i=0; i < 16; i+=part_height) { |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
319 for (j=0; j < 16; j+=part_width) { |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
320 const int b_xy = (4*s->mb_x+(j>>2)) + (4*s->mb_y+(i>>2))*h->b_stride; |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
321 int dxy; |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
322 x = 16*s->mb_x + j; |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
323 y = 16*s->mb_y + i; |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
324 k = ((j>>2)&1) + ((i>>1)&2) + ((j>>1)&4) + (i&8); |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
325 |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
326 if (mode != PREDICT_MODE) { |
2979 | 327 pred_motion (h, k, (part_width >> 2), dir, 1, &mx, &my); |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
328 } else { |
2979 | 329 mx = s->next_picture.motion_val[0][b_xy][0]<<1; |
330 my = s->next_picture.motion_val[0][b_xy][1]<<1; | |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
331 |
2979 | 332 if (dir == 0) { |
333 mx = ((mx * h->frame_num_offset) / h->prev_frame_num_offset + 1)>>1; | |
334 my = ((my * h->frame_num_offset) / h->prev_frame_num_offset + 1)>>1; | |
335 } else { | |
336 mx = ((mx * (h->frame_num_offset - h->prev_frame_num_offset)) / h->prev_frame_num_offset + 1)>>1; | |
337 my = ((my * (h->frame_num_offset - h->prev_frame_num_offset)) / h->prev_frame_num_offset + 1)>>1; | |
338 } | |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
339 } |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
340 |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
341 /* clip motion vector prediction to frame border */ |
4594 | 342 mx = av_clip (mx, extra_width - 6*x, h_edge_pos - 6*x); |
343 my = av_clip (my, extra_width - 6*y, v_edge_pos - 6*y); | |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
344 |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
345 /* get (optional) motion vector differential */ |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
346 if (mode == PREDICT_MODE) { |
2979 | 347 dx = dy = 0; |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
348 } else { |
2979 | 349 dy = svq3_get_se_golomb (&s->gb); |
350 dx = svq3_get_se_golomb (&s->gb); | |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
351 |
2979 | 352 if (dx == INVALID_VLC || dy == INVALID_VLC) { |
2452 | 353 av_log(h->s.avctx, AV_LOG_ERROR, "invalid MV vlc\n"); |
2979 | 354 return -1; |
355 } | |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
356 } |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
357 |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
358 /* compute motion vector */ |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
359 if (mode == THIRDPEL_MODE) { |
2979 | 360 int fx, fy; |
361 mx = ((mx + 1)>>1) + dx; | |
362 my = ((my + 1)>>1) + dy; | |
363 fx= ((unsigned)(mx + 0x3000))/3 - 0x1000; | |
364 fy= ((unsigned)(my + 0x3000))/3 - 0x1000; | |
365 dxy= (mx - 3*fx) + 4*(my - 3*fy); | |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
366 |
2979 | 367 svq3_mc_dir_part (s, x, y, part_width, part_height, fx, fy, dxy, 1, dir, avg); |
368 mx += mx; | |
369 my += my; | |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
370 } else if (mode == HALFPEL_MODE || mode == PREDICT_MODE) { |
2979 | 371 mx = ((unsigned)(mx + 1 + 0x3000))/3 + dx - 0x1000; |
372 my = ((unsigned)(my + 1 + 0x3000))/3 + dy - 0x1000; | |
373 dxy= (mx&1) + 2*(my&1); | |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
374 |
2979 | 375 svq3_mc_dir_part (s, x, y, part_width, part_height, mx>>1, my>>1, dxy, 0, dir, avg); |
376 mx *= 3; | |
377 my *= 3; | |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
378 } else { |
2979 | 379 mx = ((unsigned)(mx + 3 + 0x6000))/6 + dx - 0x1000; |
380 my = ((unsigned)(my + 3 + 0x6000))/6 + dy - 0x1000; | |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
381 |
2979 | 382 svq3_mc_dir_part (s, x, y, part_width, part_height, mx, my, 0, 0, dir, avg); |
383 mx *= 6; | |
384 my *= 6; | |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
385 } |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
386 |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
387 /* update mv_cache */ |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
388 if (mode != PREDICT_MODE) { |
2979 | 389 int32_t mv = pack16to32(mx,my); |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
390 |
2979 | 391 if (part_height == 8 && i < 8) { |
392 *(int32_t *) h->mv_cache[dir][scan8[k] + 1*8] = mv; | |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
393 |
2979 | 394 if (part_width == 8 && j < 8) { |
395 *(int32_t *) h->mv_cache[dir][scan8[k] + 1 + 1*8] = mv; | |
396 } | |
397 } | |
398 if (part_width == 8 && j < 8) { | |
399 *(int32_t *) h->mv_cache[dir][scan8[k] + 1] = mv; | |
400 } | |
401 if (part_width == 4 || part_height == 4) { | |
402 *(int32_t *) h->mv_cache[dir][scan8[k]] = mv; | |
403 } | |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
404 } |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
405 |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
406 /* write back motion vectors */ |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
407 fill_rectangle(s->current_picture.motion_val[dir][b_xy], part_width>>2, part_height>>2, h->b_stride, pack16to32(mx,my), 4); |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
408 } |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
409 } |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
410 |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
411 return 0; |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
412 } |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
413 |
1234 | 414 static int svq3_decode_mb (H264Context *h, unsigned int mb_type) { |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
415 int i, j, k, m, dir, mode; |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
416 int cbp = 0; |
1234 | 417 uint32_t vlc; |
418 int8_t *top, *left; | |
419 MpegEncContext *const s = (MpegEncContext *) h; | |
6787 | 420 const int mb_xy = h->mb_xy; |
1234 | 421 const int b_xy = 4*s->mb_x + 4*s->mb_y*h->b_stride; |
422 | |
2979 | 423 h->top_samples_available = (s->mb_y == 0) ? 0x33FF : 0xFFFF; |
424 h->left_samples_available = (s->mb_x == 0) ? 0x5F5F : 0xFFFF; | |
425 h->topright_samples_available = 0xFFFF; | |
1234 | 426 |
2979 | 427 if (mb_type == 0) { /* SKIP */ |
6481 | 428 if (s->pict_type == FF_P_TYPE || s->next_picture.mb_type[mb_xy] == -1) { |
1319 | 429 svq3_mc_dir_part (s, 16*s->mb_x, 16*s->mb_y, 16, 16, 0, 0, 0, 0, 0, 0); |
430 | |
6481 | 431 if (s->pict_type == FF_B_TYPE) { |
2979 | 432 svq3_mc_dir_part (s, 16*s->mb_x, 16*s->mb_y, 16, 16, 0, 0, 0, 0, 1, 1); |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
433 } |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
434 |
1319 | 435 mb_type = MB_TYPE_SKIP; |
436 } else { | |
2088
19d4d5c6a8f4
1000l to myself for FFMIN(...,0) instead of ...,6)
michael
parents:
2086
diff
changeset
|
437 mb_type= FFMIN(s->next_picture.mb_type[mb_xy], 6); |
19d4d5c6a8f4
1000l to myself for FFMIN(...,0) instead of ...,6)
michael
parents:
2086
diff
changeset
|
438 if(svq3_mc_dir (h, mb_type, PREDICT_MODE, 0, 0) < 0) |
19d4d5c6a8f4
1000l to myself for FFMIN(...,0) instead of ...,6)
michael
parents:
2086
diff
changeset
|
439 return -1; |
19d4d5c6a8f4
1000l to myself for FFMIN(...,0) instead of ...,6)
michael
parents:
2086
diff
changeset
|
440 if(svq3_mc_dir (h, mb_type, PREDICT_MODE, 1, 1) < 0) |
19d4d5c6a8f4
1000l to myself for FFMIN(...,0) instead of ...,6)
michael
parents:
2086
diff
changeset
|
441 return -1; |
1319 | 442 |
443 mb_type = MB_TYPE_16x16; | |
444 } | |
2979 | 445 } else if (mb_type < 8) { /* INTER */ |
5513 | 446 if (h->thirdpel_flag && h->halfpel_flag == !get_bits1 (&s->gb)) { |
1265 | 447 mode = THIRDPEL_MODE; |
5513 | 448 } else if (h->halfpel_flag && h->thirdpel_flag == !get_bits1 (&s->gb)) { |
1265 | 449 mode = HALFPEL_MODE; |
1234 | 450 } else { |
1265 | 451 mode = FULLPEL_MODE; |
1234 | 452 } |
453 | |
454 /* fill caches */ | |
1319 | 455 /* note ref_cache should contain here: |
1252 | 456 ???????? |
457 ???11111 | |
458 N??11111 | |
459 N??11111 | |
460 N??11111 | |
461 */ | |
2967 | 462 |
1319 | 463 for (m=0; m < 2; m++) { |
464 if (s->mb_x > 0 && h->intra4x4_pred_mode[mb_xy - 1][0] != -1) { | |
2979 | 465 for (i=0; i < 4; i++) { |
466 *(uint32_t *) h->mv_cache[m][scan8[0] - 1 + i*8] = *(uint32_t *) s->current_picture.motion_val[m][b_xy - 1 + i*h->b_stride]; | |
467 } | |
1319 | 468 } else { |
2979 | 469 for (i=0; i < 4; i++) { |
470 *(uint32_t *) h->mv_cache[m][scan8[0] - 1 + i*8] = 0; | |
471 } | |
1234 | 472 } |
1319 | 473 if (s->mb_y > 0) { |
2979 | 474 memcpy (h->mv_cache[m][scan8[0] - 1*8], s->current_picture.motion_val[m][b_xy - h->b_stride], 4*2*sizeof(int16_t)); |
475 memset (&h->ref_cache[m][scan8[0] - 1*8], (h->intra4x4_pred_mode[mb_xy - s->mb_stride][4] == -1) ? PART_NOT_AVAILABLE : 1, 4); | |
1234 | 476 |
2979 | 477 if (s->mb_x < (s->mb_width - 1)) { |
478 *(uint32_t *) h->mv_cache[m][scan8[0] + 4 - 1*8] = *(uint32_t *) s->current_picture.motion_val[m][b_xy - h->b_stride + 4]; | |
479 h->ref_cache[m][scan8[0] + 4 - 1*8] = | |
480 (h->intra4x4_pred_mode[mb_xy - s->mb_stride + 1][0] == -1 || | |
481 h->intra4x4_pred_mode[mb_xy - s->mb_stride][4] == -1) ? PART_NOT_AVAILABLE : 1; | |
482 }else | |
483 h->ref_cache[m][scan8[0] + 4 - 1*8] = PART_NOT_AVAILABLE; | |
484 if (s->mb_x > 0) { | |
485 *(uint32_t *) h->mv_cache[m][scan8[0] - 1 - 1*8] = *(uint32_t *) s->current_picture.motion_val[m][b_xy - h->b_stride - 1]; | |
486 h->ref_cache[m][scan8[0] - 1 - 1*8] = (h->intra4x4_pred_mode[mb_xy - s->mb_stride - 1][3] == -1) ? PART_NOT_AVAILABLE : 1; | |
487 }else | |
488 h->ref_cache[m][scan8[0] - 1 - 1*8] = PART_NOT_AVAILABLE; | |
1252 | 489 }else |
2979 | 490 memset (&h->ref_cache[m][scan8[0] - 1*8 - 1], PART_NOT_AVAILABLE, 8); |
1319 | 491 |
6481 | 492 if (s->pict_type != FF_B_TYPE) |
2979 | 493 break; |
1319 | 494 } |
1234 | 495 |
496 /* decode motion vector(s) and form prediction(s) */ | |
6481 | 497 if (s->pict_type == FF_P_TYPE) { |
2088
19d4d5c6a8f4
1000l to myself for FFMIN(...,0) instead of ...,6)
michael
parents:
2086
diff
changeset
|
498 if(svq3_mc_dir (h, (mb_type - 1), mode, 0, 0) < 0) |
19d4d5c6a8f4
1000l to myself for FFMIN(...,0) instead of ...,6)
michael
parents:
2086
diff
changeset
|
499 return -1; |
6481 | 500 } else { /* FF_B_TYPE */ |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
501 if (mb_type != 2) { |
2979 | 502 if(svq3_mc_dir (h, 0, mode, 0, 0) < 0) |
2088
19d4d5c6a8f4
1000l to myself for FFMIN(...,0) instead of ...,6)
michael
parents:
2086
diff
changeset
|
503 return -1; |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
504 } else { |
2979 | 505 for (i=0; i < 4; i++) { |
506 memset (s->current_picture.motion_val[0][b_xy + i*h->b_stride], 0, 4*2*sizeof(int16_t)); | |
507 } | |
1234 | 508 } |
1319 | 509 if (mb_type != 1) { |
2979 | 510 if(svq3_mc_dir (h, 0, mode, 1, (mb_type == 3)) < 0) |
2088
19d4d5c6a8f4
1000l to myself for FFMIN(...,0) instead of ...,6)
michael
parents:
2086
diff
changeset
|
511 return -1; |
1319 | 512 } else { |
2979 | 513 for (i=0; i < 4; i++) { |
514 memset (s->current_picture.motion_val[1][b_xy + i*h->b_stride], 0, 4*2*sizeof(int16_t)); | |
515 } | |
1319 | 516 } |
1234 | 517 } |
518 | |
519 mb_type = MB_TYPE_16x16; | |
2979 | 520 } else if (mb_type == 8 || mb_type == 33) { /* INTRA4x4 */ |
1234 | 521 memset (h->intra4x4_pred_mode_cache, -1, 8*5*sizeof(int8_t)); |
522 | |
1319 | 523 if (mb_type == 8) { |
524 if (s->mb_x > 0) { | |
2979 | 525 for (i=0; i < 4; i++) { |
526 h->intra4x4_pred_mode_cache[scan8[0] - 1 + i*8] = h->intra4x4_pred_mode[mb_xy - 1][i]; | |
527 } | |
528 if (h->intra4x4_pred_mode_cache[scan8[0] - 1] == -1) { | |
529 h->left_samples_available = 0x5F5F; | |
530 } | |
1234 | 531 } |
1319 | 532 if (s->mb_y > 0) { |
2979 | 533 h->intra4x4_pred_mode_cache[4+8*0] = h->intra4x4_pred_mode[mb_xy - s->mb_stride][4]; |
534 h->intra4x4_pred_mode_cache[5+8*0] = h->intra4x4_pred_mode[mb_xy - s->mb_stride][5]; | |
535 h->intra4x4_pred_mode_cache[6+8*0] = h->intra4x4_pred_mode[mb_xy - s->mb_stride][6]; | |
536 h->intra4x4_pred_mode_cache[7+8*0] = h->intra4x4_pred_mode[mb_xy - s->mb_stride][3]; | |
1319 | 537 |
2979 | 538 if (h->intra4x4_pred_mode_cache[4+8*0] == -1) { |
539 h->top_samples_available = 0x33FF; | |
540 } | |
1319 | 541 } |
1234 | 542 |
1319 | 543 /* decode prediction codes for luma blocks */ |
544 for (i=0; i < 16; i+=2) { | |
2979 | 545 vlc = svq3_get_ue_golomb (&s->gb); |
1234 | 546 |
2979 | 547 if (vlc >= 25){ |
2452 | 548 av_log(h->s.avctx, AV_LOG_ERROR, "luma prediction:%d\n", vlc); |
2979 | 549 return -1; |
2452 | 550 } |
1319 | 551 |
2979 | 552 left = &h->intra4x4_pred_mode_cache[scan8[i] - 1]; |
553 top = &h->intra4x4_pred_mode_cache[scan8[i] - 8]; | |
1234 | 554 |
2979 | 555 left[1] = svq3_pred_1[top[0] + 1][left[0] + 1][svq3_pred_0[vlc][0]]; |
556 left[2] = svq3_pred_1[top[1] + 1][left[1] + 1][svq3_pred_0[vlc][1]]; | |
1234 | 557 |
2979 | 558 if (left[1] == -1 || left[2] == -1){ |
2452 | 559 av_log(h->s.avctx, AV_LOG_ERROR, "weird prediction\n"); |
2979 | 560 return -1; |
2452 | 561 } |
1319 | 562 } |
2979 | 563 } else { /* mb_type == 33, DC_128_PRED block type */ |
1319 | 564 for (i=0; i < 4; i++) { |
2979 | 565 memset (&h->intra4x4_pred_mode_cache[scan8[0] + 8*i], DC_PRED, 4); |
1319 | 566 } |
1234 | 567 } |
568 | |
569 write_back_intra_pred_mode (h); | |
1319 | 570 |
571 if (mb_type == 8) { | |
572 check_intra4x4_pred_mode (h); | |
573 | |
574 h->top_samples_available = (s->mb_y == 0) ? 0x33FF : 0xFFFF; | |
575 h->left_samples_available = (s->mb_x == 0) ? 0x5F5F : 0xFFFF; | |
576 } else { | |
577 for (i=0; i < 4; i++) { | |
578 memset (&h->intra4x4_pred_mode_cache[scan8[0] + 8*i], DC_128_PRED, 4); | |
579 } | |
580 | |
581 h->top_samples_available = 0x33FF; | |
582 h->left_samples_available = 0x5F5F; | |
583 } | |
1234 | 584 |
585 mb_type = MB_TYPE_INTRA4x4; | |
2979 | 586 } else { /* INTRA16x16 */ |
1234 | 587 dir = i_mb_type_info[mb_type - 8].pred_mode; |
588 dir = (dir >> 1) ^ 3*(dir & 1) ^ 1; | |
589 | |
2452 | 590 if ((h->intra16x16_pred_mode = check_intra_pred_mode (h, dir)) == -1){ |
591 av_log(h->s.avctx, AV_LOG_ERROR, "check_intra_pred_mode = -1\n"); | |
1234 | 592 return -1; |
2452 | 593 } |
1234 | 594 |
595 cbp = i_mb_type_info[mb_type - 8].cbp; | |
596 mb_type = MB_TYPE_INTRA16x16; | |
597 } | |
598 | |
6481 | 599 if (!IS_INTER(mb_type) && s->pict_type != FF_I_TYPE) { |
1234 | 600 for (i=0; i < 4; i++) { |
601 memset (s->current_picture.motion_val[0][b_xy + i*h->b_stride], 0, 4*2*sizeof(int16_t)); | |
602 } | |
6481 | 603 if (s->pict_type == FF_B_TYPE) { |
1319 | 604 for (i=0; i < 4; i++) { |
2979 | 605 memset (s->current_picture.motion_val[1][b_xy + i*h->b_stride], 0, 4*2*sizeof(int16_t)); |
1319 | 606 } |
607 } | |
1234 | 608 } |
609 if (!IS_INTRA4x4(mb_type)) { | |
610 memset (h->intra4x4_pred_mode[mb_xy], DC_PRED, 8); | |
611 } | |
6481 | 612 if (!IS_SKIP(mb_type) || s->pict_type == FF_B_TYPE) { |
1252 | 613 memset (h->non_zero_count_cache + 8, 0, 4*9*sizeof(uint8_t)); |
614 s->dsp.clear_blocks(h->mb); | |
1234 | 615 } |
616 | |
6481 | 617 if (!IS_INTRA16x16(mb_type) && (!IS_SKIP(mb_type) || s->pict_type == FF_B_TYPE)) { |
2452 | 618 if ((vlc = svq3_get_ue_golomb (&s->gb)) >= 48){ |
619 av_log(h->s.avctx, AV_LOG_ERROR, "cbp_vlc=%d\n", vlc); | |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
620 return -1; |
2452 | 621 } |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
622 |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
623 cbp = IS_INTRA(mb_type) ? golomb_to_intra4x4_cbp[vlc] : golomb_to_inter_cbp[vlc]; |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
624 } |
6481 | 625 if (IS_INTRA16x16(mb_type) || (s->pict_type != FF_I_TYPE && s->adaptive_quant && cbp)) { |
1234 | 626 s->qscale += svq3_get_se_golomb (&s->gb); |
627 | |
2452 | 628 if (s->qscale > 31){ |
629 av_log(h->s.avctx, AV_LOG_ERROR, "qscale:%d\n", s->qscale); | |
1234 | 630 return -1; |
2452 | 631 } |
1234 | 632 } |
633 if (IS_INTRA16x16(mb_type)) { | |
2452 | 634 if (svq3_decode_block (&s->gb, h->mb, 0, 0)){ |
635 av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding intra luma dc\n"); | |
1234 | 636 return -1; |
2452 | 637 } |
1234 | 638 } |
639 | |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
640 if (cbp) { |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
641 const int index = IS_INTRA16x16(mb_type) ? 1 : 0; |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
642 const int type = ((s->qscale < 24 && IS_INTRA4x4(mb_type)) ? 2 : 1); |
1234 | 643 |
644 for (i=0; i < 4; i++) { | |
645 if ((cbp & (1 << i))) { | |
2979 | 646 for (j=0; j < 4; j++) { |
647 k = index ? ((j&1) + 2*(i&1) + 2*(j&2) + 4*(i&2)) : (4*i + j); | |
648 h->non_zero_count_cache[ scan8[k] ] = 1; | |
1234 | 649 |
2979 | 650 if (svq3_decode_block (&s->gb, &h->mb[16*k], index, type)){ |
2452 | 651 av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding block\n"); |
2979 | 652 return -1; |
2452 | 653 } |
2979 | 654 } |
1234 | 655 } |
656 } | |
657 | |
658 if ((cbp & 0x30)) { | |
659 for (i=0; i < 2; ++i) { | |
2979 | 660 if (svq3_decode_block (&s->gb, &h->mb[16*(16 + 4*i)], 0, 3)){ |
2452 | 661 av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding chroma dc block\n"); |
2979 | 662 return -1; |
2452 | 663 } |
1234 | 664 } |
665 | |
666 if ((cbp & 0x20)) { | |
2979 | 667 for (i=0; i < 8; i++) { |
668 h->non_zero_count_cache[ scan8[16+i] ] = 1; | |
1234 | 669 |
2979 | 670 if (svq3_decode_block (&s->gb, &h->mb[16*(16 + i)], 1, 1)){ |
2452 | 671 av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding chroma ac block\n"); |
2979 | 672 return -1; |
2452 | 673 } |
2979 | 674 } |
1234 | 675 } |
676 } | |
677 } | |
678 | |
679 s->current_picture.mb_type[mb_xy] = mb_type; | |
680 | |
681 if (IS_INTRA(mb_type)) { | |
682 h->chroma_pred_mode = check_intra_pred_mode (h, DC_PRED8x8); | |
683 } | |
684 | |
685 return 0; | |
686 } | |
687 | |
1319 | 688 static int svq3_decode_slice_header (H264Context *h) { |
689 MpegEncContext *const s = (MpegEncContext *) h; | |
6789
8107e891b226
Previous commit missed an initialization - this fixes FATE's test sample.
astrange
parents:
6787
diff
changeset
|
690 const int mb_xy = h->mb_xy; |
1319 | 691 int i, header; |
692 | |
693 header = get_bits (&s->gb, 8); | |
694 | |
695 if (((header & 0x9F) != 1 && (header & 0x9F) != 2) || (header & 0x60) == 0) { | |
696 /* TODO: what? */ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1330
diff
changeset
|
697 av_log(h->s.avctx, AV_LOG_ERROR, "unsupported slice header (%02X)\n", header); |
1319 | 698 return -1; |
699 } else { | |
700 int length = (header >> 5) & 3; | |
701 | |
2614
5e24800ab329
various fixes related to the non alt_bitstream_reader
michael
parents:
2453
diff
changeset
|
702 h->next_slice_index = get_bits_count(&s->gb) + 8*show_bits (&s->gb, 8*length) + 8*length; |
1319 | 703 |
1754
bdf3927bf8c5
closed gop support & flags2 as all bits in flags are used
michael
parents:
1699
diff
changeset
|
704 if (h->next_slice_index > s->gb.size_in_bits){ |
bdf3927bf8c5
closed gop support & flags2 as all bits in flags are used
michael
parents:
1699
diff
changeset
|
705 av_log(h->s.avctx, AV_LOG_ERROR, "slice after bitstream end\n"); |
1319 | 706 return -1; |
1754
bdf3927bf8c5
closed gop support & flags2 as all bits in flags are used
michael
parents:
1699
diff
changeset
|
707 } |
1319 | 708 |
709 s->gb.size_in_bits = h->next_slice_index - 8*(length - 1); | |
2614
5e24800ab329
various fixes related to the non alt_bitstream_reader
michael
parents:
2453
diff
changeset
|
710 skip_bits(&s->gb, 8); |
1319 | 711 |
8066
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
712 if (h->svq3_watermark_key) { |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
713 uint32_t header = AV_RL32(&s->gb.buffer[(get_bits_count(&s->gb)>>3)+1]); |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
714 AV_WL32(&s->gb.buffer[(get_bits_count(&s->gb)>>3)+1], header ^ h->svq3_watermark_key); |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
715 } |
1319 | 716 if (length > 0) { |
7291 | 717 memcpy ((uint8_t *) &s->gb.buffer[get_bits_count(&s->gb) >> 3], |
1319 | 718 &s->gb.buffer[s->gb.size_in_bits >> 3], (length - 1)); |
719 } | |
720 } | |
721 | |
1754
bdf3927bf8c5
closed gop support & flags2 as all bits in flags are used
michael
parents:
1699
diff
changeset
|
722 if ((i = svq3_get_ue_golomb (&s->gb)) == INVALID_VLC || i >= 3){ |
bdf3927bf8c5
closed gop support & flags2 as all bits in flags are used
michael
parents:
1699
diff
changeset
|
723 av_log(h->s.avctx, AV_LOG_ERROR, "illegal slice type %d \n", i); |
1319 | 724 return -1; |
1754
bdf3927bf8c5
closed gop support & flags2 as all bits in flags are used
michael
parents:
1699
diff
changeset
|
725 } |
1319 | 726 |
727 h->slice_type = golomb_to_pict_type[i]; | |
728 | |
729 if ((header & 0x9F) == 2) { | |
730 i = (s->mb_num < 64) ? 6 : (1 + av_log2 (s->mb_num - 1)); | |
731 s->mb_skip_run = get_bits (&s->gb, i) - (s->mb_x + (s->mb_y * s->mb_width)); | |
732 } else { | |
5519 | 733 skip_bits1 (&s->gb); |
1319 | 734 s->mb_skip_run = 0; |
735 } | |
736 | |
737 h->slice_num = get_bits (&s->gb, 8); | |
738 s->qscale = get_bits (&s->gb, 5); | |
739 s->adaptive_quant = get_bits1 (&s->gb); | |
740 | |
741 /* unknown fields */ | |
5519 | 742 skip_bits1 (&s->gb); |
1319 | 743 |
744 if (h->unknown_svq3_flag) { | |
5519 | 745 skip_bits1 (&s->gb); |
1319 | 746 } |
747 | |
5519 | 748 skip_bits1 (&s->gb); |
749 skip_bits (&s->gb, 2); | |
1319 | 750 |
751 while (get_bits1 (&s->gb)) { | |
5519 | 752 skip_bits (&s->gb, 8); |
1319 | 753 } |
754 | |
755 /* reset intra predictors and invalidate motion vector references */ | |
756 if (s->mb_x > 0) { | |
757 memset (h->intra4x4_pred_mode[mb_xy - 1], -1, 4*sizeof(int8_t)); | |
758 memset (h->intra4x4_pred_mode[mb_xy - s->mb_x], -1, 8*sizeof(int8_t)*s->mb_x); | |
759 } | |
760 if (s->mb_y > 0) { | |
761 memset (h->intra4x4_pred_mode[mb_xy - s->mb_stride], -1, 8*sizeof(int8_t)*(s->mb_width - s->mb_x)); | |
762 | |
763 if (s->mb_x > 0) { | |
764 h->intra4x4_pred_mode[mb_xy - s->mb_stride - 1][3] = -1; | |
765 } | |
766 } | |
767 | |
768 return 0; | |
769 } | |
770 | |
1234 | 771 static int svq3_decode_frame (AVCodecContext *avctx, |
2979 | 772 void *data, int *data_size, |
6216 | 773 const uint8_t *buf, int buf_size) { |
1234 | 774 MpegEncContext *const s = avctx->priv_data; |
775 H264Context *const h = avctx->priv_data; | |
1319 | 776 int m, mb_type; |
1877
869256817a91
smarten up the SVQ3 extradata decoder without changing the external API
melanson
parents:
1754
diff
changeset
|
777 unsigned char *extradata; |
1878
838c18d1e7fc
be smarter about the variable size of the extra SVQ3 data
melanson
parents:
1877
diff
changeset
|
778 unsigned int size; |
1319 | 779 |
1234 | 780 s->flags = avctx->flags; |
1754
bdf3927bf8c5
closed gop support & flags2 as all bits in flags are used
michael
parents:
1699
diff
changeset
|
781 s->flags2 = avctx->flags2; |
1699 | 782 s->unrestricted_mv = 1; |
783 | |
1234 | 784 if (!s->context_initialized) { |
1268 | 785 s->width = avctx->width; |
786 s->height = avctx->height; | |
1234 | 787 h->halfpel_flag = 1; |
788 h->thirdpel_flag = 1; | |
1319 | 789 h->unknown_svq3_flag = 0; |
5231
07a97575d0c4
Add support for streams with different chroma_qp_index_offset
gpoirier
parents:
5215
diff
changeset
|
790 h->chroma_qp[0] = h->chroma_qp[1] = 4; |
1234 | 791 |
792 if (MPV_common_init (s) < 0) | |
793 return -1; | |
794 | |
1268 | 795 h->b_stride = 4*s->mb_width; |
796 | |
1234 | 797 alloc_tables (h); |
1319 | 798 |
1877
869256817a91
smarten up the SVQ3 extradata decoder without changing the external API
melanson
parents:
1754
diff
changeset
|
799 /* prowl for the "SEQH" marker in the extradata */ |
869256817a91
smarten up the SVQ3 extradata decoder without changing the external API
melanson
parents:
1754
diff
changeset
|
800 extradata = (unsigned char *)avctx->extradata; |
869256817a91
smarten up the SVQ3 extradata decoder without changing the external API
melanson
parents:
1754
diff
changeset
|
801 for (m = 0; m < avctx->extradata_size; m++) { |
869256817a91
smarten up the SVQ3 extradata decoder without changing the external API
melanson
parents:
1754
diff
changeset
|
802 if (!memcmp (extradata, "SEQH", 4)) |
869256817a91
smarten up the SVQ3 extradata decoder without changing the external API
melanson
parents:
1754
diff
changeset
|
803 break; |
869256817a91
smarten up the SVQ3 extradata decoder without changing the external API
melanson
parents:
1754
diff
changeset
|
804 extradata++; |
869256817a91
smarten up the SVQ3 extradata decoder without changing the external API
melanson
parents:
1754
diff
changeset
|
805 } |
1878
838c18d1e7fc
be smarter about the variable size of the extra SVQ3 data
melanson
parents:
1877
diff
changeset
|
806 |
1877
869256817a91
smarten up the SVQ3 extradata decoder without changing the external API
melanson
parents:
1754
diff
changeset
|
807 /* if a match was found, parse the extra data */ |
4392
e0c94f1b8f55
maybe fix segfault with missing extradata (unchecked)
michael
parents:
4364
diff
changeset
|
808 if (extradata && !memcmp (extradata, "SEQH", 4)) { |
1319 | 809 |
810 GetBitContext gb; | |
1234 | 811 |
4364 | 812 size = AV_RB32(&extradata[4]); |
2966
564788471dd4
bitstream related fixes from [PATCH] from DivX, Part 9: bitstream crashes by (Steve Lhomme | slhomme divxcorp com)
michael
parents:
2792
diff
changeset
|
813 init_get_bits (&gb, extradata + 8, size*8); |
1234 | 814 |
1319 | 815 /* 'frame size code' and optional 'width, height' */ |
816 if (get_bits (&gb, 3) == 7) { | |
5519 | 817 skip_bits (&gb, 12); |
818 skip_bits (&gb, 12); | |
1234 | 819 } |
820 | |
1319 | 821 h->halfpel_flag = get_bits1 (&gb); |
822 h->thirdpel_flag = get_bits1 (&gb); | |
823 | |
824 /* unknown fields */ | |
5519 | 825 skip_bits1 (&gb); |
826 skip_bits1 (&gb); | |
827 skip_bits1 (&gb); | |
828 skip_bits1 (&gb); | |
1319 | 829 |
830 s->low_delay = get_bits1 (&gb); | |
831 | |
832 /* unknown field */ | |
5519 | 833 skip_bits1 (&gb); |
1319 | 834 |
835 while (get_bits1 (&gb)) { | |
5519 | 836 skip_bits (&gb, 8); |
1319 | 837 } |
838 | |
839 h->unknown_svq3_flag = get_bits1 (&gb); | |
840 avctx->has_b_frames = !s->low_delay; | |
8066
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
841 if (h->unknown_svq3_flag) { |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
842 #ifdef CONFIG_ZLIB |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
843 unsigned watermark_width = svq3_get_ue_golomb(&gb); |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
844 unsigned watermark_height = svq3_get_ue_golomb(&gb); |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
845 int u1 = svq3_get_ue_golomb(&gb); |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
846 int u2 = get_bits(&gb, 8); |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
847 int u3 = get_bits(&gb, 2); |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
848 int u4 = svq3_get_ue_golomb(&gb); |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
849 unsigned buf_len = watermark_width*watermark_height*4; |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
850 int offset = (get_bits_count(&gb)+7)>>3; |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
851 uint8_t *buf; |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
852 |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
853 if ((uint64_t)watermark_width*4 > UINT_MAX/watermark_height) |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
854 return -1; |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
855 |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
856 buf = av_malloc(buf_len); |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
857 av_log(avctx, AV_LOG_DEBUG, "watermark size: %dx%d\n", watermark_width, watermark_height); |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
858 av_log(avctx, AV_LOG_DEBUG, "u1: %x u2: %x u3: %x compressed data size: %d offset: %d\n", u1, u2, u3, u4, offset); |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
859 if (uncompress(buf, (uLong*)&buf_len, extradata + 8 + offset, size - offset) != Z_OK) { |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
860 av_log(avctx, AV_LOG_ERROR, "could not uncompress watermark logo\n"); |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
861 av_free(buf); |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
862 return -1; |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
863 } |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
864 h->svq3_watermark_key = ff_svq1_packet_checksum(buf, buf_len, 0); |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
865 h->svq3_watermark_key = h->svq3_watermark_key << 16 | h->svq3_watermark_key; |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
866 av_log(avctx, AV_LOG_DEBUG, "watermark key %#x\n", h->svq3_watermark_key); |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
867 av_free(buf); |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
868 #else |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
869 av_log(avctx, AV_LOG_ERROR, "this svq3 file contains watermark which need zlib support compiled in\n"); |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
870 return -1; |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
871 #endif |
94fa05bc0390
svq3 watermark decoding support, based on reverse engineering work by chrono
bcoudurier
parents:
8059
diff
changeset
|
872 } |
1234 | 873 } |
874 } | |
875 | |
1319 | 876 /* special case for last picture */ |
877 if (buf_size == 0) { | |
878 if (s->next_picture_ptr && !s->low_delay) { | |
879 *(AVFrame *) data = *(AVFrame *) &s->next_picture; | |
7276 | 880 s->next_picture_ptr= NULL; |
1319 | 881 *data_size = sizeof(AVFrame); |
1234 | 882 } |
1319 | 883 return 0; |
1234 | 884 } |
885 | |
1319 | 886 init_get_bits (&s->gb, buf, 8*buf_size); |
1234 | 887 |
6789
8107e891b226
Previous commit missed an initialization - this fixes FATE's test sample.
astrange
parents:
6787
diff
changeset
|
888 s->mb_x = s->mb_y = h->mb_xy = 0; |
1319 | 889 |
890 if (svq3_decode_slice_header (h)) | |
1234 | 891 return -1; |
892 | |
1319 | 893 s->pict_type = h->slice_type; |
894 s->picture_number = h->slice_num; | |
1234 | 895 |
1250 | 896 if(avctx->debug&FF_DEBUG_PICT_INFO){ |
7287 | 897 av_log(h->s.avctx, AV_LOG_DEBUG, "%c hpel:%d, tpel:%d aqp:%d qp:%d, slice_num:%02X\n", |
1264 | 898 av_get_pict_type_char(s->pict_type), h->halfpel_flag, h->thirdpel_flag, |
7287 | 899 s->adaptive_quant, s->qscale, h->slice_num |
1250 | 900 ); |
901 } | |
1234 | 902 |
1319 | 903 /* for hurry_up==5 */ |
904 s->current_picture.pict_type = s->pict_type; | |
6481 | 905 s->current_picture.key_frame = (s->pict_type == FF_I_TYPE); |
1319 | 906 |
5127 | 907 /* Skip B-frames if we do not have reference frames. */ |
6481 | 908 if (s->last_picture_ptr == NULL && s->pict_type == FF_B_TYPE) return 0; |
5127 | 909 /* Skip B-frames if we are in a hurry. */ |
6481 | 910 if (avctx->hurry_up && s->pict_type == FF_B_TYPE) return 0; |
5127 | 911 /* Skip everything if we are in a hurry >= 5. */ |
1319 | 912 if (avctx->hurry_up >= 5) return 0; |
6481 | 913 if( (avctx->skip_frame >= AVDISCARD_NONREF && s->pict_type==FF_B_TYPE) |
914 ||(avctx->skip_frame >= AVDISCARD_NONKEY && s->pict_type!=FF_I_TYPE) | |
2792 | 915 || avctx->skip_frame >= AVDISCARD_ALL) |
916 return 0; | |
1319 | 917 |
918 if (s->next_p_frame_damaged) { | |
6481 | 919 if (s->pict_type == FF_B_TYPE) |
1319 | 920 return 0; |
921 else | |
922 s->next_p_frame_damaged = 0; | |
923 } | |
1234 | 924 |
4395 | 925 if (frame_start (h) < 0) |
926 return -1; | |
1234 | 927 |
6481 | 928 if (s->pict_type == FF_B_TYPE) { |
1319 | 929 h->frame_num_offset = (h->slice_num - h->prev_frame_num); |
930 | |
931 if (h->frame_num_offset < 0) { | |
932 h->frame_num_offset += 256; | |
933 } | |
934 if (h->frame_num_offset == 0 || h->frame_num_offset >= h->prev_frame_num_offset) { | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1330
diff
changeset
|
935 av_log(h->s.avctx, AV_LOG_ERROR, "error in B-frame picture id\n"); |
1319 | 936 return -1; |
937 } | |
938 } else { | |
939 h->prev_frame_num = h->frame_num; | |
940 h->frame_num = h->slice_num; | |
941 h->prev_frame_num_offset = (h->frame_num - h->prev_frame_num); | |
942 | |
943 if (h->prev_frame_num_offset < 0) { | |
944 h->prev_frame_num_offset += 256; | |
945 } | |
946 } | |
947 | |
948 for(m=0; m<2; m++){ | |
949 int i; | |
950 for(i=0; i<4; i++){ | |
951 int j; | |
952 for(j=-1; j<4; j++) | |
2979 | 953 h->ref_cache[m][scan8[0] + 8*i + j]= 1; |
5008 | 954 if(i<3) |
955 h->ref_cache[m][scan8[0] + 8*i + j]= PART_NOT_AVAILABLE; | |
1319 | 956 } |
1252 | 957 } |
2967 | 958 |
1234 | 959 for (s->mb_y=0; s->mb_y < s->mb_height; s->mb_y++) { |
960 for (s->mb_x=0; s->mb_x < s->mb_width; s->mb_x++) { | |
6789
8107e891b226
Previous commit missed an initialization - this fixes FATE's test sample.
astrange
parents:
6787
diff
changeset
|
961 h->mb_xy = s->mb_x + s->mb_y*s->mb_stride; |
1319 | 962 |
2614
5e24800ab329
various fixes related to the non alt_bitstream_reader
michael
parents:
2453
diff
changeset
|
963 if ( (get_bits_count(&s->gb) + 7) >= s->gb.size_in_bits && |
2979 | 964 ((get_bits_count(&s->gb) & 7) == 0 || show_bits (&s->gb, (-get_bits_count(&s->gb) & 7)) == 0)) { |
1319 | 965 |
2979 | 966 skip_bits(&s->gb, h->next_slice_index - get_bits_count(&s->gb)); |
967 s->gb.size_in_bits = 8*buf_size; | |
1319 | 968 |
2979 | 969 if (svq3_decode_slice_header (h)) |
970 return -1; | |
1319 | 971 |
2979 | 972 /* TODO: support s->mb_skip_run */ |
1319 | 973 } |
974 | |
975 mb_type = svq3_get_ue_golomb (&s->gb); | |
1234 | 976 |
6481 | 977 if (s->pict_type == FF_I_TYPE) { |
2979 | 978 mb_type += 8; |
6481 | 979 } else if (s->pict_type == FF_B_TYPE && mb_type >= 4) { |
2979 | 980 mb_type += 4; |
1234 | 981 } |
1319 | 982 if (mb_type > 33 || svq3_decode_mb (h, mb_type)) { |
2979 | 983 av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding MB %d %d\n", s->mb_x, s->mb_y); |
984 return -1; | |
1234 | 985 } |
986 | |
987 if (mb_type != 0) { | |
2979 | 988 hl_decode_mb (h); |
1234 | 989 } |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
990 |
6481 | 991 if (s->pict_type != FF_B_TYPE && !s->low_delay) { |
2979 | 992 s->current_picture.mb_type[s->mb_x + s->mb_y*s->mb_stride] = |
6481 | 993 (s->pict_type == FF_P_TYPE && mb_type < 8) ? (mb_type - 1) : -1; |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1321
diff
changeset
|
994 } |
1234 | 995 } |
1268 | 996 |
997 ff_draw_horiz_band(s, 16*s->mb_y, 16); | |
1234 | 998 } |
999 | |
1319 | 1000 MPV_frame_end(s); |
1001 | |
6481 | 1002 if (s->pict_type == FF_B_TYPE || s->low_delay) { |
1319 | 1003 *(AVFrame *) data = *(AVFrame *) &s->current_picture; |
1004 } else { | |
1005 *(AVFrame *) data = *(AVFrame *) &s->last_picture; | |
1006 } | |
1234 | 1007 |
1319 | 1008 avctx->frame_number = s->picture_number - 1; |
1009 | |
5127 | 1010 /* Do not output the last pic after seeking. */ |
1319 | 1011 if (s->last_picture_ptr || s->low_delay) { |
1012 *data_size = sizeof(AVFrame); | |
1013 } | |
1014 | |
1234 | 1015 return buf_size; |
1016 } | |
1017 | |
1018 | |
1019 AVCodec svq3_decoder = { | |
1020 "svq3", | |
1021 CODEC_TYPE_VIDEO, | |
1022 CODEC_ID_SVQ3, | |
1023 sizeof(H264Context), | |
1024 decode_init, | |
1025 NULL, | |
1026 decode_end, | |
1027 svq3_decode_frame, | |
2453 | 1028 CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_DELAY, |
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6789
diff
changeset
|
1029 .long_name = NULL_IF_CONFIG_SMALL("Sorenson Vector Quantizer 3"), |
1234 | 1030 }; |