Mercurial > libavcodec.hg
annotate wmv2.c @ 5587:3ae03eacbe9f libavcodec
use 16bit IDWT (a SIMD implementation of it should be >2x faster then with
the old 32bit code)
disable mmx/sse2 optimizations as they need a rewrite now
author | michael |
---|---|
date | Sat, 25 Aug 2007 03:00:51 +0000 |
parents | 9f8219a3b86f |
children | 51fc10d9fdff |
rev | line source |
---|---|
936 | 1 /* |
2 * Copyright (c) 2002 The FFmpeg Project. | |
3 * | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3741
diff
changeset
|
4 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3741
diff
changeset
|
5 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3741
diff
changeset
|
6 * FFmpeg is free software; you can redistribute it and/or |
936 | 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:
3741
diff
changeset
|
9 * version 2.1 of the License, or (at your option) any later version. |
936 | 10 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3741
diff
changeset
|
11 * FFmpeg is distributed in the hope that it will be useful, |
936 | 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:
3741
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 |
936 | 19 */ |
20 | |
1106 | 21 /** |
22 * @file wmv2.c | |
23 * wmv2 codec. | |
24 */ | |
2967 | 25 |
936 | 26 #include "simple_idct.h" |
2967 | 27 |
936 | 28 #define SKIP_TYPE_NONE 0 |
29 #define SKIP_TYPE_MPEG 1 | |
30 #define SKIP_TYPE_ROW 2 | |
31 #define SKIP_TYPE_COL 3 | |
32 | |
33 | |
34 typedef struct Wmv2Context{ | |
35 MpegEncContext s; | |
36 int j_type_bit; | |
37 int j_type; | |
38 int abt_flag; | |
39 int abt_type; | |
40 int abt_type_table[6]; | |
41 int per_mb_abt; | |
42 int per_block_abt; | |
43 int mspel_bit; | |
44 int cbp_table_index; | |
45 int top_left_mv_flag; | |
46 int per_mb_rl_bit; | |
47 int skip_type; | |
48 int hshift; | |
2967 | 49 |
936 | 50 ScanTable abt_scantable[2]; |
3089 | 51 DECLARE_ALIGNED_8(DCTELEM, abt_block2[6][64]); |
936 | 52 }Wmv2Context; |
53 | |
54 static void wmv2_common_init(Wmv2Context * w){ | |
55 MpegEncContext * const s= &w->s; | |
2967 | 56 |
1273 | 57 ff_init_scantable(s->dsp.idct_permutation, &w->abt_scantable[0], wmv2_scantableA); |
58 ff_init_scantable(s->dsp.idct_permutation, &w->abt_scantable[1], wmv2_scantableB); | |
936 | 59 } |
60 | |
4950
665c61d35b52
Replace general CONFIG_ENCODERS by more fine-grained CONFIG_WMV2_ENCODER.
diego
parents:
4947
diff
changeset
|
61 #ifdef CONFIG_WMV2_ENCODER |
2024
f65d87bfdd5a
some of the warning fixes by (Michael Roitzsch <mroi at users dot sourceforge dot net>)
michael
parents:
1943
diff
changeset
|
62 |
936 | 63 static int encode_ext_header(Wmv2Context *w){ |
64 MpegEncContext * const s= &w->s; | |
65 PutBitContext pb; | |
66 int code; | |
2967 | 67 |
1524 | 68 init_put_bits(&pb, s->avctx->extradata, s->avctx->extradata_size); |
936 | 69 |
2637 | 70 put_bits(&pb, 5, s->avctx->time_base.den / s->avctx->time_base.num); //yes 29.97 -> 29 |
936 | 71 put_bits(&pb, 11, FFMIN(s->bit_rate/1024, 2047)); |
2967 | 72 |
936 | 73 put_bits(&pb, 1, w->mspel_bit=1); |
5193
19ed7e6ef927
Identify the loop_filter flag as such and remove the unused variables in the context.
iive
parents:
5178
diff
changeset
|
74 put_bits(&pb, 1, s->loop_filter); |
936 | 75 put_bits(&pb, 1, w->abt_flag=1); |
76 put_bits(&pb, 1, w->j_type_bit=1); | |
77 put_bits(&pb, 1, w->top_left_mv_flag=0); | |
78 put_bits(&pb, 1, w->per_mb_rl_bit=1); | |
79 put_bits(&pb, 3, code=1); | |
2967 | 80 |
936 | 81 flush_put_bits(&pb); |
82 | |
83 s->slice_height = s->mb_height / code; | |
2967 | 84 |
936 | 85 return 0; |
86 } | |
87 | |
88 static int wmv2_encode_init(AVCodecContext *avctx){ | |
89 Wmv2Context * const w= avctx->priv_data; | |
2967 | 90 |
936 | 91 if(MPV_encode_init(avctx) < 0) |
92 return -1; | |
2967 | 93 |
936 | 94 wmv2_common_init(w); |
95 | |
96 avctx->extradata_size= 4; | |
97 avctx->extradata= av_mallocz(avctx->extradata_size + 10); | |
98 encode_ext_header(w); | |
2967 | 99 |
936 | 100 return 0; |
101 } | |
102 | |
2522
e25782262d7d
kill warnings patch by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2474
diff
changeset
|
103 #if 0 /* unused, remove? */ |
936 | 104 static int wmv2_encode_end(AVCodecContext *avctx){ |
2967 | 105 |
936 | 106 if(MPV_encode_end(avctx) < 0) |
107 return -1; | |
2967 | 108 |
936 | 109 avctx->extradata_size= 0; |
110 av_freep(&avctx->extradata); | |
2967 | 111 |
936 | 112 return 0; |
113 } | |
2522
e25782262d7d
kill warnings patch by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2474
diff
changeset
|
114 #endif |
936 | 115 |
116 int ff_wmv2_encode_picture_header(MpegEncContext * s, int picture_number) | |
117 { | |
118 Wmv2Context * const w= (Wmv2Context*)s; | |
119 | |
120 put_bits(&s->pb, 1, s->pict_type - 1); | |
121 if(s->pict_type == I_TYPE){ | |
122 put_bits(&s->pb, 7, 0); | |
123 } | |
124 put_bits(&s->pb, 5, s->qscale); | |
125 | |
126 s->dc_table_index = 1; | |
127 s->mv_table_index = 1; /* only if P frame */ | |
128 // s->use_skip_mb_code = 1; /* only if P frame */ | |
129 s->per_mb_rl_table = 0; | |
130 s->mspel= 0; | |
131 w->per_mb_abt=0; | |
132 w->abt_type=0; | |
133 w->j_type=0; | |
134 | |
1163 | 135 assert(s->flipflop_rounding); |
136 | |
936 | 137 if (s->pict_type == I_TYPE) { |
1163 | 138 assert(s->no_rounding==1); |
936 | 139 if(w->j_type_bit) put_bits(&s->pb, 1, w->j_type); |
2967 | 140 |
936 | 141 if(w->per_mb_rl_bit) put_bits(&s->pb, 1, s->per_mb_rl_table); |
2967 | 142 |
936 | 143 if(!s->per_mb_rl_table){ |
5098
997c368e6433
Rename code012() to ff_code012(), and remove static qualifier: paves the way
gpoirier
parents:
4950
diff
changeset
|
144 ff_code012(&s->pb, s->rl_chroma_table_index); |
997c368e6433
Rename code012() to ff_code012(), and remove static qualifier: paves the way
gpoirier
parents:
4950
diff
changeset
|
145 ff_code012(&s->pb, s->rl_table_index); |
936 | 146 } |
147 | |
148 put_bits(&s->pb, 1, s->dc_table_index); | |
149 | |
150 s->inter_intra_pred= 0; | |
151 }else{ | |
152 int cbp_index; | |
153 | |
154 put_bits(&s->pb, 2, SKIP_TYPE_NONE); | |
2967 | 155 |
5098
997c368e6433
Rename code012() to ff_code012(), and remove static qualifier: paves the way
gpoirier
parents:
4950
diff
changeset
|
156 ff_code012(&s->pb, cbp_index=0); |
936 | 157 if(s->qscale <= 10){ |
158 int map[3]= {0,2,1}; | |
159 w->cbp_table_index= map[cbp_index]; | |
160 }else if(s->qscale <= 20){ | |
161 int map[3]= {1,0,2}; | |
162 w->cbp_table_index= map[cbp_index]; | |
163 }else{ | |
164 int map[3]= {2,1,0}; | |
165 w->cbp_table_index= map[cbp_index]; | |
166 } | |
167 | |
168 if(w->mspel_bit) put_bits(&s->pb, 1, s->mspel); | |
2967 | 169 |
936 | 170 if(w->abt_flag){ |
171 put_bits(&s->pb, 1, w->per_mb_abt^1); | |
172 if(!w->per_mb_abt){ | |
5098
997c368e6433
Rename code012() to ff_code012(), and remove static qualifier: paves the way
gpoirier
parents:
4950
diff
changeset
|
173 ff_code012(&s->pb, w->abt_type); |
936 | 174 } |
175 } | |
176 | |
177 if(w->per_mb_rl_bit) put_bits(&s->pb, 1, s->per_mb_rl_table); | |
2967 | 178 |
936 | 179 if(!s->per_mb_rl_table){ |
5098
997c368e6433
Rename code012() to ff_code012(), and remove static qualifier: paves the way
gpoirier
parents:
4950
diff
changeset
|
180 ff_code012(&s->pb, s->rl_table_index); |
936 | 181 s->rl_chroma_table_index = s->rl_table_index; |
182 } | |
183 put_bits(&s->pb, 1, s->dc_table_index); | |
184 put_bits(&s->pb, 1, s->mv_table_index); | |
2967 | 185 |
1943 | 186 s->inter_intra_pred= 0;//(s->width*s->height < 320*240 && s->bit_rate<=II_BITRATE); |
936 | 187 } |
188 s->esc3_level_length= 0; | |
189 s->esc3_run_length= 0; | |
190 | |
191 return 0; | |
192 } | |
193 | |
5127 | 194 /* Nearly identical to wmv1 but that is just because we do not use the |
195 * useless M$ crap features. It is duplicated here in case someone wants | |
196 * to add support for these crap features. */ | |
2967 | 197 void ff_wmv2_encode_mb(MpegEncContext * s, |
936 | 198 DCTELEM block[6][64], |
199 int motion_x, int motion_y) | |
200 { | |
201 Wmv2Context * const w= (Wmv2Context*)s; | |
202 int cbp, coded_cbp, i; | |
203 int pred_x, pred_y; | |
1064 | 204 uint8_t *coded_block; |
936 | 205 |
206 handle_slices(s); | |
2967 | 207 |
936 | 208 if (!s->mb_intra) { |
2979 | 209 /* compute cbp */ |
210 cbp = 0; | |
211 for (i = 0; i < 6; i++) { | |
212 if (s->block_last_index[i] >= 0) | |
213 cbp |= 1 << (5 - i); | |
214 } | |
2967 | 215 |
216 put_bits(&s->pb, | |
217 wmv2_inter_table[w->cbp_table_index][cbp + 64][1], | |
936 | 218 wmv2_inter_table[w->cbp_table_index][cbp + 64][0]); |
219 | |
220 /* motion vector */ | |
1938
e2501e6e7ff7
unify table indexing (motion_val,dc_val,ac_val,coded_block changed)
michael
parents:
1668
diff
changeset
|
221 h263_pred_motion(s, 0, 0, &pred_x, &pred_y); |
2967 | 222 msmpeg4_encode_motion(s, motion_x - pred_x, |
936 | 223 motion_y - pred_y); |
224 } else { | |
2979 | 225 /* compute cbp */ |
226 cbp = 0; | |
936 | 227 coded_cbp = 0; |
2979 | 228 for (i = 0; i < 6; i++) { |
936 | 229 int val, pred; |
230 val = (s->block_last_index[i] >= 1); | |
231 cbp |= val << (5 - i); | |
232 if (i < 4) { | |
233 /* predict value for close blocks only for luma */ | |
234 pred = coded_block_pred(s, i, &coded_block); | |
235 *coded_block = val; | |
236 val = val ^ pred; | |
237 } | |
238 coded_cbp |= val << (5 - i); | |
2979 | 239 } |
936 | 240 #if 0 |
241 if (coded_cbp) | |
242 printf("cbp=%x %x\n", cbp, coded_cbp); | |
243 #endif | |
244 | |
245 if (s->pict_type == I_TYPE) { | |
2967 | 246 put_bits(&s->pb, |
2474 | 247 ff_msmp4_mb_i_table[coded_cbp][1], ff_msmp4_mb_i_table[coded_cbp][0]); |
936 | 248 } else { |
2967 | 249 put_bits(&s->pb, |
250 wmv2_inter_table[w->cbp_table_index][cbp][1], | |
936 | 251 wmv2_inter_table[w->cbp_table_index][cbp][0]); |
252 } | |
2979 | 253 put_bits(&s->pb, 1, 0); /* no AC prediction yet */ |
936 | 254 if(s->inter_intra_pred){ |
255 s->h263_aic_dir=0; | |
256 put_bits(&s->pb, table_inter_intra[s->h263_aic_dir][1], table_inter_intra[s->h263_aic_dir][0]); | |
257 } | |
258 } | |
259 | |
260 for (i = 0; i < 6; i++) { | |
5178 | 261 ff_msmpeg4_encode_block(s, block[i], i); |
936 | 262 } |
263 } | |
4950
665c61d35b52
Replace general CONFIG_ENCODERS by more fine-grained CONFIG_WMV2_ENCODER.
diego
parents:
4947
diff
changeset
|
264 #endif //CONFIG_WMV2_ENCODER |
936 | 265 |
266 static void parse_mb_skip(Wmv2Context * w){ | |
267 int mb_x, mb_y; | |
268 MpegEncContext * const s= &w->s; | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1163
diff
changeset
|
269 uint32_t * const mb_type= s->current_picture_ptr->mb_type; |
936 | 270 |
271 w->skip_type= get_bits(&s->gb, 2); | |
272 switch(w->skip_type){ | |
273 case SKIP_TYPE_NONE: | |
274 for(mb_y=0; mb_y<s->mb_height; mb_y++){ | |
275 for(mb_x=0; mb_x<s->mb_width; mb_x++){ | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1163
diff
changeset
|
276 mb_type[mb_y*s->mb_stride + mb_x]= MB_TYPE_16x16 | MB_TYPE_L0; |
936 | 277 } |
278 } | |
279 break; | |
280 case SKIP_TYPE_MPEG: | |
281 for(mb_y=0; mb_y<s->mb_height; mb_y++){ | |
282 for(mb_x=0; mb_x<s->mb_width; mb_x++){ | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1163
diff
changeset
|
283 mb_type[mb_y*s->mb_stride + mb_x]= (get_bits1(&s->gb) ? MB_TYPE_SKIP : 0) | MB_TYPE_16x16 | MB_TYPE_L0; |
936 | 284 } |
285 } | |
286 break; | |
287 case SKIP_TYPE_ROW: | |
288 for(mb_y=0; mb_y<s->mb_height; mb_y++){ | |
289 if(get_bits1(&s->gb)){ | |
290 for(mb_x=0; mb_x<s->mb_width; mb_x++){ | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1163
diff
changeset
|
291 mb_type[mb_y*s->mb_stride + mb_x]= MB_TYPE_SKIP | MB_TYPE_16x16 | MB_TYPE_L0; |
936 | 292 } |
293 }else{ | |
294 for(mb_x=0; mb_x<s->mb_width; mb_x++){ | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1163
diff
changeset
|
295 mb_type[mb_y*s->mb_stride + mb_x]= (get_bits1(&s->gb) ? MB_TYPE_SKIP : 0) | MB_TYPE_16x16 | MB_TYPE_L0; |
936 | 296 } |
297 } | |
298 } | |
299 break; | |
300 case SKIP_TYPE_COL: | |
301 for(mb_x=0; mb_x<s->mb_width; mb_x++){ | |
302 if(get_bits1(&s->gb)){ | |
303 for(mb_y=0; mb_y<s->mb_height; mb_y++){ | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1163
diff
changeset
|
304 mb_type[mb_y*s->mb_stride + mb_x]= MB_TYPE_SKIP | MB_TYPE_16x16 | MB_TYPE_L0; |
936 | 305 } |
306 }else{ | |
307 for(mb_y=0; mb_y<s->mb_height; mb_y++){ | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1163
diff
changeset
|
308 mb_type[mb_y*s->mb_stride + mb_x]= (get_bits1(&s->gb) ? MB_TYPE_SKIP : 0) | MB_TYPE_16x16 | MB_TYPE_L0; |
936 | 309 } |
310 } | |
311 } | |
312 break; | |
313 } | |
314 } | |
315 | |
316 static int decode_ext_header(Wmv2Context *w){ | |
317 MpegEncContext * const s= &w->s; | |
318 GetBitContext gb; | |
319 int fps; | |
320 int code; | |
321 | |
322 if(s->avctx->extradata_size<4) return -1; | |
2967 | 323 |
1025
1f9afd8b9131
GetBitContext.size is allways multiplied by 8 -> use size_in_bits to avoid useless *8 in a few inner loops
michaelni
parents:
983
diff
changeset
|
324 init_get_bits(&gb, s->avctx->extradata, s->avctx->extradata_size*8); |
936 | 325 |
326 fps = get_bits(&gb, 5); | |
327 s->bit_rate = get_bits(&gb, 11)*1024; | |
328 w->mspel_bit = get_bits1(&gb); | |
5193
19ed7e6ef927
Identify the loop_filter flag as such and remove the unused variables in the context.
iive
parents:
5178
diff
changeset
|
329 s->loop_filter = get_bits1(&gb); |
936 | 330 w->abt_flag = get_bits1(&gb); |
331 w->j_type_bit = get_bits1(&gb); | |
332 w->top_left_mv_flag= get_bits1(&gb); | |
333 w->per_mb_rl_bit = get_bits1(&gb); | |
334 code = get_bits(&gb, 3); | |
2967 | 335 |
936 | 336 if(code==0) return -1; |
1092 | 337 |
936 | 338 s->slice_height = s->mb_height / code; |
339 | |
340 if(s->avctx->debug&FF_DEBUG_PICT_INFO){ | |
5193
19ed7e6ef927
Identify the loop_filter flag as such and remove the unused variables in the context.
iive
parents:
5178
diff
changeset
|
341 av_log(s->avctx, AV_LOG_DEBUG, "fps:%d, br:%d, qpbit:%d, abt_flag:%d, j_type_bit:%d, tl_mv_flag:%d, mbrl_bit:%d, code:%d, loop_filter:%d, slices:%d\n", |
19ed7e6ef927
Identify the loop_filter flag as such and remove the unused variables in the context.
iive
parents:
5178
diff
changeset
|
342 fps, s->bit_rate, w->mspel_bit, w->abt_flag, w->j_type_bit, w->top_left_mv_flag, w->per_mb_rl_bit, code, s->loop_filter, |
983 | 343 code); |
936 | 344 } |
345 return 0; | |
346 } | |
347 | |
348 int ff_wmv2_decode_picture_header(MpegEncContext * s) | |
349 { | |
350 Wmv2Context * const w= (Wmv2Context*)s; | |
1183 | 351 int code; |
936 | 352 |
353 #if 0 | |
354 { | |
355 int i; | |
356 for(i=0; i<s->gb.size*8; i++) | |
357 printf("%d", get_bits1(&s->gb)); | |
358 // get_bits1(&s->gb); | |
359 printf("END\n"); | |
360 return -1; | |
361 } | |
362 #endif | |
363 if(s->picture_number==0) | |
364 decode_ext_header(w); | |
365 | |
5513 | 366 s->pict_type = get_bits1(&s->gb) + 1; |
936 | 367 if(s->pict_type == I_TYPE){ |
368 code = get_bits(&s->gb, 7); | |
2810 | 369 av_log(s->avctx, AV_LOG_DEBUG, "I7:%X/\n", code); |
936 | 370 } |
1651 | 371 s->chroma_qscale= s->qscale = get_bits(&s->gb, 5); |
1183 | 372 if(s->qscale < 0) |
373 return -1; | |
2967 | 374 |
1183 | 375 return 0; |
376 } | |
377 | |
378 int ff_wmv2_decode_secondary_picture_header(MpegEncContext * s) | |
379 { | |
380 Wmv2Context * const w= (Wmv2Context*)s; | |
936 | 381 |
382 if (s->pict_type == I_TYPE) { | |
383 if(w->j_type_bit) w->j_type= get_bits1(&s->gb); | |
384 else w->j_type= 0; //FIXME check | |
2967 | 385 |
936 | 386 if(!w->j_type){ |
387 if(w->per_mb_rl_bit) s->per_mb_rl_table= get_bits1(&s->gb); | |
388 else s->per_mb_rl_table= 0; | |
2967 | 389 |
936 | 390 if(!s->per_mb_rl_table){ |
391 s->rl_chroma_table_index = decode012(&s->gb); | |
392 s->rl_table_index = decode012(&s->gb); | |
393 } | |
394 | |
395 s->dc_table_index = get_bits1(&s->gb); | |
396 } | |
397 s->inter_intra_pred= 0; | |
398 s->no_rounding = 1; | |
399 if(s->avctx->debug&FF_DEBUG_PICT_INFO){ | |
2979 | 400 av_log(s->avctx, AV_LOG_DEBUG, "qscale:%d rlc:%d rl:%d dc:%d mbrl:%d j_type:%d \n", |
401 s->qscale, | |
402 s->rl_chroma_table_index, | |
403 s->rl_table_index, | |
404 s->dc_table_index, | |
936 | 405 s->per_mb_rl_table, |
406 w->j_type); | |
407 } | |
408 }else{ | |
409 int cbp_index; | |
410 w->j_type=0; | |
411 | |
412 parse_mb_skip(w); | |
413 cbp_index= decode012(&s->gb); | |
414 if(s->qscale <= 10){ | |
415 int map[3]= {0,2,1}; | |
416 w->cbp_table_index= map[cbp_index]; | |
417 }else if(s->qscale <= 20){ | |
418 int map[3]= {1,0,2}; | |
419 w->cbp_table_index= map[cbp_index]; | |
420 }else{ | |
421 int map[3]= {2,1,0}; | |
422 w->cbp_table_index= map[cbp_index]; | |
423 } | |
424 | |
425 if(w->mspel_bit) s->mspel= get_bits1(&s->gb); | |
426 else s->mspel= 0; //FIXME check | |
2967 | 427 |
936 | 428 if(w->abt_flag){ |
429 w->per_mb_abt= get_bits1(&s->gb)^1; | |
430 if(!w->per_mb_abt){ | |
431 w->abt_type= decode012(&s->gb); | |
432 } | |
433 } | |
434 | |
435 if(w->per_mb_rl_bit) s->per_mb_rl_table= get_bits1(&s->gb); | |
436 else s->per_mb_rl_table= 0; | |
2967 | 437 |
936 | 438 if(!s->per_mb_rl_table){ |
439 s->rl_table_index = decode012(&s->gb); | |
440 s->rl_chroma_table_index = s->rl_table_index; | |
441 } | |
442 | |
443 s->dc_table_index = get_bits1(&s->gb); | |
444 s->mv_table_index = get_bits1(&s->gb); | |
2967 | 445 |
1943 | 446 s->inter_intra_pred= 0;//(s->width*s->height < 320*240 && s->bit_rate<=II_BITRATE); |
936 | 447 s->no_rounding ^= 1; |
2967 | 448 |
936 | 449 if(s->avctx->debug&FF_DEBUG_PICT_INFO){ |
2967 | 450 av_log(s->avctx, AV_LOG_DEBUG, "rl:%d rlc:%d dc:%d mv:%d mbrl:%d qp:%d mspel:%d per_mb_abt:%d abt_type:%d cbp:%d ii:%d\n", |
2979 | 451 s->rl_table_index, |
452 s->rl_chroma_table_index, | |
453 s->dc_table_index, | |
454 s->mv_table_index, | |
936 | 455 s->per_mb_rl_table, |
456 s->qscale, | |
457 s->mspel, | |
458 w->per_mb_abt, | |
459 w->abt_type, | |
460 w->cbp_table_index, | |
461 s->inter_intra_pred); | |
462 } | |
463 } | |
464 s->esc3_level_length= 0; | |
465 s->esc3_run_length= 0; | |
2967 | 466 |
936 | 467 s->picture_number++; //FIXME ? |
468 | |
469 | |
470 // if(w->j_type) | |
471 // return wmv2_decode_j_picture(w); //FIXME | |
472 | |
473 if(w->j_type){ | |
2628
511e3afc43e1
Ministry of English Composition, reporting for duty (and the word is "skipped", not "skiped"; "skiped" would rhyme with "hyped")
melanson
parents:
2522
diff
changeset
|
474 av_log(s->avctx, AV_LOG_ERROR, "J-type picture is not supported\n"); |
936 | 475 return -1; |
476 } | |
477 | |
478 return 0; | |
479 } | |
480 | |
481 static inline int wmv2_decode_motion(Wmv2Context *w, int *mx_ptr, int *my_ptr){ | |
482 MpegEncContext * const s= &w->s; | |
483 int ret; | |
2967 | 484 |
936 | 485 ret= msmpeg4_decode_motion(s, mx_ptr, my_ptr); |
2967 | 486 |
936 | 487 if(ret<0) return -1; |
2967 | 488 |
936 | 489 if((((*mx_ptr)|(*my_ptr)) & 1) && s->mspel) |
490 w->hshift= get_bits1(&s->gb); | |
2967 | 491 else |
936 | 492 w->hshift= 0; |
493 | |
494 //printf("%d %d ", *mx_ptr, *my_ptr); | |
2967 | 495 |
936 | 496 return 0; |
497 } | |
498 | |
499 static int16_t *wmv2_pred_motion(Wmv2Context *w, int *px, int *py){ | |
500 MpegEncContext * const s= &w->s; | |
501 int xy, wrap, diff, type; | |
1064 | 502 int16_t *A, *B, *C, *mot_val; |
936 | 503 |
1938
e2501e6e7ff7
unify table indexing (motion_val,dc_val,ac_val,coded_block changed)
michael
parents:
1668
diff
changeset
|
504 wrap = s->b8_stride; |
936 | 505 xy = s->block_index[0]; |
506 | |
1668
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1651
diff
changeset
|
507 mot_val = s->current_picture.motion_val[0][xy]; |
936 | 508 |
1668
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1651
diff
changeset
|
509 A = s->current_picture.motion_val[0][xy - 1]; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1651
diff
changeset
|
510 B = s->current_picture.motion_val[0][xy - wrap]; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1651
diff
changeset
|
511 C = s->current_picture.motion_val[0][xy + 2 - wrap]; |
2967 | 512 |
2818 | 513 if(s->mb_x && !s->first_slice_line && !s->mspel && w->top_left_mv_flag) |
4001 | 514 diff= FFMAX(FFABS(A[0] - B[0]), FFABS(A[1] - B[1])); |
2967 | 515 else |
2818 | 516 diff=0; |
2967 | 517 |
2818 | 518 if(diff >= 8) |
936 | 519 type= get_bits1(&s->gb); |
520 else | |
521 type= 2; | |
2967 | 522 |
936 | 523 if(type == 0){ |
524 *px= A[0]; | |
525 *py= A[1]; | |
526 }else if(type == 1){ | |
527 *px= B[0]; | |
528 *py= B[1]; | |
529 }else{ | |
530 /* special case for first (slice) line */ | |
531 if (s->first_slice_line) { | |
532 *px = A[0]; | |
533 *py = A[1]; | |
534 } else { | |
535 *px = mid_pred(A[0], B[0], C[0]); | |
536 *py = mid_pred(A[1], B[1], C[1]); | |
537 } | |
538 } | |
539 | |
540 return mot_val; | |
541 } | |
542 | |
543 static inline int wmv2_decode_inter_block(Wmv2Context *w, DCTELEM *block, int n, int cbp){ | |
544 MpegEncContext * const s= &w->s; | |
545 static const int sub_cbp_table[3]= {2,3,1}; | |
546 int sub_cbp; | |
547 | |
2967 | 548 if(!cbp){ |
936 | 549 s->block_last_index[n] = -1; |
550 | |
551 return 0; | |
552 } | |
2967 | 553 |
936 | 554 if(w->per_block_abt) |
555 w->abt_type= decode012(&s->gb); | |
556 #if 0 | |
557 if(w->per_block_abt) | |
558 printf("B%d", w->abt_type); | |
559 #endif | |
560 w->abt_type_table[n]= w->abt_type; | |
561 | |
562 if(w->abt_type){ | |
563 // const uint8_t *scantable= w->abt_scantable[w->abt_type-1].permutated; | |
564 const uint8_t *scantable= w->abt_scantable[w->abt_type-1].scantable; | |
565 // const uint8_t *scantable= w->abt_type-1 ? w->abt_scantable[1].permutated : w->abt_scantable[0].scantable; | |
566 | |
567 sub_cbp= sub_cbp_table[ decode012(&s->gb) ]; | |
568 // printf("S%d", sub_cbp); | |
569 | |
570 if(sub_cbp&1){ | |
571 if (msmpeg4_decode_block(s, block, n, 1, scantable) < 0) | |
572 return -1; | |
573 } | |
2967 | 574 |
936 | 575 if(sub_cbp&2){ |
576 if (msmpeg4_decode_block(s, w->abt_block2[n], n, 1, scantable) < 0) | |
577 return -1; | |
578 } | |
579 s->block_last_index[n] = 63; | |
580 | |
581 return 0; | |
582 }else{ | |
583 return msmpeg4_decode_block(s, block, n, 1, s->inter_scantable.permutated); | |
584 } | |
585 } | |
586 | |
587 static void wmv2_add_block(Wmv2Context *w, DCTELEM *block1, uint8_t *dst, int stride, int n){ | |
588 MpegEncContext * const s= &w->s; | |
1064 | 589 |
2655
ab7bd4722cef
fix block corruption caused by clear_blocks() optimization
michael
parents:
2637
diff
changeset
|
590 if (s->block_last_index[n] >= 0) { |
936 | 591 switch(w->abt_type_table[n]){ |
592 case 0: | |
2655
ab7bd4722cef
fix block corruption caused by clear_blocks() optimization
michael
parents:
2637
diff
changeset
|
593 s->dsp.idct_add (dst, stride, block1); |
936 | 594 break; |
595 case 1: | |
596 simple_idct84_add(dst , stride, block1); | |
597 simple_idct84_add(dst + 4*stride, stride, w->abt_block2[n]); | |
598 memset(w->abt_block2[n], 0, 64*sizeof(DCTELEM)); | |
599 break; | |
600 case 2: | |
601 simple_idct48_add(dst , stride, block1); | |
602 simple_idct48_add(dst + 4 , stride, w->abt_block2[n]); | |
603 memset(w->abt_block2[n], 0, 64*sizeof(DCTELEM)); | |
604 break; | |
605 default: | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1524
diff
changeset
|
606 av_log(s->avctx, AV_LOG_ERROR, "internal error in WMV2 abt\n"); |
936 | 607 } |
2655
ab7bd4722cef
fix block corruption caused by clear_blocks() optimization
michael
parents:
2637
diff
changeset
|
608 } |
936 | 609 } |
610 | |
611 void ff_wmv2_add_mb(MpegEncContext *s, DCTELEM block1[6][64], uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr){ | |
612 Wmv2Context * const w= (Wmv2Context*)s; | |
613 | |
614 wmv2_add_block(w, block1[0], dest_y , s->linesize, 0); | |
615 wmv2_add_block(w, block1[1], dest_y + 8 , s->linesize, 1); | |
616 wmv2_add_block(w, block1[2], dest_y + 8*s->linesize, s->linesize, 2); | |
617 wmv2_add_block(w, block1[3], dest_y + 8 + 8*s->linesize, s->linesize, 3); | |
2967 | 618 |
936 | 619 if(s->flags&CODEC_FLAG_GRAY) return; |
2967 | 620 |
936 | 621 wmv2_add_block(w, block1[4], dest_cb , s->uvlinesize, 4); |
622 wmv2_add_block(w, block1[5], dest_cr , s->uvlinesize, 5); | |
623 } | |
624 | |
625 void ff_mspel_motion(MpegEncContext *s, | |
1064 | 626 uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, |
627 uint8_t **ref_picture, op_pixels_func (*pix_op)[4], | |
936 | 628 int motion_x, int motion_y, int h) |
629 { | |
630 Wmv2Context * const w= (Wmv2Context*)s; | |
1064 | 631 uint8_t *ptr; |
936 | 632 int dxy, offset, mx, my, src_x, src_y, v_edge_pos, linesize, uvlinesize; |
633 int emu=0; | |
2967 | 634 |
936 | 635 dxy = ((motion_y & 1) << 1) | (motion_x & 1); |
636 dxy = 2*dxy + w->hshift; | |
637 src_x = s->mb_x * 16 + (motion_x >> 1); | |
638 src_y = s->mb_y * 16 + (motion_y >> 1); | |
2967 | 639 |
936 | 640 /* WARNING: do no forget half pels */ |
641 v_edge_pos = s->v_edge_pos; | |
4594 | 642 src_x = av_clip(src_x, -16, s->width); |
643 src_y = av_clip(src_y, -16, s->height); | |
4333 | 644 |
645 if(src_x<=-16 || src_x >= s->width) | |
646 dxy &= ~3; | |
647 if(src_y<=-16 || src_y >= s->height) | |
648 dxy &= ~4; | |
649 | |
936 | 650 linesize = s->linesize; |
651 uvlinesize = s->uvlinesize; | |
652 ptr = ref_picture[0] + (src_y * linesize) + src_x; | |
653 | |
654 if(s->flags&CODEC_FLAG_EMU_EDGE){ | |
655 if(src_x<1 || src_y<1 || src_x + 17 >= s->h_edge_pos | |
656 || src_y + h+1 >= v_edge_pos){ | |
2967 | 657 ff_emulated_edge_mc(s->edge_emu_buffer, ptr - 1 - s->linesize, s->linesize, 19, 19, |
936 | 658 src_x-1, src_y-1, s->h_edge_pos, s->v_edge_pos); |
659 ptr= s->edge_emu_buffer + 1 + s->linesize; | |
660 emu=1; | |
661 } | |
662 } | |
663 | |
664 s->dsp.put_mspel_pixels_tab[dxy](dest_y , ptr , linesize); | |
665 s->dsp.put_mspel_pixels_tab[dxy](dest_y+8 , ptr+8 , linesize); | |
666 s->dsp.put_mspel_pixels_tab[dxy](dest_y +8*linesize, ptr +8*linesize, linesize); | |
667 s->dsp.put_mspel_pixels_tab[dxy](dest_y+8+8*linesize, ptr+8+8*linesize, linesize); | |
668 | |
669 if(s->flags&CODEC_FLAG_GRAY) return; | |
670 | |
671 if (s->out_format == FMT_H263) { | |
672 dxy = 0; | |
673 if ((motion_x & 3) != 0) | |
674 dxy |= 1; | |
675 if ((motion_y & 3) != 0) | |
676 dxy |= 2; | |
677 mx = motion_x >> 2; | |
678 my = motion_y >> 2; | |
679 } else { | |
680 mx = motion_x / 2; | |
681 my = motion_y / 2; | |
682 dxy = ((my & 1) << 1) | (mx & 1); | |
683 mx >>= 1; | |
684 my >>= 1; | |
685 } | |
2967 | 686 |
936 | 687 src_x = s->mb_x * 8 + mx; |
688 src_y = s->mb_y * 8 + my; | |
4594 | 689 src_x = av_clip(src_x, -8, s->width >> 1); |
936 | 690 if (src_x == (s->width >> 1)) |
691 dxy &= ~1; | |
4594 | 692 src_y = av_clip(src_y, -8, s->height >> 1); |
936 | 693 if (src_y == (s->height >> 1)) |
694 dxy &= ~2; | |
695 offset = (src_y * uvlinesize) + src_x; | |
696 ptr = ref_picture[1] + offset; | |
697 if(emu){ | |
2967 | 698 ff_emulated_edge_mc(s->edge_emu_buffer, ptr, s->uvlinesize, 9, 9, |
936 | 699 src_x, src_y, s->h_edge_pos>>1, s->v_edge_pos>>1); |
700 ptr= s->edge_emu_buffer; | |
701 } | |
702 pix_op[1][dxy](dest_cb, ptr, uvlinesize, h >> 1); | |
703 | |
704 ptr = ref_picture[2] + offset; | |
705 if(emu){ | |
2967 | 706 ff_emulated_edge_mc(s->edge_emu_buffer, ptr, s->uvlinesize, 9, 9, |
936 | 707 src_x, src_y, s->h_edge_pos>>1, s->v_edge_pos>>1); |
708 ptr= s->edge_emu_buffer; | |
709 } | |
710 pix_op[1][dxy](dest_cr, ptr, uvlinesize, h >> 1); | |
711 } | |
712 | |
713 | |
714 static int wmv2_decode_mb(MpegEncContext *s, DCTELEM block[6][64]) | |
715 { | |
716 Wmv2Context * const w= (Wmv2Context*)s; | |
717 int cbp, code, i; | |
1064 | 718 uint8_t *coded_val; |
936 | 719 |
720 if(w->j_type) return 0; | |
2967 | 721 |
936 | 722 if (s->pict_type == P_TYPE) { |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1163
diff
changeset
|
723 if(IS_SKIP(s->current_picture.mb_type[s->mb_y * s->mb_stride + s->mb_x])){ |
936 | 724 /* skip mb */ |
725 s->mb_intra = 0; | |
726 for(i=0;i<6;i++) | |
727 s->block_last_index[i] = -1; | |
728 s->mv_dir = MV_DIR_FORWARD; | |
729 s->mv_type = MV_TYPE_16X16; | |
730 s->mv[0][0][0] = 0; | |
731 s->mv[0][0][1] = 0; | |
2628
511e3afc43e1
Ministry of English Composition, reporting for duty (and the word is "skipped", not "skiped"; "skiped" would rhyme with "hyped")
melanson
parents:
2522
diff
changeset
|
732 s->mb_skipped = 1; |
1185 | 733 w->hshift=0; |
936 | 734 return 0; |
735 } | |
736 | |
737 code = get_vlc2(&s->gb, mb_non_intra_vlc[w->cbp_table_index].table, MB_NON_INTRA_VLC_BITS, 3); | |
738 if (code < 0) | |
739 return -1; | |
2979 | 740 s->mb_intra = (~code & 0x40) >> 6; |
2967 | 741 |
936 | 742 cbp = code & 0x3f; |
743 } else { | |
744 s->mb_intra = 1; | |
2474 | 745 code = get_vlc2(&s->gb, ff_msmp4_mb_i_vlc.table, MB_INTRA_VLC_BITS, 2); |
936 | 746 if (code < 0){ |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1524
diff
changeset
|
747 av_log(s->avctx, AV_LOG_ERROR, "II-cbp illegal at %d %d\n", s->mb_x, s->mb_y); |
936 | 748 return -1; |
749 } | |
750 /* predict coded block pattern */ | |
751 cbp = 0; | |
752 for(i=0;i<6;i++) { | |
753 int val = ((code >> (5 - i)) & 1); | |
754 if (i < 4) { | |
755 int pred = coded_block_pred(s, i, &coded_val); | |
756 val = val ^ pred; | |
757 *coded_val = val; | |
758 } | |
759 cbp |= val << (5 - i); | |
760 } | |
761 } | |
762 | |
763 if (!s->mb_intra) { | |
764 int mx, my; | |
765 //printf("P at %d %d\n", s->mb_x, s->mb_y); | |
766 wmv2_pred_motion(w, &mx, &my); | |
2967 | 767 |
936 | 768 if(cbp){ |
2632 | 769 s->dsp.clear_blocks(s->block[0]); |
936 | 770 if(s->per_mb_rl_table){ |
771 s->rl_table_index = decode012(&s->gb); | |
772 s->rl_chroma_table_index = s->rl_table_index; | |
773 } | |
774 | |
775 if(w->abt_flag && w->per_mb_abt){ | |
776 w->per_block_abt= get_bits1(&s->gb); | |
777 if(!w->per_block_abt) | |
778 w->abt_type= decode012(&s->gb); | |
779 }else | |
780 w->per_block_abt=0; | |
781 } | |
2967 | 782 |
936 | 783 if (wmv2_decode_motion(w, &mx, &my) < 0) |
784 return -1; | |
785 | |
786 s->mv_dir = MV_DIR_FORWARD; | |
787 s->mv_type = MV_TYPE_16X16; | |
788 s->mv[0][0][0] = mx; | |
789 s->mv[0][0][1] = my; | |
790 | |
791 for (i = 0; i < 6; i++) { | |
792 if (wmv2_decode_inter_block(w, block[i], i, (cbp >> (5 - i)) & 1) < 0) | |
2979 | 793 { |
794 av_log(s->avctx, AV_LOG_ERROR, "\nerror while decoding inter block: %d x %d (%d)\n", s->mb_x, s->mb_y, i); | |
795 return -1; | |
796 } | |
2967 | 797 } |
936 | 798 } else { |
799 //if(s->pict_type==P_TYPE) | |
800 // printf("%d%d ", s->inter_intra_pred, cbp); | |
801 //printf("I at %d %d %d %06X\n", s->mb_x, s->mb_y, ((cbp&3)? 1 : 0) +((cbp&0x3C)? 2 : 0), show_bits(&s->gb, 24)); | |
802 s->ac_pred = get_bits1(&s->gb); | |
803 if(s->inter_intra_pred){ | |
804 s->h263_aic_dir= get_vlc2(&s->gb, inter_intra_vlc.table, INTER_INTRA_VLC_BITS, 1); | |
805 // printf("%d%d %d %d/", s->ac_pred, s->h263_aic_dir, s->mb_x, s->mb_y); | |
806 } | |
807 if(s->per_mb_rl_table && cbp){ | |
808 s->rl_table_index = decode012(&s->gb); | |
809 s->rl_chroma_table_index = s->rl_table_index; | |
810 } | |
2967 | 811 |
2632 | 812 s->dsp.clear_blocks(s->block[0]); |
936 | 813 for (i = 0; i < 6; i++) { |
814 if (msmpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, NULL) < 0) | |
2979 | 815 { |
816 av_log(s->avctx, AV_LOG_ERROR, "\nerror while decoding intra block: %d x %d (%d)\n", s->mb_x, s->mb_y, i); | |
817 return -1; | |
818 } | |
2967 | 819 } |
936 | 820 } |
821 | |
822 return 0; | |
823 } | |
824 | |
825 static int wmv2_decode_init(AVCodecContext *avctx){ | |
826 Wmv2Context * const w= avctx->priv_data; | |
2967 | 827 |
936 | 828 if(ff_h263_decode_init(avctx) < 0) |
829 return -1; | |
2967 | 830 |
936 | 831 wmv2_common_init(w); |
2967 | 832 |
936 | 833 return 0; |
834 } | |
835 | |
4947
6a4e8b52dc7b
Allow conditional compilation of H.263-related decoders.
diego
parents:
4594
diff
changeset
|
836 #ifdef CONFIG_WMV2_DECODER |
936 | 837 AVCodec wmv2_decoder = { |
838 "wmv2", | |
839 CODEC_TYPE_VIDEO, | |
840 CODEC_ID_WMV2, | |
841 sizeof(Wmv2Context), | |
842 wmv2_decode_init, | |
843 NULL, | |
844 ff_h263_decode_end, | |
845 ff_h263_decode_frame, | |
846 CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1, | |
847 }; | |
4947
6a4e8b52dc7b
Allow conditional compilation of H.263-related decoders.
diego
parents:
4594
diff
changeset
|
848 #endif |
936 | 849 |
4950
665c61d35b52
Replace general CONFIG_ENCODERS by more fine-grained CONFIG_WMV2_ENCODER.
diego
parents:
4947
diff
changeset
|
850 #ifdef CONFIG_WMV2_ENCODER |
936 | 851 AVCodec wmv2_encoder = { |
852 "wmv2", | |
853 CODEC_TYPE_VIDEO, | |
854 CODEC_ID_WMV2, | |
855 sizeof(Wmv2Context), | |
856 wmv2_encode_init, | |
857 MPV_encode_picture, | |
858 MPV_encode_end, | |
3741 | 859 .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1}, |
936 | 860 }; |
1070
6da5ae9ee199
more #ifdef CONFIG_ENCODERS patch by (Wolfgang Hesseler <qv at multimediaware dot com>) with modifications by me (s/WOLFGANG/CONFIG_ENCODERS/ and some other fixes)
michaelni
parents:
1064
diff
changeset
|
861 #endif |