Mercurial > libavcodec.hg
annotate wmv2.c @ 1345:daf951f32697 libavcodec
merge U and V statistics, 33% reduction in memory requirement, compression rate better for some files worse for others, worst compression rate loss 0.05%
author | michaelni |
---|---|
date | Sat, 05 Jul 2003 14:18:07 +0000 |
parents | 209abbb4c4f7 |
children | e6e43c68e19c |
rev | line source |
---|---|
936 | 1 /* |
2 * Copyright (c) 2002 The FFmpeg Project. | |
3 * | |
4 * This library is free software; you can redistribute it and/or | |
5 * modify it under the terms of the GNU Lesser General Public | |
6 * License as published by the Free Software Foundation; either | |
7 * version 2 of the License, or (at your option) any later version. | |
8 * | |
9 * This library is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
12 * Lesser General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU Lesser General Public | |
15 * License along with this library; if not, write to the Free Software | |
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
17 * | |
18 */ | |
19 | |
1106 | 20 /** |
21 * @file wmv2.c | |
22 * wmv2 codec. | |
23 */ | |
24 | |
936 | 25 #include "simple_idct.h" |
26 | |
27 #define SKIP_TYPE_NONE 0 | |
28 #define SKIP_TYPE_MPEG 1 | |
29 #define SKIP_TYPE_ROW 2 | |
30 #define SKIP_TYPE_COL 3 | |
31 | |
32 | |
33 typedef struct Wmv2Context{ | |
34 MpegEncContext s; | |
35 int j_type_bit; | |
36 int j_type; | |
37 int flag3; | |
38 int flag63; | |
39 int abt_flag; | |
40 int abt_type; | |
41 int abt_type_table[6]; | |
42 int per_mb_abt; | |
43 int per_block_abt; | |
44 int mspel_bit; | |
45 int cbp_table_index; | |
46 int top_left_mv_flag; | |
47 int per_mb_rl_bit; | |
48 int skip_type; | |
49 int hshift; | |
50 | |
51 ScanTable abt_scantable[2]; | |
52 DCTELEM abt_block2[6][64] __align8; | |
53 }Wmv2Context; | |
54 | |
55 static void wmv2_common_init(Wmv2Context * w){ | |
56 MpegEncContext * const s= &w->s; | |
57 | |
1273 | 58 ff_init_scantable(s->dsp.idct_permutation, &w->abt_scantable[0], wmv2_scantableA); |
59 ff_init_scantable(s->dsp.idct_permutation, &w->abt_scantable[1], wmv2_scantableB); | |
936 | 60 } |
61 | |
62 static int encode_ext_header(Wmv2Context *w){ | |
63 MpegEncContext * const s= &w->s; | |
64 PutBitContext pb; | |
65 int code; | |
66 | |
67 init_put_bits(&pb, s->avctx->extradata, s->avctx->extradata_size, NULL, NULL); | |
68 | |
1126
77ccf7fe3bd0
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
1106
diff
changeset
|
69 put_bits(&pb, 5, s->avctx->frame_rate / s->avctx->frame_rate_base); //yes 29.97 -> 29 |
936 | 70 put_bits(&pb, 11, FFMIN(s->bit_rate/1024, 2047)); |
71 | |
72 put_bits(&pb, 1, w->mspel_bit=1); | |
73 put_bits(&pb, 1, w->flag3=1); | |
74 put_bits(&pb, 1, w->abt_flag=1); | |
75 put_bits(&pb, 1, w->j_type_bit=1); | |
76 put_bits(&pb, 1, w->top_left_mv_flag=0); | |
77 put_bits(&pb, 1, w->per_mb_rl_bit=1); | |
78 put_bits(&pb, 3, code=1); | |
79 | |
80 flush_put_bits(&pb); | |
81 | |
82 s->slice_height = s->mb_height / code; | |
83 | |
84 return 0; | |
85 } | |
86 | |
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
|
87 #ifdef CONFIG_ENCODERS |
936 | 88 static int wmv2_encode_init(AVCodecContext *avctx){ |
89 Wmv2Context * const w= avctx->priv_data; | |
90 | |
91 if(MPV_encode_init(avctx) < 0) | |
92 return -1; | |
93 | |
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); | |
99 | |
100 return 0; | |
101 } | |
102 | |
103 static int wmv2_encode_end(AVCodecContext *avctx){ | |
104 Wmv2Context * const w= avctx->priv_data; | |
105 | |
106 if(MPV_encode_end(avctx) < 0) | |
107 return -1; | |
108 | |
109 avctx->extradata_size= 0; | |
110 av_freep(&avctx->extradata); | |
111 | |
112 return 0; | |
113 } | |
114 | |
115 int ff_wmv2_encode_picture_header(MpegEncContext * s, int picture_number) | |
116 { | |
117 Wmv2Context * const w= (Wmv2Context*)s; | |
118 | |
119 put_bits(&s->pb, 1, s->pict_type - 1); | |
120 if(s->pict_type == I_TYPE){ | |
121 put_bits(&s->pb, 7, 0); | |
122 } | |
123 put_bits(&s->pb, 5, s->qscale); | |
124 | |
125 s->dc_table_index = 1; | |
126 s->mv_table_index = 1; /* only if P frame */ | |
127 // s->use_skip_mb_code = 1; /* only if P frame */ | |
128 s->per_mb_rl_table = 0; | |
129 s->mspel= 0; | |
130 w->per_mb_abt=0; | |
131 w->abt_type=0; | |
132 w->j_type=0; | |
133 | |
1163 | 134 assert(s->flipflop_rounding); |
135 | |
936 | 136 if (s->pict_type == I_TYPE) { |
1163 | 137 assert(s->no_rounding==1); |
936 | 138 if(w->j_type_bit) put_bits(&s->pb, 1, w->j_type); |
139 | |
140 if(w->per_mb_rl_bit) put_bits(&s->pb, 1, s->per_mb_rl_table); | |
141 | |
142 if(!s->per_mb_rl_table){ | |
143 code012(&s->pb, s->rl_chroma_table_index); | |
144 code012(&s->pb, s->rl_table_index); | |
145 } | |
146 | |
147 put_bits(&s->pb, 1, s->dc_table_index); | |
148 | |
149 s->inter_intra_pred= 0; | |
150 }else{ | |
151 int cbp_index; | |
152 | |
153 put_bits(&s->pb, 2, SKIP_TYPE_NONE); | |
154 | |
155 code012(&s->pb, cbp_index=0); | |
156 if(s->qscale <= 10){ | |
157 int map[3]= {0,2,1}; | |
158 w->cbp_table_index= map[cbp_index]; | |
159 }else if(s->qscale <= 20){ | |
160 int map[3]= {1,0,2}; | |
161 w->cbp_table_index= map[cbp_index]; | |
162 }else{ | |
163 int map[3]= {2,1,0}; | |
164 w->cbp_table_index= map[cbp_index]; | |
165 } | |
166 | |
167 if(w->mspel_bit) put_bits(&s->pb, 1, s->mspel); | |
168 | |
169 if(w->abt_flag){ | |
170 put_bits(&s->pb, 1, w->per_mb_abt^1); | |
171 if(!w->per_mb_abt){ | |
172 code012(&s->pb, w->abt_type); | |
173 } | |
174 } | |
175 | |
176 if(w->per_mb_rl_bit) put_bits(&s->pb, 1, s->per_mb_rl_table); | |
177 | |
178 if(!s->per_mb_rl_table){ | |
179 code012(&s->pb, s->rl_table_index); | |
180 s->rl_chroma_table_index = s->rl_table_index; | |
181 } | |
182 put_bits(&s->pb, 1, s->dc_table_index); | |
183 put_bits(&s->pb, 1, s->mv_table_index); | |
184 | |
185 s->inter_intra_pred= (s->width*s->height < 320*240 && s->bit_rate<=II_BITRATE); | |
186 } | |
187 s->esc3_level_length= 0; | |
188 s->esc3_run_length= 0; | |
189 | |
190 return 0; | |
191 } | |
192 | |
193 // nearly idential to wmv1 but thats just because we dont use the useless M$ crap features | |
194 // its duplicated here in case someone wants to add support for these carp features | |
195 void ff_wmv2_encode_mb(MpegEncContext * s, | |
196 DCTELEM block[6][64], | |
197 int motion_x, int motion_y) | |
198 { | |
199 Wmv2Context * const w= (Wmv2Context*)s; | |
200 int cbp, coded_cbp, i; | |
201 int pred_x, pred_y; | |
1064 | 202 uint8_t *coded_block; |
936 | 203 |
204 handle_slices(s); | |
205 | |
206 if (!s->mb_intra) { | |
207 /* compute cbp */ | |
208 set_stat(ST_INTER_MB); | |
209 cbp = 0; | |
210 for (i = 0; i < 6; i++) { | |
211 if (s->block_last_index[i] >= 0) | |
212 cbp |= 1 << (5 - i); | |
213 } | |
214 | |
215 put_bits(&s->pb, | |
216 wmv2_inter_table[w->cbp_table_index][cbp + 64][1], | |
217 wmv2_inter_table[w->cbp_table_index][cbp + 64][0]); | |
218 | |
219 /* motion vector */ | |
220 h263_pred_motion(s, 0, &pred_x, &pred_y); | |
221 msmpeg4_encode_motion(s, motion_x - pred_x, | |
222 motion_y - pred_y); | |
223 } else { | |
224 /* compute cbp */ | |
225 cbp = 0; | |
226 coded_cbp = 0; | |
227 for (i = 0; i < 6; i++) { | |
228 int val, pred; | |
229 val = (s->block_last_index[i] >= 1); | |
230 cbp |= val << (5 - i); | |
231 if (i < 4) { | |
232 /* predict value for close blocks only for luma */ | |
233 pred = coded_block_pred(s, i, &coded_block); | |
234 *coded_block = val; | |
235 val = val ^ pred; | |
236 } | |
237 coded_cbp |= val << (5 - i); | |
238 } | |
239 #if 0 | |
240 if (coded_cbp) | |
241 printf("cbp=%x %x\n", cbp, coded_cbp); | |
242 #endif | |
243 | |
244 if (s->pict_type == I_TYPE) { | |
245 set_stat(ST_INTRA_MB); | |
246 put_bits(&s->pb, | |
247 table_mb_intra[coded_cbp][1], table_mb_intra[coded_cbp][0]); | |
248 } else { | |
249 put_bits(&s->pb, | |
250 wmv2_inter_table[w->cbp_table_index][cbp][1], | |
251 wmv2_inter_table[w->cbp_table_index][cbp][0]); | |
252 } | |
253 set_stat(ST_INTRA_MB); | |
254 put_bits(&s->pb, 1, 0); /* no AC prediction yet */ | |
255 if(s->inter_intra_pred){ | |
256 s->h263_aic_dir=0; | |
257 put_bits(&s->pb, table_inter_intra[s->h263_aic_dir][1], table_inter_intra[s->h263_aic_dir][0]); | |
258 } | |
259 } | |
260 | |
261 for (i = 0; i < 6; i++) { | |
262 msmpeg4_encode_block(s, block[i], i); | |
263 } | |
264 } | |
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
|
265 #endif //CONFIG_ENCODERS |
936 | 266 |
267 static void parse_mb_skip(Wmv2Context * w){ | |
268 int mb_x, mb_y; | |
269 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
|
270 uint32_t * const mb_type= s->current_picture_ptr->mb_type; |
936 | 271 |
272 w->skip_type= get_bits(&s->gb, 2); | |
273 switch(w->skip_type){ | |
274 case SKIP_TYPE_NONE: | |
275 for(mb_y=0; mb_y<s->mb_height; mb_y++){ | |
276 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
|
277 mb_type[mb_y*s->mb_stride + mb_x]= MB_TYPE_16x16 | MB_TYPE_L0; |
936 | 278 } |
279 } | |
280 break; | |
281 case SKIP_TYPE_MPEG: | |
282 for(mb_y=0; mb_y<s->mb_height; mb_y++){ | |
283 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
|
284 mb_type[mb_y*s->mb_stride + mb_x]= (get_bits1(&s->gb) ? MB_TYPE_SKIP : 0) | MB_TYPE_16x16 | MB_TYPE_L0; |
936 | 285 } |
286 } | |
287 break; | |
288 case SKIP_TYPE_ROW: | |
289 for(mb_y=0; mb_y<s->mb_height; mb_y++){ | |
290 if(get_bits1(&s->gb)){ | |
291 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
|
292 mb_type[mb_y*s->mb_stride + mb_x]= MB_TYPE_SKIP | MB_TYPE_16x16 | MB_TYPE_L0; |
936 | 293 } |
294 }else{ | |
295 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
|
296 mb_type[mb_y*s->mb_stride + mb_x]= (get_bits1(&s->gb) ? MB_TYPE_SKIP : 0) | MB_TYPE_16x16 | MB_TYPE_L0; |
936 | 297 } |
298 } | |
299 } | |
300 break; | |
301 case SKIP_TYPE_COL: | |
302 for(mb_x=0; mb_x<s->mb_width; mb_x++){ | |
303 if(get_bits1(&s->gb)){ | |
304 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
|
305 mb_type[mb_y*s->mb_stride + mb_x]= MB_TYPE_SKIP | MB_TYPE_16x16 | MB_TYPE_L0; |
936 | 306 } |
307 }else{ | |
308 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
|
309 mb_type[mb_y*s->mb_stride + mb_x]= (get_bits1(&s->gb) ? MB_TYPE_SKIP : 0) | MB_TYPE_16x16 | MB_TYPE_L0; |
936 | 310 } |
311 } | |
312 } | |
313 break; | |
314 } | |
315 } | |
316 | |
317 static int decode_ext_header(Wmv2Context *w){ | |
318 MpegEncContext * const s= &w->s; | |
319 GetBitContext gb; | |
320 int fps; | |
321 int code; | |
322 | |
323 if(s->avctx->extradata_size<4) return -1; | |
324 | |
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
|
325 init_get_bits(&gb, s->avctx->extradata, s->avctx->extradata_size*8); |
936 | 326 |
327 fps = get_bits(&gb, 5); | |
328 s->bit_rate = get_bits(&gb, 11)*1024; | |
329 w->mspel_bit = get_bits1(&gb); | |
330 w->flag3 = get_bits1(&gb); | |
331 w->abt_flag = get_bits1(&gb); | |
332 w->j_type_bit = get_bits1(&gb); | |
333 w->top_left_mv_flag= get_bits1(&gb); | |
334 w->per_mb_rl_bit = get_bits1(&gb); | |
335 code = get_bits(&gb, 3); | |
336 | |
337 if(code==0) return -1; | |
1092 | 338 |
936 | 339 s->slice_height = s->mb_height / code; |
340 | |
341 if(s->avctx->debug&FF_DEBUG_PICT_INFO){ | |
983 | 342 printf("fps:%d, br:%d, qpbit:%d, abt_flag:%d, j_type_bit:%d, tl_mv_flag:%d, mbrl_bit:%d, code:%d, flag3:%d, slices:%d\n", |
343 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, w->flag3, | |
344 code); | |
936 | 345 } |
346 return 0; | |
347 } | |
348 | |
349 int ff_wmv2_decode_picture_header(MpegEncContext * s) | |
350 { | |
351 Wmv2Context * const w= (Wmv2Context*)s; | |
1183 | 352 int code; |
936 | 353 |
354 #if 0 | |
355 { | |
356 int i; | |
357 for(i=0; i<s->gb.size*8; i++) | |
358 printf("%d", get_bits1(&s->gb)); | |
359 // get_bits1(&s->gb); | |
360 printf("END\n"); | |
361 return -1; | |
362 } | |
363 #endif | |
364 if(s->picture_number==0) | |
365 decode_ext_header(w); | |
366 | |
367 s->pict_type = get_bits(&s->gb, 1) + 1; | |
368 if(s->pict_type == I_TYPE){ | |
369 code = get_bits(&s->gb, 7); | |
370 printf("I7:%X/\n", code); | |
371 } | |
372 s->qscale = get_bits(&s->gb, 5); | |
1183 | 373 if(s->qscale < 0) |
374 return -1; | |
375 | |
376 return 0; | |
377 } | |
378 | |
379 int ff_wmv2_decode_secondary_picture_header(MpegEncContext * s) | |
380 { | |
381 Wmv2Context * const w= (Wmv2Context*)s; | |
936 | 382 |
383 if (s->pict_type == I_TYPE) { | |
384 if(w->j_type_bit) w->j_type= get_bits1(&s->gb); | |
385 else w->j_type= 0; //FIXME check | |
386 | |
387 if(!w->j_type){ | |
388 if(w->per_mb_rl_bit) s->per_mb_rl_table= get_bits1(&s->gb); | |
389 else s->per_mb_rl_table= 0; | |
390 | |
391 if(!s->per_mb_rl_table){ | |
392 s->rl_chroma_table_index = decode012(&s->gb); | |
393 s->rl_table_index = decode012(&s->gb); | |
394 } | |
395 | |
396 s->dc_table_index = get_bits1(&s->gb); | |
397 } | |
398 s->inter_intra_pred= 0; | |
399 s->no_rounding = 1; | |
400 if(s->avctx->debug&FF_DEBUG_PICT_INFO){ | |
401 printf("qscale:%d rlc:%d rl:%d dc:%d mbrl:%d j_type:%d \n", | |
402 s->qscale, | |
403 s->rl_chroma_table_index, | |
404 s->rl_table_index, | |
405 s->dc_table_index, | |
406 s->per_mb_rl_table, | |
407 w->j_type); | |
408 } | |
409 }else{ | |
410 int cbp_index; | |
411 w->j_type=0; | |
412 | |
413 parse_mb_skip(w); | |
414 cbp_index= decode012(&s->gb); | |
415 if(s->qscale <= 10){ | |
416 int map[3]= {0,2,1}; | |
417 w->cbp_table_index= map[cbp_index]; | |
418 }else if(s->qscale <= 20){ | |
419 int map[3]= {1,0,2}; | |
420 w->cbp_table_index= map[cbp_index]; | |
421 }else{ | |
422 int map[3]= {2,1,0}; | |
423 w->cbp_table_index= map[cbp_index]; | |
424 } | |
425 | |
426 if(w->mspel_bit) s->mspel= get_bits1(&s->gb); | |
427 else s->mspel= 0; //FIXME check | |
428 | |
429 if(w->abt_flag){ | |
430 w->per_mb_abt= get_bits1(&s->gb)^1; | |
431 if(!w->per_mb_abt){ | |
432 w->abt_type= decode012(&s->gb); | |
433 } | |
434 } | |
435 | |
436 if(w->per_mb_rl_bit) s->per_mb_rl_table= get_bits1(&s->gb); | |
437 else s->per_mb_rl_table= 0; | |
438 | |
439 if(!s->per_mb_rl_table){ | |
440 s->rl_table_index = decode012(&s->gb); | |
441 s->rl_chroma_table_index = s->rl_table_index; | |
442 } | |
443 | |
444 s->dc_table_index = get_bits1(&s->gb); | |
445 s->mv_table_index = get_bits1(&s->gb); | |
446 | |
447 s->inter_intra_pred= (s->width*s->height < 320*240 && s->bit_rate<=II_BITRATE); | |
448 s->no_rounding ^= 1; | |
449 | |
450 if(s->avctx->debug&FF_DEBUG_PICT_INFO){ | |
451 printf("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", | |
452 s->rl_table_index, | |
453 s->rl_chroma_table_index, | |
454 s->dc_table_index, | |
455 s->mv_table_index, | |
456 s->per_mb_rl_table, | |
457 s->qscale, | |
458 s->mspel, | |
459 w->per_mb_abt, | |
460 w->abt_type, | |
461 w->cbp_table_index, | |
462 s->inter_intra_pred); | |
463 } | |
464 } | |
465 s->esc3_level_length= 0; | |
466 s->esc3_run_length= 0; | |
467 | |
468 s->picture_number++; //FIXME ? | |
469 | |
470 | |
471 // if(w->j_type) | |
472 // return wmv2_decode_j_picture(w); //FIXME | |
473 | |
474 if(w->j_type){ | |
475 printf("J-type picture isnt supported\n"); | |
476 return -1; | |
477 } | |
478 | |
479 return 0; | |
480 } | |
481 | |
1057 | 482 static void ff_wmv2_decode_init(MpegEncContext *s){ |
936 | 483 } |
484 | |
485 static inline int wmv2_decode_motion(Wmv2Context *w, int *mx_ptr, int *my_ptr){ | |
486 MpegEncContext * const s= &w->s; | |
487 int ret; | |
488 | |
489 ret= msmpeg4_decode_motion(s, mx_ptr, my_ptr); | |
490 | |
491 if(ret<0) return -1; | |
492 | |
493 if((((*mx_ptr)|(*my_ptr)) & 1) && s->mspel) | |
494 w->hshift= get_bits1(&s->gb); | |
495 else | |
496 w->hshift= 0; | |
497 | |
498 //printf("%d %d ", *mx_ptr, *my_ptr); | |
499 | |
500 return 0; | |
501 } | |
502 | |
503 static int16_t *wmv2_pred_motion(Wmv2Context *w, int *px, int *py){ | |
504 MpegEncContext * const s= &w->s; | |
505 int xy, wrap, diff, type; | |
1064 | 506 int16_t *A, *B, *C, *mot_val; |
936 | 507 |
508 wrap = s->block_wrap[0]; | |
509 xy = s->block_index[0]; | |
510 | |
511 mot_val = s->motion_val[xy]; | |
512 | |
513 A = s->motion_val[xy - 1]; | |
514 B = s->motion_val[xy - wrap]; | |
515 C = s->motion_val[xy + 2 - wrap]; | |
516 | |
517 diff= FFMAX(ABS(A[0] - B[0]), ABS(A[1] - B[1])); | |
518 | |
1043 | 519 if(s->mb_x && !s->first_slice_line && !s->mspel && w->top_left_mv_flag && diff >= 8) |
936 | 520 type= get_bits1(&s->gb); |
521 else | |
522 type= 2; | |
523 | |
524 if(type == 0){ | |
525 *px= A[0]; | |
526 *py= A[1]; | |
527 }else if(type == 1){ | |
528 *px= B[0]; | |
529 *py= B[1]; | |
530 }else{ | |
531 /* special case for first (slice) line */ | |
532 if (s->first_slice_line) { | |
533 *px = A[0]; | |
534 *py = A[1]; | |
535 } else { | |
536 *px = mid_pred(A[0], B[0], C[0]); | |
537 *py = mid_pred(A[1], B[1], C[1]); | |
538 } | |
539 } | |
540 | |
541 return mot_val; | |
542 } | |
543 | |
544 static inline int wmv2_decode_inter_block(Wmv2Context *w, DCTELEM *block, int n, int cbp){ | |
545 MpegEncContext * const s= &w->s; | |
546 static const int sub_cbp_table[3]= {2,3,1}; | |
547 int sub_cbp; | |
548 | |
549 if(!cbp){ | |
550 s->block_last_index[n] = -1; | |
551 | |
552 return 0; | |
553 } | |
554 | |
555 if(w->per_block_abt) | |
556 w->abt_type= decode012(&s->gb); | |
557 #if 0 | |
558 if(w->per_block_abt) | |
559 printf("B%d", w->abt_type); | |
560 #endif | |
561 w->abt_type_table[n]= w->abt_type; | |
562 | |
563 if(w->abt_type){ | |
564 // const uint8_t *scantable= w->abt_scantable[w->abt_type-1].permutated; | |
565 const uint8_t *scantable= w->abt_scantable[w->abt_type-1].scantable; | |
566 // const uint8_t *scantable= w->abt_type-1 ? w->abt_scantable[1].permutated : w->abt_scantable[0].scantable; | |
567 | |
568 sub_cbp= sub_cbp_table[ decode012(&s->gb) ]; | |
569 // printf("S%d", sub_cbp); | |
570 | |
571 if(sub_cbp&1){ | |
572 if (msmpeg4_decode_block(s, block, n, 1, scantable) < 0) | |
573 return -1; | |
574 } | |
575 | |
576 if(sub_cbp&2){ | |
577 if (msmpeg4_decode_block(s, w->abt_block2[n], n, 1, scantable) < 0) | |
578 return -1; | |
579 } | |
580 s->block_last_index[n] = 63; | |
581 | |
582 return 0; | |
583 }else{ | |
584 return msmpeg4_decode_block(s, block, n, 1, s->inter_scantable.permutated); | |
585 } | |
586 } | |
587 | |
588 static void wmv2_add_block(Wmv2Context *w, DCTELEM *block1, uint8_t *dst, int stride, int n){ | |
589 MpegEncContext * const s= &w->s; | |
590 uint8_t temp[2][64]; | |
1064 | 591 |
936 | 592 switch(w->abt_type_table[n]){ |
593 case 0: | |
594 if (s->block_last_index[n] >= 0) { | |
1092 | 595 s->dsp.idct_add (dst, stride, block1); |
936 | 596 } |
597 break; | |
598 case 1: | |
599 simple_idct84_add(dst , stride, block1); | |
600 simple_idct84_add(dst + 4*stride, stride, w->abt_block2[n]); | |
601 memset(w->abt_block2[n], 0, 64*sizeof(DCTELEM)); | |
602 break; | |
603 case 2: | |
604 simple_idct48_add(dst , stride, block1); | |
605 simple_idct48_add(dst + 4 , stride, w->abt_block2[n]); | |
606 memset(w->abt_block2[n], 0, 64*sizeof(DCTELEM)); | |
607 break; | |
608 default: | |
609 fprintf(stderr, "internal error in WMV2 abt\n"); | |
610 } | |
611 } | |
612 | |
613 void ff_wmv2_add_mb(MpegEncContext *s, DCTELEM block1[6][64], uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr){ | |
614 Wmv2Context * const w= (Wmv2Context*)s; | |
615 | |
616 wmv2_add_block(w, block1[0], dest_y , s->linesize, 0); | |
617 wmv2_add_block(w, block1[1], dest_y + 8 , s->linesize, 1); | |
618 wmv2_add_block(w, block1[2], dest_y + 8*s->linesize, s->linesize, 2); | |
619 wmv2_add_block(w, block1[3], dest_y + 8 + 8*s->linesize, s->linesize, 3); | |
620 | |
621 if(s->flags&CODEC_FLAG_GRAY) return; | |
622 | |
623 wmv2_add_block(w, block1[4], dest_cb , s->uvlinesize, 4); | |
624 wmv2_add_block(w, block1[5], dest_cr , s->uvlinesize, 5); | |
625 } | |
626 | |
627 void ff_mspel_motion(MpegEncContext *s, | |
1064 | 628 uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, |
629 uint8_t **ref_picture, op_pixels_func (*pix_op)[4], | |
936 | 630 int motion_x, int motion_y, int h) |
631 { | |
632 Wmv2Context * const w= (Wmv2Context*)s; | |
1064 | 633 uint8_t *ptr; |
936 | 634 int dxy, offset, mx, my, src_x, src_y, v_edge_pos, linesize, uvlinesize; |
635 int emu=0; | |
636 | |
637 dxy = ((motion_y & 1) << 1) | (motion_x & 1); | |
638 dxy = 2*dxy + w->hshift; | |
639 src_x = s->mb_x * 16 + (motion_x >> 1); | |
640 src_y = s->mb_y * 16 + (motion_y >> 1); | |
641 | |
642 /* WARNING: do no forget half pels */ | |
643 v_edge_pos = s->v_edge_pos; | |
644 src_x = clip(src_x, -16, s->width); | |
645 src_y = clip(src_y, -16, s->height); | |
646 linesize = s->linesize; | |
647 uvlinesize = s->uvlinesize; | |
648 ptr = ref_picture[0] + (src_y * linesize) + src_x; | |
649 | |
650 if(s->flags&CODEC_FLAG_EMU_EDGE){ | |
651 if(src_x<1 || src_y<1 || src_x + 17 >= s->h_edge_pos | |
652 || src_y + h+1 >= v_edge_pos){ | |
1318 | 653 ff_emulated_edge_mc(s->edge_emu_buffer, ptr - 1 - s->linesize, s->linesize, 19, 19, |
936 | 654 src_x-1, src_y-1, s->h_edge_pos, s->v_edge_pos); |
655 ptr= s->edge_emu_buffer + 1 + s->linesize; | |
656 emu=1; | |
657 } | |
658 } | |
659 | |
660 s->dsp.put_mspel_pixels_tab[dxy](dest_y , ptr , linesize); | |
661 s->dsp.put_mspel_pixels_tab[dxy](dest_y+8 , ptr+8 , linesize); | |
662 s->dsp.put_mspel_pixels_tab[dxy](dest_y +8*linesize, ptr +8*linesize, linesize); | |
663 s->dsp.put_mspel_pixels_tab[dxy](dest_y+8+8*linesize, ptr+8+8*linesize, linesize); | |
664 | |
665 if(s->flags&CODEC_FLAG_GRAY) return; | |
666 | |
667 if (s->out_format == FMT_H263) { | |
668 dxy = 0; | |
669 if ((motion_x & 3) != 0) | |
670 dxy |= 1; | |
671 if ((motion_y & 3) != 0) | |
672 dxy |= 2; | |
673 mx = motion_x >> 2; | |
674 my = motion_y >> 2; | |
675 } else { | |
676 mx = motion_x / 2; | |
677 my = motion_y / 2; | |
678 dxy = ((my & 1) << 1) | (mx & 1); | |
679 mx >>= 1; | |
680 my >>= 1; | |
681 } | |
682 | |
683 src_x = s->mb_x * 8 + mx; | |
684 src_y = s->mb_y * 8 + my; | |
685 src_x = clip(src_x, -8, s->width >> 1); | |
686 if (src_x == (s->width >> 1)) | |
687 dxy &= ~1; | |
688 src_y = clip(src_y, -8, s->height >> 1); | |
689 if (src_y == (s->height >> 1)) | |
690 dxy &= ~2; | |
691 offset = (src_y * uvlinesize) + src_x; | |
692 ptr = ref_picture[1] + offset; | |
693 if(emu){ | |
1317
26c44d2433c1
make ff_emulated_edge_mc() independant of MpegEncContext
michaelni
parents:
1273
diff
changeset
|
694 ff_emulated_edge_mc(s->edge_emu_buffer, ptr, s->uvlinesize, 9, 9, |
936 | 695 src_x, src_y, s->h_edge_pos>>1, s->v_edge_pos>>1); |
696 ptr= s->edge_emu_buffer; | |
697 } | |
698 pix_op[1][dxy](dest_cb, ptr, uvlinesize, h >> 1); | |
699 | |
700 ptr = ref_picture[2] + offset; | |
701 if(emu){ | |
1317
26c44d2433c1
make ff_emulated_edge_mc() independant of MpegEncContext
michaelni
parents:
1273
diff
changeset
|
702 ff_emulated_edge_mc(s->edge_emu_buffer, ptr, s->uvlinesize, 9, 9, |
936 | 703 src_x, src_y, s->h_edge_pos>>1, s->v_edge_pos>>1); |
704 ptr= s->edge_emu_buffer; | |
705 } | |
706 pix_op[1][dxy](dest_cr, ptr, uvlinesize, h >> 1); | |
707 } | |
708 | |
709 | |
710 static int wmv2_decode_mb(MpegEncContext *s, DCTELEM block[6][64]) | |
711 { | |
712 Wmv2Context * const w= (Wmv2Context*)s; | |
713 int cbp, code, i; | |
1064 | 714 uint8_t *coded_val; |
936 | 715 |
716 if(w->j_type) return 0; | |
717 | |
718 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
|
719 if(IS_SKIP(s->current_picture.mb_type[s->mb_y * s->mb_stride + s->mb_x])){ |
936 | 720 /* skip mb */ |
721 s->mb_intra = 0; | |
722 for(i=0;i<6;i++) | |
723 s->block_last_index[i] = -1; | |
724 s->mv_dir = MV_DIR_FORWARD; | |
725 s->mv_type = MV_TYPE_16X16; | |
726 s->mv[0][0][0] = 0; | |
727 s->mv[0][0][1] = 0; | |
728 s->mb_skiped = 1; | |
1185 | 729 w->hshift=0; |
936 | 730 return 0; |
731 } | |
732 | |
733 code = get_vlc2(&s->gb, mb_non_intra_vlc[w->cbp_table_index].table, MB_NON_INTRA_VLC_BITS, 3); | |
734 if (code < 0) | |
735 return -1; | |
736 s->mb_intra = (~code & 0x40) >> 6; | |
737 | |
738 cbp = code & 0x3f; | |
739 } else { | |
740 s->mb_intra = 1; | |
741 code = get_vlc2(&s->gb, mb_intra_vlc.table, MB_INTRA_VLC_BITS, 2); | |
742 if (code < 0){ | |
743 fprintf(stderr, "II-cbp illegal at %d %d\n", s->mb_x, s->mb_y); | |
744 return -1; | |
745 } | |
746 /* predict coded block pattern */ | |
747 cbp = 0; | |
748 for(i=0;i<6;i++) { | |
749 int val = ((code >> (5 - i)) & 1); | |
750 if (i < 4) { | |
751 int pred = coded_block_pred(s, i, &coded_val); | |
752 val = val ^ pred; | |
753 *coded_val = val; | |
754 } | |
755 cbp |= val << (5 - i); | |
756 } | |
757 } | |
758 | |
759 if (!s->mb_intra) { | |
760 int mx, my; | |
761 //printf("P at %d %d\n", s->mb_x, s->mb_y); | |
762 wmv2_pred_motion(w, &mx, &my); | |
763 | |
764 if(cbp){ | |
765 if(s->per_mb_rl_table){ | |
766 s->rl_table_index = decode012(&s->gb); | |
767 s->rl_chroma_table_index = s->rl_table_index; | |
768 } | |
769 | |
770 if(w->abt_flag && w->per_mb_abt){ | |
771 w->per_block_abt= get_bits1(&s->gb); | |
772 if(!w->per_block_abt) | |
773 w->abt_type= decode012(&s->gb); | |
774 }else | |
775 w->per_block_abt=0; | |
776 } | |
777 | |
778 if (wmv2_decode_motion(w, &mx, &my) < 0) | |
779 return -1; | |
780 | |
781 s->mv_dir = MV_DIR_FORWARD; | |
782 s->mv_type = MV_TYPE_16X16; | |
783 s->mv[0][0][0] = mx; | |
784 s->mv[0][0][1] = my; | |
785 | |
786 for (i = 0; i < 6; i++) { | |
787 if (wmv2_decode_inter_block(w, block[i], i, (cbp >> (5 - i)) & 1) < 0) | |
788 { | |
789 fprintf(stderr,"\nerror while decoding inter block: %d x %d (%d)\n", s->mb_x, s->mb_y, i); | |
790 return -1; | |
791 } | |
792 } | |
793 } else { | |
794 //if(s->pict_type==P_TYPE) | |
795 // printf("%d%d ", s->inter_intra_pred, cbp); | |
796 //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)); | |
797 s->ac_pred = get_bits1(&s->gb); | |
798 if(s->inter_intra_pred){ | |
799 s->h263_aic_dir= get_vlc2(&s->gb, inter_intra_vlc.table, INTER_INTRA_VLC_BITS, 1); | |
800 // printf("%d%d %d %d/", s->ac_pred, s->h263_aic_dir, s->mb_x, s->mb_y); | |
801 } | |
802 if(s->per_mb_rl_table && cbp){ | |
803 s->rl_table_index = decode012(&s->gb); | |
804 s->rl_chroma_table_index = s->rl_table_index; | |
805 } | |
806 | |
807 for (i = 0; i < 6; i++) { | |
808 if (msmpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, NULL) < 0) | |
809 { | |
810 fprintf(stderr,"\nerror while decoding intra block: %d x %d (%d)\n", s->mb_x, s->mb_y, i); | |
811 return -1; | |
812 } | |
813 } | |
814 } | |
815 | |
816 return 0; | |
817 } | |
818 | |
819 static int wmv2_decode_init(AVCodecContext *avctx){ | |
820 Wmv2Context * const w= avctx->priv_data; | |
821 | |
822 if(ff_h263_decode_init(avctx) < 0) | |
823 return -1; | |
824 | |
825 wmv2_common_init(w); | |
826 | |
827 return 0; | |
828 } | |
829 | |
830 AVCodec wmv2_decoder = { | |
831 "wmv2", | |
832 CODEC_TYPE_VIDEO, | |
833 CODEC_ID_WMV2, | |
834 sizeof(Wmv2Context), | |
835 wmv2_decode_init, | |
836 NULL, | |
837 ff_h263_decode_end, | |
838 ff_h263_decode_frame, | |
839 CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1, | |
840 }; | |
841 | |
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
|
842 #ifdef CONFIG_ENCODERS |
936 | 843 AVCodec wmv2_encoder = { |
844 "wmv2", | |
845 CODEC_TYPE_VIDEO, | |
846 CODEC_ID_WMV2, | |
847 sizeof(Wmv2Context), | |
848 wmv2_encode_init, | |
849 MPV_encode_picture, | |
850 MPV_encode_end, | |
851 }; | |
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
|
852 #endif |