FFmpeg
Loading...
Searching...
No Matches
rv34.c
Go to the documentation of this file.
1/*
2 * RV30/40 decoder common data
3 * Copyright (c) 2007 Mike Melanson, Konstantin Shishkov
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22/**
23 * @file
24 * RV30/40 decoder common data
25 */
26
28#include "libavutil/avassert.h"
29#include "libavutil/imgutils.h"
30#include "libavutil/internal.h"
31#include "libavutil/mem.h"
33#include "libavutil/thread.h"
34
35#include "avcodec.h"
36#include "decode.h"
37#include "error_resilience.h"
38#include "mpegutils.h"
39#include "mpegvideo.h"
40#include "mpegvideodec.h"
41#include "golomb.h"
42#include "mathops.h"
43#include "mpeg_er.h"
44#include "qpeldsp.h"
45#include "rectangle.h"
46#include "thread.h"
47#include "threadprogress.h"
48
49#include "rv34vlc.h"
50#include "rv34data.h"
51#include "rv34.h"
52
53static inline void ZERO8x2(void* dst, int stride)
54{
55 fill_rectangle(dst, 1, 2, stride, 0, 4);
56 fill_rectangle(((uint8_t*)(dst))+4, 1, 2, stride, 0, 4);
57}
58
59/** translation of RV30/40 macroblock types to lavc ones */
74
75
77
78static int rv34_decode_mv(RV34DecContext *r, int block_type);
79
80/**
81 * @name RV30/40 VLC generating functions
82 * @{
83 */
84
85static VLCElem table_data[117592];
86
87/**
88 * Generate VLC from codeword lengths.
89 * @param bits codeword lengths (zeroes are accepted)
90 * @param size length of input data
91 * @param vlc output VLC
92 * @param insyms symbols for input codes (NULL for default ones)
93 * @param num VLC table number (for static initialization)
94 */
95static av_cold void rv34_gen_vlc_ext(const uint8_t *bits, int size, VLC *vlc,
96 const uint8_t *syms, int mod_three_bits_offset, int *offset)
97{
98 int counts[17] = {0}, codes[17];
99 int maxbits;
100
101 av_assert1(size > 0);
102
103 for (int i = 0; i < size; i++)
104 counts[bits[i]]++;
105
106 /* bits[0] is zero for some tables, i.e. syms actually starts at 1.
107 * So we reset it here. The code assigned to this element is 0x00. */
108 codes[0] = counts[0] = 0;
109 for (int i = 0; i < 16; i++) {
110 codes[i+1] = (codes[i] + counts[i]) << 1;
111 if (counts[i])
112 maxbits = i;
113 }
114
115 uint16_t symbols[MAX_VLC_SIZE];
116 uint16_t cw[MAX_VLC_SIZE];
117 const void *symp = syms;
118 int symbol_size;
119
120 if (mod_three_bits_offset > 0) {
121 symp = symbols;
122 symbol_size = 2;
123
124 for (int i = 0, mask = (1 << mod_three_bits_offset) - 1; i < size; ++i) {
125 cw[i] = codes[bits[i]]++;
126 symbols[i] = (modulo_three_table[i >> mod_three_bits_offset] << mod_three_bits_offset) | (i & mask);
127 }
128 } else {
129 if (!mod_three_bits_offset)
130 symp = modulo_three_table;
131
132 symbol_size = !!symp;
133 for (int i = 0; i < size; ++i)
134 cw[i] = codes[bits[i]]++;
135 }
136
137 vlc->table = &table_data[*offset];
139 ff_vlc_init_sparse(vlc, FFMIN(maxbits, 9), size,
140 bits, 1, 1,
141 cw, 2, 2,
142 symp, symbol_size, symbol_size, VLC_INIT_STATIC_OVERLONG);
143 *offset += vlc->table_size;
144}
145
146static av_cold void rv34_gen_vlc(const uint8_t *bits, int size, const VLCElem **vlcp,
147 int mod_three_bits_offset, int *offset)
148{
149 VLC vlc = { 0 };
150 rv34_gen_vlc_ext(bits, size, &vlc, NULL, mod_three_bits_offset, offset);
151 *vlcp = vlc.table;
152}
153
154/**
155 * Initialize all tables.
156 */
157static av_cold void rv34_init_tables(void)
158{
159 int i, j, k, offset = 0;
160
161 for(i = 0; i < NUM_INTRA_TABLES; i++){
162 for(j = 0; j < 2; j++){
164 &intra_vlcs[i].cbppattern[j], 4, &offset);
166 &intra_vlcs[i].second_pattern[j], 0, &offset);
168 &intra_vlcs[i].third_pattern[j], 0, &offset);
169 for(k = 0; k < 4; k++){
171 &intra_vlcs[i].cbp[j][k], rv34_cbp_code, -1, &offset);
172 }
173 }
174 for(j = 0; j < 4; j++){
176 &intra_vlcs[i].first_pattern[j], 3, &offset);
177 }
179 &intra_vlcs[i].coefficient, -1, &offset);
180 }
181
182 for(i = 0; i < NUM_INTER_TABLES; i++){
184 &inter_vlcs[i].cbppattern[0], 4, &offset);
185 for(j = 0; j < 4; j++){
187 &inter_vlcs[i].cbp[0][j], rv34_cbp_code, -1, &offset);
188 }
189 for(j = 0; j < 2; j++){
191 &inter_vlcs[i].first_pattern[j], 3, &offset);
193 &inter_vlcs[i].second_pattern[j], 0, &offset);
195 &inter_vlcs[i].third_pattern[j], 0, &offset);
196 }
198 &inter_vlcs[i].coefficient, -1, &offset);
199 }
200}
201
202/** @} */ // vlc group
203
204/**
205 * @name RV30/40 4x4 block decoding functions
206 * @{
207 */
208
209/**
210 * Decode coded block pattern.
211 */
212static int rv34_decode_cbp(GetBitContext *gb, const RV34VLC *vlc, int table)
213{
214 int pattern, code, cbp=0;
215 int ones;
216 static const int cbp_masks[3] = {0x100000, 0x010000, 0x110000};
217 static const int shifts[4] = { 0, 2, 8, 10 };
218 const int *curshift = shifts;
219 int i, t, mask;
220
221 code = get_vlc2(gb, vlc->cbppattern[table], 9, 2);
222 pattern = code & 0xF;
223 code >>= 4;
224
225 ones = rv34_count_ones[pattern];
226
227 for(mask = 8; mask; mask >>= 1, curshift++){
228 if(pattern & mask)
229 cbp |= get_vlc2(gb, vlc->cbp[table][ones].table, vlc->cbp[table][ones].bits, 1) << curshift[0];
230 }
231
232 for(i = 0; i < 4; i++){
233 t = (code >> (6 - 2*i)) & 3;
234 if(t == 1)
235 cbp |= cbp_masks[get_bits1(gb)] << i;
236 if(t == 2)
237 cbp |= cbp_masks[2] << i;
238 }
239 return cbp;
240}
241
242/**
243 * Get one coefficient value from the bitstream and store it.
244 */
245static inline void decode_coeff(int16_t *dst, int coef, int esc, GetBitContext *gb,
246 const VLCElem *vlc, int q)
247{
248 if(coef){
249 if(coef == esc){
250 coef = get_vlc2(gb, vlc, 9, 2);
251 if(coef > 23){
252 coef -= 23;
253 coef = 22 + ((1 << coef) | get_bits(gb, coef));
254 }
255 coef += esc;
256 }
257 if(get_bits1(gb))
258 coef = -coef;
259 *dst = (coef*q + 8) >> 4;
260 }
261}
262
263/**
264 * Decode 2x2 subblock of coefficients.
265 */
266static inline void decode_subblock(int16_t *dst, int flags, const int is_block2,
267 GetBitContext *gb, const VLCElem *vlc, int q)
268{
269 decode_coeff( dst+0*4+0, (flags >> 6) , 3, gb, vlc, q);
270 if(is_block2){
271 decode_coeff(dst+1*4+0, (flags >> 4) & 3, 2, gb, vlc, q);
272 decode_coeff(dst+0*4+1, (flags >> 2) & 3, 2, gb, vlc, q);
273 }else{
274 decode_coeff(dst+0*4+1, (flags >> 4) & 3, 2, gb, vlc, q);
275 decode_coeff(dst+1*4+0, (flags >> 2) & 3, 2, gb, vlc, q);
276 }
277 decode_coeff( dst+1*4+1, (flags >> 0) & 3, 2, gb, vlc, q);
278}
279
280/**
281 * Decode a single coefficient.
282 */
283static inline void decode_subblock1(int16_t *dst, int flags, GetBitContext *gb,
284 const VLCElem *vlc, int q)
285{
286 int coeff = flags >> 6;
287 decode_coeff(dst, coeff, 3, gb, vlc, q);
288}
289
290static inline void decode_subblock3(int16_t *dst, int flags, GetBitContext *gb,
291 const VLCElem *vlc,
292 int q_dc, int q_ac1, int q_ac2)
293{
294 decode_coeff(dst+0*4+0, (flags >> 6) , 3, gb, vlc, q_dc);
295 decode_coeff(dst+0*4+1, (flags >> 4) & 3, 2, gb, vlc, q_ac1);
296 decode_coeff(dst+1*4+0, (flags >> 2) & 3, 2, gb, vlc, q_ac1);
297 decode_coeff(dst+1*4+1, (flags >> 0) & 3, 2, gb, vlc, q_ac2);
298}
299
300/**
301 * Decode coefficients for 4x4 block.
302 *
303 * This is done by filling 2x2 subblocks with decoded coefficients
304 * in this order (the same for subblocks and subblock coefficients):
305 * o--o
306 * /
307 * /
308 * o--o
309 */
310
311static int rv34_decode_block(int16_t *dst, GetBitContext *gb, const RV34VLC *rvlc,
312 int fc, int sc, int q_dc, int q_ac1, int q_ac2)
313{
314 int flags = get_vlc2(gb, rvlc->first_pattern[fc], 9, 2);
315
316 int pattern = flags & 0x7;
317
318 flags >>= 3;
319
320 if (flags & 0x3F) {
321 decode_subblock3(dst, flags, gb, rvlc->coefficient, q_dc, q_ac1, q_ac2);
322 } else {
323 decode_subblock1(dst, flags, gb, rvlc->coefficient, q_dc);
324 if (!pattern)
325 return 0;
326 }
327
328 if(pattern & 4){
329 flags = get_vlc2(gb, rvlc->second_pattern[sc], 9, 2);
330 decode_subblock(dst + 4*0+2, flags, 0, gb, rvlc->coefficient, q_ac2);
331 }
332 if(pattern & 2){ // Looks like coefficients 1 and 2 are swapped for this block
333 flags = get_vlc2(gb, rvlc->second_pattern[sc], 9, 2);
334 decode_subblock(dst + 4*2+0, flags, 1, gb, rvlc->coefficient, q_ac2);
335 }
336 if(pattern & 1){
337 flags = get_vlc2(gb, rvlc->third_pattern[sc], 9, 2);
338 decode_subblock(dst + 4*2+2, flags, 0, gb, rvlc->coefficient, q_ac2);
339 }
340 return 1;
341}
342
343/**
344 * @name RV30/40 bitstream parsing
345 * @{
346 */
347
348/**
349 * Decode starting slice position.
350 * @todo Maybe replace with ff_h263_decode_mba() ?
351 */
353{
354 int i;
355 for(i = 0; i < 5; i++)
356 if(rv34_mb_max_sizes[i] >= mb_size - 1)
357 break;
358 return get_bits(gb, rv34_mb_bits_sizes[i]);
359}
360
361/**
362 * Select VLC set for decoding from current quantizer, modifier and frame type.
363 */
364static inline RV34VLC* choose_vlc_set(int quant, int mod, int type)
365{
366 if(mod == 2 && quant < 19) quant += 10;
367 else if(mod && quant < 26) quant += 5;
368 av_assert2(quant >= 0 && quant < 32);
371}
372
373/**
374 * Decode intra macroblock header and return CBP in case of success, -1 otherwise.
375 */
376static int rv34_decode_intra_mb_header(RV34DecContext *r, int8_t *intra_types)
377{
378 MpegEncContext *s = &r->s;
379 GetBitContext *const gb = &r->gb;
380 int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
381 int t;
382
383 r->is16 = get_bits1(gb);
384 if(r->is16){
385 s->cur_pic.mb_type[mb_pos] = MB_TYPE_INTRA16x16;
386 r->block_type = RV34_MB_TYPE_INTRA16x16;
387 t = get_bits(gb, 2);
388 fill_rectangle(intra_types, 4, 4, r->intra_types_stride, t, sizeof(intra_types[0]));
389 r->luma_vlc = 2;
390 }else{
391 if(!r->rv30){
392 if(!get_bits1(gb))
393 av_log(s->avctx, AV_LOG_ERROR, "Need DQUANT\n");
394 }
395 s->cur_pic.mb_type[mb_pos] = MB_TYPE_INTRA;
396 r->block_type = RV34_MB_TYPE_INTRA;
397 if(r->decode_intra_types(r, gb, intra_types) < 0)
398 return -1;
399 r->luma_vlc = 1;
400 }
401
402 r->chroma_vlc = 0;
403 r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 0);
404
405 return rv34_decode_cbp(gb, r->cur_vlcs, r->is16);
406}
407
408/**
409 * Decode inter macroblock header and return CBP in case of success, -1 otherwise.
410 */
411static int rv34_decode_inter_mb_header(RV34DecContext *r, int8_t *intra_types)
412{
413 MpegEncContext *s = &r->s;
414 GetBitContext *const gb = &r->gb;
415 int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
416 int i, t;
417
418 r->block_type = r->decode_mb_info(r);
419 if(r->block_type == -1)
420 return -1;
421 s->cur_pic.mb_type[mb_pos] = rv34_mb_type_to_lavc[r->block_type];
422 r->mb_type[mb_pos] = r->block_type;
423 if(r->block_type == RV34_MB_SKIP){
424 if(s->pict_type == AV_PICTURE_TYPE_P)
425 r->mb_type[mb_pos] = RV34_MB_P_16x16;
426 if(s->pict_type == AV_PICTURE_TYPE_B)
427 r->mb_type[mb_pos] = RV34_MB_B_DIRECT;
428 }
429 r->is16 = !!IS_INTRA16x16(s->cur_pic.mb_type[mb_pos]);
430 if (rv34_decode_mv(r, r->block_type) < 0)
431 return -1;
432 if(r->block_type == RV34_MB_SKIP){
433 fill_rectangle(intra_types, 4, 4, r->intra_types_stride, 0, sizeof(intra_types[0]));
434 return 0;
435 }
436 r->chroma_vlc = 1;
437 r->luma_vlc = 0;
438
439 if (IS_INTRA(s->cur_pic.mb_type[mb_pos])) {
440 if(r->is16){
441 t = get_bits(gb, 2);
442 fill_rectangle(intra_types, 4, 4, r->intra_types_stride, t, sizeof(intra_types[0]));
443 r->luma_vlc = 2;
444 }else{
445 if(r->decode_intra_types(r, gb, intra_types) < 0)
446 return -1;
447 r->luma_vlc = 1;
448 }
449 r->chroma_vlc = 0;
450 r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 0);
451 }else{
452 for(i = 0; i < 16; i++)
453 intra_types[(i & 3) + (i>>2) * r->intra_types_stride] = 0;
454 r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 1);
455 if(r->mb_type[mb_pos] == RV34_MB_P_MIX16x16){
456 r->is16 = 1;
457 r->chroma_vlc = 1;
458 r->luma_vlc = 2;
459 r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 0);
460 }
461 }
462
463 return rv34_decode_cbp(gb, r->cur_vlcs, r->is16);
464}
465
466/** @} */ //bitstream functions
467
468/**
469 * @name motion vector related code (prediction, reconstruction, motion compensation)
470 * @{
471 */
472
473/** macroblock partition width in 8x8 blocks */
474static const uint8_t part_sizes_w[RV34_MB_TYPES] = { 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2 };
475
476/** macroblock partition height in 8x8 blocks */
477static const uint8_t part_sizes_h[RV34_MB_TYPES] = { 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2 };
478
479/** availability index for subblocks */
480static const uint8_t avail_indexes[4] = { 6, 7, 10, 11 };
481
482/**
483 * motion vector prediction
484 *
485 * Motion prediction performed for the block by using median prediction of
486 * motion vectors from the left, top and right top blocks but in corner cases
487 * some other vectors may be used instead.
488 */
489static void rv34_pred_mv(RV34DecContext *r, int block_type, int subblock_no, int dmv_no)
490{
491 MpegEncContext *s = &r->s;
492 int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
493 int A[2] = {0}, B[2], C[2];
494 int i, j;
495 int mx, my;
496 int* avail = r->avail_cache + avail_indexes[subblock_no];
497 int c_off = part_sizes_w[block_type];
498 int16_t (*motion_val)[2] = s->cur_pic.motion_val[0];
499
500 mv_pos += (subblock_no & 1) + (subblock_no >> 1)*s->b8_stride;
501 if(subblock_no == 3)
502 c_off = -1;
503
504 if(avail[-1]){
505 A[0] = motion_val[mv_pos-1][0];
506 A[1] = motion_val[mv_pos-1][1];
507 }
508 if(avail[-4]){
509 B[0] = motion_val[mv_pos-s->b8_stride][0];
510 B[1] = motion_val[mv_pos-s->b8_stride][1];
511 }else{
512 B[0] = A[0];
513 B[1] = A[1];
514 }
515 if(!avail[c_off-4]){
516 if(avail[-4] && (avail[-1] || r->rv30)){
517 C[0] = motion_val[mv_pos-s->b8_stride-1][0];
518 C[1] = motion_val[mv_pos-s->b8_stride-1][1];
519 }else{
520 C[0] = A[0];
521 C[1] = A[1];
522 }
523 }else{
524 C[0] = motion_val[mv_pos-s->b8_stride+c_off][0];
525 C[1] = motion_val[mv_pos-s->b8_stride+c_off][1];
526 }
527 mx = mid_pred(A[0], B[0], C[0]);
528 my = mid_pred(A[1], B[1], C[1]);
529 mx += r->dmv[dmv_no][0];
530 my += r->dmv[dmv_no][1];
531 for(j = 0; j < part_sizes_h[block_type]; j++){
532 for(i = 0; i < part_sizes_w[block_type]; i++){
533 motion_val[mv_pos + i + j*s->b8_stride][0] = mx;
534 motion_val[mv_pos + i + j*s->b8_stride][1] = my;
535 }
536 }
537}
538
539#define GET_PTS_DIFF(a, b) (((a) - (b) + 8192) & 0x1FFF)
540
541/**
542 * Calculate motion vector component that should be added for direct blocks.
543 */
544static int calc_add_mv(RV34DecContext *r, int dir, int val)
545{
546 int mul = dir ? -r->mv_weight2 : r->mv_weight1;
547
548 return (int)(val * (SUINT)mul + 0x2000) >> 14;
549}
550
551/**
552 * Predict motion vector for B-frame macroblock.
553 */
554static inline void rv34_pred_b_vector(int A[2], int B[2], int C[2],
555 int A_avail, int B_avail, int C_avail,
556 int *mx, int *my)
557{
558 if(A_avail + B_avail + C_avail != 3){
559 *mx = A[0] + B[0] + C[0];
560 *my = A[1] + B[1] + C[1];
561 if(A_avail + B_avail + C_avail == 2){
562 *mx /= 2;
563 *my /= 2;
564 }
565 }else{
566 *mx = mid_pred(A[0], B[0], C[0]);
567 *my = mid_pred(A[1], B[1], C[1]);
568 }
569}
570
571/**
572 * motion vector prediction for B-frames
573 */
574static void rv34_pred_mv_b(RV34DecContext *r, int block_type, int dir)
575{
576 MpegEncContext *s = &r->s;
577 int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
578 int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
579 int A[2] = { 0 }, B[2] = { 0 }, C[2] = { 0 };
580 int has_A = 0, has_B = 0, has_C = 0;
581 int mx, my;
582 int i, j;
583 MPVWorkPicture *cur_pic = &s->cur_pic;
584 const int mask = dir ? MB_TYPE_BACKWARD_MV : MB_TYPE_FORWARD_MV;
585 int type = cur_pic->mb_type[mb_pos];
586
587 if((r->avail_cache[6-1] & type) & mask){
588 A[0] = cur_pic->motion_val[dir][mv_pos - 1][0];
589 A[1] = cur_pic->motion_val[dir][mv_pos - 1][1];
590 has_A = 1;
591 }
592 if((r->avail_cache[6-4] & type) & mask){
593 B[0] = cur_pic->motion_val[dir][mv_pos - s->b8_stride][0];
594 B[1] = cur_pic->motion_val[dir][mv_pos - s->b8_stride][1];
595 has_B = 1;
596 }
597 if(r->avail_cache[6-4] && (r->avail_cache[6-2] & type) & mask){
598 C[0] = cur_pic->motion_val[dir][mv_pos - s->b8_stride + 2][0];
599 C[1] = cur_pic->motion_val[dir][mv_pos - s->b8_stride + 2][1];
600 has_C = 1;
601 }else if((s->mb_x+1) == s->mb_width && (r->avail_cache[6-5] & type) & mask){
602 C[0] = cur_pic->motion_val[dir][mv_pos - s->b8_stride - 1][0];
603 C[1] = cur_pic->motion_val[dir][mv_pos - s->b8_stride - 1][1];
604 has_C = 1;
605 }
606
607 rv34_pred_b_vector(A, B, C, has_A, has_B, has_C, &mx, &my);
608
609 mx += r->dmv[dir][0];
610 my += r->dmv[dir][1];
611
612 for(j = 0; j < 2; j++){
613 for(i = 0; i < 2; i++){
614 cur_pic->motion_val[dir][mv_pos + i + j*s->b8_stride][0] = mx;
615 cur_pic->motion_val[dir][mv_pos + i + j*s->b8_stride][1] = my;
616 }
617 }
618 if(block_type == RV34_MB_B_BACKWARD || block_type == RV34_MB_B_FORWARD){
619 ZERO8x2(cur_pic->motion_val[!dir][mv_pos], s->b8_stride);
620 }
621}
622
623/**
624 * motion vector prediction - RV3 version
625 */
626static void rv34_pred_mv_rv3(RV34DecContext *r, int block_type, int dir)
627{
628 MpegEncContext *s = &r->s;
629 int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
630 int A[2] = {0}, B[2], C[2];
631 int i, j, k;
632 int mx, my;
633 int* avail = r->avail_cache + avail_indexes[0];
634
635 if(avail[-1]){
636 A[0] = s->cur_pic.motion_val[0][mv_pos - 1][0];
637 A[1] = s->cur_pic.motion_val[0][mv_pos - 1][1];
638 }
639 if(avail[-4]){
640 B[0] = s->cur_pic.motion_val[0][mv_pos - s->b8_stride][0];
641 B[1] = s->cur_pic.motion_val[0][mv_pos - s->b8_stride][1];
642 }else{
643 B[0] = A[0];
644 B[1] = A[1];
645 }
646 if(!avail[-4 + 2]){
647 if(avail[-4] && (avail[-1])){
648 C[0] = s->cur_pic.motion_val[0][mv_pos - s->b8_stride - 1][0];
649 C[1] = s->cur_pic.motion_val[0][mv_pos - s->b8_stride - 1][1];
650 }else{
651 C[0] = A[0];
652 C[1] = A[1];
653 }
654 }else{
655 C[0] = s->cur_pic.motion_val[0][mv_pos - s->b8_stride + 2][0];
656 C[1] = s->cur_pic.motion_val[0][mv_pos - s->b8_stride + 2][1];
657 }
658 mx = mid_pred(A[0], B[0], C[0]);
659 my = mid_pred(A[1], B[1], C[1]);
660 mx += r->dmv[0][0];
661 my += r->dmv[0][1];
662 for(j = 0; j < 2; j++){
663 for(i = 0; i < 2; i++){
664 for(k = 0; k < 2; k++){
665 s->cur_pic.motion_val[k][mv_pos + i + j*s->b8_stride][0] = mx;
666 s->cur_pic.motion_val[k][mv_pos + i + j*s->b8_stride][1] = my;
667 }
668 }
669 }
670}
671
672static const int chroma_coeffs[3] = { 0, 3, 5 };
673
674/**
675 * generic motion compensation function
676 *
677 * @param r decoder context
678 * @param block_type type of the current block
679 * @param xoff horizontal offset from the start of the current block
680 * @param yoff vertical offset from the start of the current block
681 * @param mv_off offset to the motion vector information
682 * @param width width of the current partition in 8x8 blocks
683 * @param height height of the current partition in 8x8 blocks
684 * @param dir motion compensation direction (i.e. from the last or the next reference frame)
685 * @param thirdpel motion vectors are specified in 1/3 of pixel
686 * @param qpel_mc a set of functions used to perform luma motion compensation
687 * @param chroma_mc a set of functions used to perform chroma motion compensation
688 */
689static inline void rv34_mc(RV34DecContext *r, const int block_type,
690 const int xoff, const int yoff, int mv_off,
691 const int width, const int height, int dir,
692 const int thirdpel, int weighted,
693 qpel_mc_func (*qpel_mc)[16],
695{
696 MpegEncContext *s = &r->s;
697 uint8_t *Y, *U, *V;
698 const uint8_t *srcY, *srcU, *srcV;
699 int dxy, mx, my, umx, umy, lx, ly, uvmx, uvmy, src_x, src_y, uvsrc_x, uvsrc_y;
700 int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride + mv_off;
701 int is16x16 = 1;
702 int emu = 0;
703 int16_t *motion_val = s->cur_pic.motion_val[dir][mv_pos];
704
705 if(thirdpel){
706 int chroma_mx, chroma_my;
707 mx = (motion_val[0] + (3 << 24)) / 3 - (1 << 24);
708 my = (motion_val[1] + (3 << 24)) / 3 - (1 << 24);
709 lx = (motion_val[0] + (3 << 24)) % 3;
710 ly = (motion_val[1] + (3 << 24)) % 3;
711 chroma_mx = motion_val[0] / 2;
712 chroma_my = motion_val[1] / 2;
713 umx = (chroma_mx + (3 << 24)) / 3 - (1 << 24);
714 umy = (chroma_my + (3 << 24)) / 3 - (1 << 24);
715 uvmx = chroma_coeffs[(chroma_mx + (3 << 24)) % 3];
716 uvmy = chroma_coeffs[(chroma_my + (3 << 24)) % 3];
717 }else{
718 int cx, cy;
719 mx = motion_val[0] >> 2;
720 my = motion_val[1] >> 2;
721 lx = motion_val[0] & 3;
722 ly = motion_val[1] & 3;
723 cx = motion_val[0] / 2;
724 cy = motion_val[1] / 2;
725 umx = cx >> 2;
726 umy = cy >> 2;
727 uvmx = (cx & 3) << 1;
728 uvmy = (cy & 3) << 1;
729 //due to some flaw RV40 uses the same MC compensation routine for H2V2 and H3V3
730 if(uvmx == 6 && uvmy == 6)
731 uvmx = uvmy = 4;
732 }
733
734 if (HAVE_THREADS && (s->avctx->active_thread_type & FF_THREAD_FRAME)) {
735 /* wait for the referenced mb row to be finished */
736 int mb_row = s->mb_y + ((yoff + my + 5 + 8 * height) >> 4);
737 const ThreadProgress *p = dir ? &s->next_pic.ptr->progress : &s->last_pic.ptr->progress;
738 ff_thread_progress_await(p, mb_row);
739 }
740
741 dxy = ly*4 + lx;
742 srcY = dir ? s->next_pic.data[0] : s->last_pic.data[0];
743 srcU = dir ? s->next_pic.data[1] : s->last_pic.data[1];
744 srcV = dir ? s->next_pic.data[2] : s->last_pic.data[2];
745 src_x = s->mb_x * 16 + xoff + mx;
746 src_y = s->mb_y * 16 + yoff + my;
747 uvsrc_x = s->mb_x * 8 + (xoff >> 1) + umx;
748 uvsrc_y = s->mb_y * 8 + (yoff >> 1) + umy;
749 srcY += src_y * s->linesize + src_x;
750 srcU += uvsrc_y * s->uvlinesize + uvsrc_x;
751 srcV += uvsrc_y * s->uvlinesize + uvsrc_x;
752 if(s->h_edge_pos - (width << 3) < 6 || s->v_edge_pos - (height << 3) < 6 ||
753 (unsigned)(src_x - !!lx*2) > s->h_edge_pos - !!lx*2 - (width <<3) - 4 ||
754 (unsigned)(src_y - !!ly*2) > s->v_edge_pos - !!ly*2 - (height<<3) - 4) {
755 srcY -= 2 + 2*s->linesize;
756 s->vdsp.emulated_edge_mc(s->sc.edge_emu_buffer, srcY,
757 s->linesize, s->linesize,
758 (width << 3) + 6, (height << 3) + 6,
759 src_x - 2, src_y - 2,
760 s->h_edge_pos, s->v_edge_pos);
761 srcY = s->sc.edge_emu_buffer + 2 + 2*s->linesize;
762 emu = 1;
763 }
764 if(!weighted){
765 Y = s->dest[0] + xoff + yoff *s->linesize;
766 U = s->dest[1] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
767 V = s->dest[2] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
768 }else{
769 Y = r->tmp_b_block_y [dir] + xoff + yoff *s->linesize;
770 U = r->tmp_b_block_uv[dir*2] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
771 V = r->tmp_b_block_uv[dir*2+1] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
772 }
773
774 if(block_type == RV34_MB_P_16x8){
775 qpel_mc[1][dxy](Y, srcY, s->linesize);
776 Y += 8;
777 srcY += 8;
778 }else if(block_type == RV34_MB_P_8x16){
779 qpel_mc[1][dxy](Y, srcY, s->linesize);
780 Y += 8 * s->linesize;
781 srcY += 8 * s->linesize;
782 }
783 is16x16 = (block_type != RV34_MB_P_8x8) && (block_type != RV34_MB_P_16x8) && (block_type != RV34_MB_P_8x16);
784 qpel_mc[!is16x16][dxy](Y, srcY, s->linesize);
785 if (emu) {
786 uint8_t *uvbuf = s->sc.edge_emu_buffer;
787
788 s->vdsp.emulated_edge_mc(uvbuf, srcU,
789 s->uvlinesize, s->uvlinesize,
790 (width << 2) + 1, (height << 2) + 1,
791 uvsrc_x, uvsrc_y,
792 s->h_edge_pos >> 1, s->v_edge_pos >> 1);
793 srcU = uvbuf;
794 uvbuf += 9*s->uvlinesize;
795
796 s->vdsp.emulated_edge_mc(uvbuf, srcV,
797 s->uvlinesize, s->uvlinesize,
798 (width << 2) + 1, (height << 2) + 1,
799 uvsrc_x, uvsrc_y,
800 s->h_edge_pos >> 1, s->v_edge_pos >> 1);
801 srcV = uvbuf;
802 }
803 chroma_mc[2-width] (U, srcU, s->uvlinesize, height*4, uvmx, uvmy);
804 chroma_mc[2-width] (V, srcV, s->uvlinesize, height*4, uvmx, uvmy);
805}
806
807static void rv34_mc_1mv(RV34DecContext *r, const int block_type,
808 const int xoff, const int yoff, int mv_off,
809 const int width, const int height, int dir)
810{
811 rv34_mc(r, block_type, xoff, yoff, mv_off, width, height, dir, r->rv30, 0,
812 r->rdsp.put_pixels_tab,
813 r->rdsp.put_chroma_pixels_tab);
814}
815
817{
818 r->rdsp.rv40_weight_pixels_tab[r->scaled_weight][0](r->s.dest[0],
819 r->tmp_b_block_y[0],
820 r->tmp_b_block_y[1],
821 r->weight1,
822 r->weight2,
823 r->s.linesize);
824 r->rdsp.rv40_weight_pixels_tab[r->scaled_weight][1](r->s.dest[1],
825 r->tmp_b_block_uv[0],
826 r->tmp_b_block_uv[2],
827 r->weight1,
828 r->weight2,
829 r->s.uvlinesize);
830 r->rdsp.rv40_weight_pixels_tab[r->scaled_weight][1](r->s.dest[2],
831 r->tmp_b_block_uv[1],
832 r->tmp_b_block_uv[3],
833 r->weight1,
834 r->weight2,
835 r->s.uvlinesize);
836}
837
838static void rv34_mc_2mv(RV34DecContext *r, const int block_type)
839{
840 int weighted = !r->rv30 && block_type != RV34_MB_B_BIDIR && r->weight1 != 8192;
841
842 rv34_mc(r, block_type, 0, 0, 0, 2, 2, 0, r->rv30, weighted,
843 r->rdsp.put_pixels_tab,
844 r->rdsp.put_chroma_pixels_tab);
845 if(!weighted){
846 rv34_mc(r, block_type, 0, 0, 0, 2, 2, 1, r->rv30, 0,
847 r->rdsp.avg_pixels_tab,
848 r->rdsp.avg_chroma_pixels_tab);
849 }else{
850 rv34_mc(r, block_type, 0, 0, 0, 2, 2, 1, r->rv30, 1,
851 r->rdsp.put_pixels_tab,
852 r->rdsp.put_chroma_pixels_tab);
853 rv4_weight(r);
854 }
855}
856
858{
859 int i, j;
860 int weighted = !r->rv30 && r->weight1 != 8192;
861
862 for(j = 0; j < 2; j++)
863 for(i = 0; i < 2; i++){
864 rv34_mc(r, RV34_MB_P_8x8, i*8, j*8, i+j*r->s.b8_stride, 1, 1, 0, r->rv30,
865 weighted,
866 r->rdsp.put_pixels_tab,
867 r->rdsp.put_chroma_pixels_tab);
868 rv34_mc(r, RV34_MB_P_8x8, i*8, j*8, i+j*r->s.b8_stride, 1, 1, 1, r->rv30,
869 weighted,
870 weighted ? r->rdsp.put_pixels_tab : r->rdsp.avg_pixels_tab,
871 weighted ? r->rdsp.put_chroma_pixels_tab : r->rdsp.avg_chroma_pixels_tab);
872 }
873 if(weighted)
874 rv4_weight(r);
875}
876
877/** number of motion vectors in each macroblock type */
878static const int num_mvs[RV34_MB_TYPES] = { 0, 0, 1, 4, 1, 1, 0, 0, 2, 2, 2, 1 };
879
880/**
881 * Decode motion vector differences
882 * and perform motion vector reconstruction and motion compensation.
883 */
884static int rv34_decode_mv(RV34DecContext *r, int block_type)
885{
886 MpegEncContext *s = &r->s;
887 GetBitContext *const gb = &r->gb;
888 int i, j, k, l;
889 int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
890 int next_bt;
891
892 memset(r->dmv, 0, sizeof(r->dmv));
893 for(i = 0; i < num_mvs[block_type]; i++){
894 r->dmv[i][0] = get_interleaved_se_golomb(gb);
895 r->dmv[i][1] = get_interleaved_se_golomb(gb);
896 if (r->dmv[i][0] == INVALID_VLC ||
897 r->dmv[i][1] == INVALID_VLC) {
898 r->dmv[i][0] = r->dmv[i][1] = 0;
899 return AVERROR_INVALIDDATA;
900 }
901 }
902 switch(block_type){
905 ZERO8x2(s->cur_pic.motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
906 return 0;
907 case RV34_MB_SKIP:
908 if(s->pict_type == AV_PICTURE_TYPE_P){
909 ZERO8x2(s->cur_pic.motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
910 rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, 0);
911 break;
912 }
914 case RV34_MB_B_DIRECT:
915 //surprisingly, it uses motion scheme from next reference frame
916 /* wait for the current mb row to be finished */
917 if (HAVE_THREADS && (s->avctx->active_thread_type & FF_THREAD_FRAME))
918 ff_thread_progress_await(&s->next_pic.ptr->progress, FFMAX(0, s->mb_y-1));
919
920 next_bt = s->next_pic.mb_type[s->mb_x + s->mb_y * s->mb_stride];
921 if(IS_INTRA(next_bt) || IS_SKIP(next_bt)){
922 ZERO8x2(s->cur_pic.motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
923 ZERO8x2(s->cur_pic.motion_val[1][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
924 }else
925 for(j = 0; j < 2; j++)
926 for(i = 0; i < 2; i++)
927 for(k = 0; k < 2; k++)
928 for(l = 0; l < 2; l++)
929 s->cur_pic.motion_val[l][mv_pos + i + j*s->b8_stride][k] = calc_add_mv(r, l, s->next_pic.motion_val[0][mv_pos + i + j*s->b8_stride][k]);
930 if(!(IS_16X8(next_bt) || IS_8X16(next_bt) || IS_8X8(next_bt))) //we can use whole macroblock MC
931 rv34_mc_2mv(r, block_type);
932 else
934 ZERO8x2(s->cur_pic.motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
935 break;
936 case RV34_MB_P_16x16:
938 rv34_pred_mv(r, block_type, 0, 0);
939 rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, 0);
940 break;
943 r->dmv[1][0] = r->dmv[0][0];
944 r->dmv[1][1] = r->dmv[0][1];
945 if(r->rv30)
946 rv34_pred_mv_rv3(r, block_type, block_type == RV34_MB_B_BACKWARD);
947 else
948 rv34_pred_mv_b (r, block_type, block_type == RV34_MB_B_BACKWARD);
949 rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, block_type == RV34_MB_B_BACKWARD);
950 break;
951 case RV34_MB_P_16x8:
952 case RV34_MB_P_8x16:
953 rv34_pred_mv(r, block_type, 0, 0);
954 rv34_pred_mv(r, block_type, 1 + (block_type == RV34_MB_P_16x8), 1);
955 if(block_type == RV34_MB_P_16x8){
956 rv34_mc_1mv(r, block_type, 0, 0, 0, 2, 1, 0);
957 rv34_mc_1mv(r, block_type, 0, 8, s->b8_stride, 2, 1, 0);
958 }
959 if(block_type == RV34_MB_P_8x16){
960 rv34_mc_1mv(r, block_type, 0, 0, 0, 1, 2, 0);
961 rv34_mc_1mv(r, block_type, 8, 0, 1, 1, 2, 0);
962 }
963 break;
964 case RV34_MB_B_BIDIR:
965 rv34_pred_mv_b (r, block_type, 0);
966 rv34_pred_mv_b (r, block_type, 1);
967 rv34_mc_2mv (r, block_type);
968 break;
969 case RV34_MB_P_8x8:
970 for(i=0;i< 4;i++){
971 rv34_pred_mv(r, block_type, i, i);
972 rv34_mc_1mv (r, block_type, (i&1)<<3, (i&2)<<2, (i&1)+(i>>1)*s->b8_stride, 1, 1, 0);
973 }
974 break;
975 }
976
977 return 0;
978}
979/** @} */ // mv group
980
981/**
982 * @name Macroblock reconstruction functions
983 * @{
984 */
985/** mapping of RV30/40 intra prediction types to standard H.264 types */
990
991/** mapping of RV30/40 intra 16x16 prediction types to standard H.264 types */
992static const int ittrans16[4] = {
994};
995
996/**
997 * Perform 4x4 intra prediction.
998 */
999static void rv34_pred_4x4_block(RV34DecContext *r, uint8_t *dst, int stride, int itype, int up, int left, int down, int right)
1000{
1001 uint8_t *prev = dst - stride + 4;
1002 uint32_t topleft;
1003
1004 if(!up && !left)
1005 itype = DC_128_PRED;
1006 else if(!up){
1007 if(itype == VERT_PRED) itype = HOR_PRED;
1008 if(itype == DC_PRED) itype = LEFT_DC_PRED;
1009 }else if(!left){
1010 if(itype == HOR_PRED) itype = VERT_PRED;
1011 if(itype == DC_PRED) itype = TOP_DC_PRED;
1013 }
1014 if(!down){
1016 if(itype == HOR_UP_PRED) itype = HOR_UP_PRED_RV40_NODOWN;
1017 if(itype == VERT_LEFT_PRED) itype = VERT_LEFT_PRED_RV40_NODOWN;
1018 }
1019 if(!right && up){
1020 topleft = dst[-stride + 3] * 0x01010101u;
1021 prev = (uint8_t*)&topleft;
1022 }
1023 r->h.pred4x4[itype](dst, prev, stride);
1024}
1025
1026static inline int adjust_pred16(int itype, int up, int left)
1027{
1028 if(!up && !left)
1029 itype = DC_128_PRED8x8;
1030 else if(!up){
1031 if(itype == PLANE_PRED8x8)itype = HOR_PRED8x8;
1032 if(itype == VERT_PRED8x8) itype = HOR_PRED8x8;
1033 if(itype == DC_PRED8x8) itype = LEFT_DC_PRED8x8;
1034 }else if(!left){
1035 if(itype == PLANE_PRED8x8)itype = VERT_PRED8x8;
1036 if(itype == HOR_PRED8x8) itype = VERT_PRED8x8;
1037 if(itype == DC_PRED8x8) itype = TOP_DC_PRED8x8;
1038 }
1039 return itype;
1040}
1041
1043 uint8_t *pdst, int stride,
1044 int fc, int sc, int q_dc, int q_ac)
1045{
1046 int16_t *const ptr = r->block;
1047 int has_ac = rv34_decode_block(ptr, &r->gb, r->cur_vlcs,
1048 fc, sc, q_dc, q_ac, q_ac);
1049 if(has_ac){
1050 r->rdsp.rv34_idct_add(pdst, stride, ptr);
1051 }else{
1052 r->rdsp.rv34_idct_dc_add(pdst, stride, ptr[0]);
1053 ptr[0] = 0;
1054 }
1055}
1056
1057static void rv34_output_i16x16(RV34DecContext *r, int8_t *intra_types, int cbp)
1058{
1059 LOCAL_ALIGNED_16(int16_t, block16, [16]);
1060 MpegEncContext *s = &r->s;
1061 GetBitContext *const gb = &r->gb;
1062 int q_dc = rv34_qscale_tab[ r->luma_dc_quant_i[s->qscale] ],
1063 q_ac = rv34_qscale_tab[s->qscale];
1064 uint8_t *dst = s->dest[0];
1065 int16_t *const ptr = r->block;
1066 int i, j, itype, has_ac;
1067
1068 memset(block16, 0, 16 * sizeof(*block16));
1069
1070 has_ac = rv34_decode_block(block16, gb, r->cur_vlcs, 3, 0, q_dc, q_dc, q_ac);
1071 if(has_ac)
1072 r->rdsp.rv34_inv_transform(block16);
1073 else
1074 r->rdsp.rv34_inv_transform_dc(block16);
1075
1076 itype = ittrans16[intra_types[0]];
1077 itype = adjust_pred16(itype, r->avail_cache[6-4], r->avail_cache[6-1]);
1078 r->h.pred16x16[itype](dst, s->linesize);
1079
1080 for(j = 0; j < 4; j++){
1081 for(i = 0; i < 4; i++, cbp >>= 1){
1082 int dc = block16[i + j*4];
1083
1084 if(cbp & 1){
1085 has_ac = rv34_decode_block(ptr, gb, r->cur_vlcs, r->luma_vlc, 0, q_ac, q_ac, q_ac);
1086 }else
1087 has_ac = 0;
1088
1089 if(has_ac){
1090 ptr[0] = dc;
1091 r->rdsp.rv34_idct_add(dst+4*i, s->linesize, ptr);
1092 }else
1093 r->rdsp.rv34_idct_dc_add(dst+4*i, s->linesize, dc);
1094 }
1095
1096 dst += 4*s->linesize;
1097 }
1098
1099 itype = ittrans16[intra_types[0]];
1100 if(itype == PLANE_PRED8x8) itype = DC_PRED8x8;
1101 itype = adjust_pred16(itype, r->avail_cache[6-4], r->avail_cache[6-1]);
1102
1103 q_dc = rv34_qscale_tab[rv34_chroma_quant[1][s->qscale]];
1104 q_ac = rv34_qscale_tab[rv34_chroma_quant[0][s->qscale]];
1105
1106 for(j = 1; j < 3; j++){
1107 dst = s->dest[j];
1108 r->h.pred8x8[itype](dst, s->uvlinesize);
1109 for(i = 0; i < 4; i++, cbp >>= 1){
1110 uint8_t *pdst;
1111 if(!(cbp & 1)) continue;
1112 pdst = dst + (i&1)*4 + (i&2)*2*s->uvlinesize;
1113
1114 rv34_process_block(r, pdst, s->uvlinesize,
1115 r->chroma_vlc, 1, q_dc, q_ac);
1116 }
1117 }
1118}
1119
1120static void rv34_output_intra(RV34DecContext *r, int8_t *intra_types, int cbp)
1121{
1122 MpegEncContext *s = &r->s;
1123 uint8_t *dst = s->dest[0];
1124 int avail[6*8] = {0};
1125 int i, j, k;
1126 int idx, q_ac, q_dc;
1127
1128 // Set neighbour information.
1129 if(r->avail_cache[1])
1130 avail[0] = 1;
1131 if(r->avail_cache[2])
1132 avail[1] = avail[2] = 1;
1133 if(r->avail_cache[3])
1134 avail[3] = avail[4] = 1;
1135 if(r->avail_cache[4])
1136 avail[5] = 1;
1137 if(r->avail_cache[5])
1138 avail[8] = avail[16] = 1;
1139 if(r->avail_cache[9])
1140 avail[24] = avail[32] = 1;
1141
1142 q_ac = rv34_qscale_tab[s->qscale];
1143 for(j = 0; j < 4; j++){
1144 idx = 9 + j*8;
1145 for(i = 0; i < 4; i++, cbp >>= 1, dst += 4, idx++){
1146 rv34_pred_4x4_block(r, dst, s->linesize, ittrans[intra_types[i]], avail[idx-8], avail[idx-1], avail[idx+7], avail[idx-7]);
1147 avail[idx] = 1;
1148 if(!(cbp & 1)) continue;
1149
1150 rv34_process_block(r, dst, s->linesize,
1151 r->luma_vlc, 0, q_ac, q_ac);
1152 }
1153 dst += s->linesize * 4 - 4*4;
1154 intra_types += r->intra_types_stride;
1155 }
1156
1157 intra_types -= r->intra_types_stride * 4;
1158
1159 q_dc = rv34_qscale_tab[rv34_chroma_quant[1][s->qscale]];
1160 q_ac = rv34_qscale_tab[rv34_chroma_quant[0][s->qscale]];
1161
1162 for(k = 0; k < 2; k++){
1163 dst = s->dest[1+k];
1164 fill_rectangle(r->avail_cache + 6, 2, 2, 4, 0, 4);
1165
1166 for(j = 0; j < 2; j++){
1167 int* acache = r->avail_cache + 6 + j*4;
1168 for(i = 0; i < 2; i++, cbp >>= 1, acache++){
1169 int itype = ittrans[intra_types[i*2+j*2*r->intra_types_stride]];
1170 rv34_pred_4x4_block(r, dst+4*i, s->uvlinesize, itype, acache[-4], acache[-1], !i && !j, acache[-3]);
1171 acache[0] = 1;
1172
1173 if(!(cbp&1)) continue;
1174
1175 rv34_process_block(r, dst + 4*i, s->uvlinesize,
1176 r->chroma_vlc, 1, q_dc, q_ac);
1177 }
1178
1179 dst += 4*s->uvlinesize;
1180 }
1181 }
1182}
1183
1184static int is_mv_diff_gt_3(int16_t (*motion_val)[2], int step)
1185{
1186 int d;
1187 d = motion_val[0][0] - motion_val[-step][0];
1188 if(d < -3 || d > 3)
1189 return 1;
1190 d = motion_val[0][1] - motion_val[-step][1];
1191 if(d < -3 || d > 3)
1192 return 1;
1193 return 0;
1194}
1195
1197{
1198 MpegEncContext *s = &r->s;
1199 int hmvmask = 0, vmvmask = 0, i, j;
1200 int midx = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
1201 int16_t (*motion_val)[2] = &s->cur_pic.motion_val[0][midx];
1202 for(j = 0; j < 16; j += 8){
1203 for(i = 0; i < 2; i++){
1204 if(is_mv_diff_gt_3(motion_val + i, 1))
1205 vmvmask |= 0x11 << (j + i*2);
1206 if((j || s->mb_y) && is_mv_diff_gt_3(motion_val + i, s->b8_stride))
1207 hmvmask |= 0x03 << (j + i*2);
1208 }
1209 motion_val += s->b8_stride;
1210 }
1211 if(s->first_slice_line)
1212 hmvmask &= ~0x000F;
1213 if(!s->mb_x)
1214 vmvmask &= ~0x1111;
1215 if(r->rv30){ //RV30 marks both subblocks on the edge for filtering
1216 vmvmask |= (vmvmask & 0x4444) >> 1;
1217 hmvmask |= (hmvmask & 0x0F00) >> 4;
1218 if(s->mb_x)
1219 r->deblock_coefs[s->mb_x - 1 + s->mb_y*s->mb_stride] |= (vmvmask & 0x1111) << 3;
1220 if(!s->first_slice_line)
1221 r->deblock_coefs[s->mb_x + (s->mb_y - 1)*s->mb_stride] |= (hmvmask & 0xF) << 12;
1222 }
1223 return hmvmask | vmvmask;
1224}
1225
1226static int rv34_decode_inter_macroblock(RV34DecContext *r, int8_t *intra_types)
1227{
1228 MpegEncContext *s = &r->s;
1229 GetBitContext *const gb = &r->gb;
1230 uint8_t *dst = s->dest[0];
1231 int16_t *const ptr = r->block;
1232 int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
1233 int cbp, cbp2;
1234 int q_dc, q_ac, has_ac;
1235 int i, j;
1236 int dist;
1237
1238 // Calculate which neighbours are available. Maybe it's worth optimizing too.
1239 memset(r->avail_cache, 0, sizeof(r->avail_cache));
1240 fill_rectangle(r->avail_cache + 6, 2, 2, 4, 1, 4);
1241 dist = (s->mb_x - s->resync_mb_x) + (s->mb_y - s->resync_mb_y) * s->mb_width;
1242 if(s->mb_x && dist)
1243 r->avail_cache[5] =
1244 r->avail_cache[9] = s->cur_pic.mb_type[mb_pos - 1];
1245 if(dist >= s->mb_width)
1246 r->avail_cache[2] =
1247 r->avail_cache[3] = s->cur_pic.mb_type[mb_pos - s->mb_stride];
1248 if(((s->mb_x+1) < s->mb_width) && dist >= s->mb_width - 1)
1249 r->avail_cache[4] = s->cur_pic.mb_type[mb_pos - s->mb_stride + 1];
1250 if(s->mb_x && dist > s->mb_width)
1251 r->avail_cache[1] = s->cur_pic.mb_type[mb_pos - s->mb_stride - 1];
1252
1253 s->qscale = r->si.quant;
1254 cbp = cbp2 = rv34_decode_inter_mb_header(r, intra_types);
1255 r->cbp_luma [mb_pos] = cbp;
1256 r->cbp_chroma[mb_pos] = cbp >> 16;
1257 r->deblock_coefs[mb_pos] = rv34_set_deblock_coef(r) | r->cbp_luma[mb_pos];
1258 s->cur_pic.qscale_table[mb_pos] = s->qscale;
1259
1260 if(cbp == -1)
1261 return -1;
1262
1263 if (IS_INTRA(s->cur_pic.mb_type[mb_pos])) {
1264 if(r->is16) rv34_output_i16x16(r, intra_types, cbp);
1265 else rv34_output_intra(r, intra_types, cbp);
1266 return 0;
1267 }
1268
1269 if(r->is16){
1270 // Only for RV34_MB_P_MIX16x16
1271 LOCAL_ALIGNED_16(int16_t, block16, [16]);
1272 memset(block16, 0, 16 * sizeof(*block16));
1273 q_dc = rv34_qscale_tab[ r->luma_dc_quant_p[s->qscale] ];
1274 q_ac = rv34_qscale_tab[s->qscale];
1275 if (rv34_decode_block(block16, gb, r->cur_vlcs, 3, 0, q_dc, q_dc, q_ac))
1276 r->rdsp.rv34_inv_transform(block16);
1277 else
1278 r->rdsp.rv34_inv_transform_dc(block16);
1279
1280 q_ac = rv34_qscale_tab[s->qscale];
1281
1282 for(j = 0; j < 4; j++){
1283 for(i = 0; i < 4; i++, cbp >>= 1){
1284 int dc = block16[i + j*4];
1285
1286 if(cbp & 1){
1287 has_ac = rv34_decode_block(ptr, gb, r->cur_vlcs, r->luma_vlc, 0, q_ac, q_ac, q_ac);
1288 }else
1289 has_ac = 0;
1290
1291 if(has_ac){
1292 ptr[0] = dc;
1293 r->rdsp.rv34_idct_add(dst+4*i, s->linesize, ptr);
1294 }else
1295 r->rdsp.rv34_idct_dc_add(dst+4*i, s->linesize, dc);
1296 }
1297
1298 dst += 4*s->linesize;
1299 }
1300
1301 r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 1);
1302 }else{
1303 q_ac = rv34_qscale_tab[s->qscale];
1304
1305 for(j = 0; j < 4; j++){
1306 for(i = 0; i < 4; i++, cbp >>= 1){
1307 if(!(cbp & 1)) continue;
1308
1309 rv34_process_block(r, dst + 4*i, s->linesize,
1310 r->luma_vlc, 0, q_ac, q_ac);
1311 }
1312 dst += 4*s->linesize;
1313 }
1314 }
1315
1316 q_dc = rv34_qscale_tab[rv34_chroma_quant[1][s->qscale]];
1317 q_ac = rv34_qscale_tab[rv34_chroma_quant[0][s->qscale]];
1318
1319 for(j = 1; j < 3; j++){
1320 dst = s->dest[j];
1321 for(i = 0; i < 4; i++, cbp >>= 1){
1322 uint8_t *pdst;
1323 if(!(cbp & 1)) continue;
1324 pdst = dst + (i&1)*4 + (i&2)*2*s->uvlinesize;
1325
1326 rv34_process_block(r, pdst, s->uvlinesize,
1327 r->chroma_vlc, 1, q_dc, q_ac);
1328 }
1329 }
1330
1331 return 0;
1332}
1333
1334static int rv34_decode_intra_macroblock(RV34DecContext *r, int8_t *intra_types)
1335{
1336 MpegEncContext *s = &r->s;
1337 int cbp, dist;
1338 int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
1339
1340 // Calculate which neighbours are available. Maybe it's worth optimizing too.
1341 memset(r->avail_cache, 0, sizeof(r->avail_cache));
1342 fill_rectangle(r->avail_cache + 6, 2, 2, 4, 1, 4);
1343 dist = (s->mb_x - s->resync_mb_x) + (s->mb_y - s->resync_mb_y) * s->mb_width;
1344 if(s->mb_x && dist)
1345 r->avail_cache[5] =
1346 r->avail_cache[9] = s->cur_pic.mb_type[mb_pos - 1];
1347 if(dist >= s->mb_width)
1348 r->avail_cache[2] =
1349 r->avail_cache[3] = s->cur_pic.mb_type[mb_pos - s->mb_stride];
1350 if(((s->mb_x+1) < s->mb_width) && dist >= s->mb_width - 1)
1351 r->avail_cache[4] = s->cur_pic.mb_type[mb_pos - s->mb_stride + 1];
1352 if(s->mb_x && dist > s->mb_width)
1353 r->avail_cache[1] = s->cur_pic.mb_type[mb_pos - s->mb_stride - 1];
1354
1355 s->qscale = r->si.quant;
1356 cbp = rv34_decode_intra_mb_header(r, intra_types);
1357 r->cbp_luma [mb_pos] = cbp;
1358 r->cbp_chroma[mb_pos] = cbp >> 16;
1359 r->deblock_coefs[mb_pos] = 0xFFFF;
1360 s->cur_pic.qscale_table[mb_pos] = s->qscale;
1361
1362 if(cbp == -1)
1363 return -1;
1364
1365 if(r->is16){
1366 rv34_output_i16x16(r, intra_types, cbp);
1367 return 0;
1368 }
1369
1370 rv34_output_intra(r, intra_types, cbp);
1371 return 0;
1372}
1373
1375{
1376 int bits;
1377 if(s->mb_y >= s->mb_height)
1378 return 1;
1379 if (!r->mb_num_left)
1380 return 1;
1381 if (r->mb_skip_run > 1)
1382 return 0;
1383 bits = get_bits_left(&r->gb);
1384 if (bits <= 0 || (bits < 8 && !show_bits(&r->gb, bits)))
1385 return 1;
1386 return 0;
1387}
1388
1389
1391{
1392 av_freep(&r->intra_types_hist);
1393 r->intra_types = NULL;
1394 av_freep(&r->tmp_b_block_base);
1395 av_freep(&r->mb_type);
1396 av_freep(&r->cbp_luma);
1397 av_freep(&r->cbp_chroma);
1398 av_freep(&r->deblock_coefs);
1399}
1400
1401
1403{
1404 r->intra_types_stride = r->s.mb_width * 4 + 4;
1405
1406 r->cbp_chroma = av_mallocz(r->s.mb_stride * r->s.mb_height *
1407 sizeof(*r->cbp_chroma));
1408 r->cbp_luma = av_mallocz(r->s.mb_stride * r->s.mb_height *
1409 sizeof(*r->cbp_luma));
1410 r->deblock_coefs = av_mallocz(r->s.mb_stride * r->s.mb_height *
1411 sizeof(*r->deblock_coefs));
1412 r->intra_types_hist = av_malloc(r->intra_types_stride * 4 * 2 *
1413 sizeof(*r->intra_types_hist));
1414 r->mb_type = av_mallocz(r->s.mb_stride * r->s.mb_height *
1415 sizeof(*r->mb_type));
1416
1417 if (!(r->cbp_chroma && r->cbp_luma && r->deblock_coefs &&
1418 r->intra_types_hist && r->mb_type)) {
1419 r->s.context_reinit = 1;
1421 return AVERROR(ENOMEM);
1422 }
1423
1424 r->intra_types = r->intra_types_hist + r->intra_types_stride * 4;
1425
1426 return 0;
1427}
1428
1429
1431{
1433 return rv34_decoder_alloc(r);
1434}
1435
1436
1437static int rv34_decode_slice(RV34DecContext *r, int end, const uint8_t* buf, int buf_size)
1438{
1439 MpegEncContext *s = &r->s;
1440 GetBitContext *const gb = &r->gb;
1441 int mb_pos, slice_type;
1442 int res;
1443
1444 res = init_get_bits8(gb, buf, buf_size);
1445 if (res < 0)
1446 return res;
1447 res = r->parse_slice_header(r, gb, &r->si);
1448 if(res < 0){
1449 av_log(s->avctx, AV_LOG_ERROR, "Incorrect or unknown slice header\n");
1450 return -1;
1451 }
1452
1453 slice_type = r->si.type ? r->si.type : AV_PICTURE_TYPE_I;
1454 if (slice_type != s->pict_type) {
1455 av_log(s->avctx, AV_LOG_ERROR, "Slice type mismatch\n");
1456 return AVERROR_INVALIDDATA;
1457 }
1458 if (s->width != r->si.width || s->height != r->si.height) {
1459 av_log(s->avctx, AV_LOG_ERROR, "Size mismatch\n");
1460 return AVERROR_INVALIDDATA;
1461 }
1462
1463 r->si.end = end;
1464 s->qscale = r->si.quant;
1465 r->mb_num_left = r->si.end - r->si.start;
1466 r->mb_skip_run = 0;
1467
1468 mb_pos = s->mb_x + s->mb_y * s->mb_width;
1469 if(r->si.start != mb_pos){
1470 av_log(s->avctx, AV_LOG_ERROR, "Slice indicates MB offset %d, got %d\n", r->si.start, mb_pos);
1471 s->mb_x = r->si.start % s->mb_width;
1472 s->mb_y = r->si.start / s->mb_width;
1473 }
1474 memset(r->intra_types_hist, -1, r->intra_types_stride * 4 * 2 * sizeof(*r->intra_types_hist));
1475 s->first_slice_line = 1;
1476 s->resync_mb_x = s->mb_x;
1477 s->resync_mb_y = s->mb_y;
1478
1480 while(!check_slice_end(r, s)) {
1481 s->dest[0] += 16;
1482 s->dest[1] += 8;
1483 s->dest[2] += 8;
1484
1485 if(r->si.type)
1486 res = rv34_decode_inter_macroblock(r, r->intra_types + s->mb_x * 4 + 4);
1487 else
1488 res = rv34_decode_intra_macroblock(r, r->intra_types + s->mb_x * 4 + 4);
1489 if(res < 0){
1490 ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, ER_MB_ERROR);
1491 return -1;
1492 }
1493 if (++s->mb_x == s->mb_width) {
1494 s->mb_x = 0;
1495 s->mb_y++;
1497
1498 memmove(r->intra_types_hist, r->intra_types, r->intra_types_stride * 4 * sizeof(*r->intra_types_hist));
1499 memset(r->intra_types, -1, r->intra_types_stride * 4 * sizeof(*r->intra_types_hist));
1500
1501 if(r->loop_filter && s->mb_y >= 2)
1502 r->loop_filter(r, s->mb_y - 2);
1503
1504 if (HAVE_THREADS && (s->avctx->active_thread_type & FF_THREAD_FRAME))
1505 ff_thread_progress_report(&s->cur_pic.ptr->progress,
1506 s->mb_y - 2);
1507
1508 }
1509 if(s->mb_x == s->resync_mb_x)
1510 s->first_slice_line=0;
1511 r->mb_num_left--;
1512 }
1513 ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, ER_MB_END);
1514
1515 return s->mb_y == s->mb_height;
1516}
1517
1518/** @} */ // reconstruction group end
1519
1520/**
1521 * Initialize decoder.
1522 */
1524{
1525 static AVOnce init_static_once = AV_ONCE_INIT;
1526 RV34DecContext *r = avctx->priv_data;
1527 MpegEncContext *s = &r->s;
1528 int ret;
1529
1530 ret = ff_mpv_decode_init(s, avctx);
1531 if (ret < 0)
1532 return ret;
1533 s->out_format = FMT_H263;
1534
1535 avctx->pix_fmt = AV_PIX_FMT_YUV420P;
1536 avctx->has_b_frames = 1;
1537 s->low_delay = 0;
1538
1539 if ((ret = ff_mpv_common_init(s)) < 0)
1540 return ret;
1541
1543
1544 ret = rv34_decoder_alloc(r);
1545 if (ret < 0)
1546 return ret;
1547
1548 ff_thread_once(&init_static_once, rv34_init_tables);
1549
1550 return 0;
1551}
1552
1554{
1555 RV34DecContext *r = dst->priv_data, *r1 = src->priv_data;
1556 MpegEncContext *const s1 = &r1->s;
1557 int ret;
1558
1559 if (dst == src || !s1->context_initialized)
1560 return 0;
1561
1563 if (ret < 0)
1564 return ret;
1565
1566 // Did ff_mpeg_update_thread_context reinit?
1567 if (ret > 0) {
1568 ret = rv34_decoder_realloc(r);
1569 if (ret < 0)
1570 return ret;
1571 }
1572
1573 r->cur_pts = r1->cur_pts;
1574 r->last_pts = r1->last_pts;
1575 r->next_pts = r1->next_pts;
1576
1577 memset(&r->si, 0, sizeof(r->si));
1578
1579 return 0;
1580}
1581
1582static int get_slice_offset(AVCodecContext *avctx, const uint8_t *buf, int n, int slice_count, int buf_size)
1583{
1584 if (n < slice_count) {
1585 return AV_RL32(buf + n*8 - 4) == 1 ? AV_RL32(buf + n*8) : AV_RB32(buf + n*8);
1586 } else
1587 return buf_size;
1588}
1589
1590static int finish_frame(AVCodecContext *avctx, AVFrame *pict)
1591{
1592 RV34DecContext *r = avctx->priv_data;
1593 MpegEncContext *s = &r->s;
1594 int got_picture = 0, ret;
1595
1596 ff_er_frame_end(&s->er, NULL);
1598 r->mb_num_left = 0;
1599
1600 if (s->pict_type == AV_PICTURE_TYPE_B) {
1601 if ((ret = av_frame_ref(pict, s->cur_pic.ptr->f)) < 0)
1602 return ret;
1603 ff_print_debug_info(s, s->cur_pic.ptr, pict);
1604 ff_mpv_export_qp_table(s, pict, s->cur_pic.ptr, FF_MPV_QSCALE_TYPE_MPEG1);
1605 got_picture = 1;
1606 } else if (s->last_pic.ptr) {
1607 if ((ret = av_frame_ref(pict, s->last_pic.ptr->f)) < 0)
1608 return ret;
1609 ff_print_debug_info(s, s->last_pic.ptr, pict);
1610 ff_mpv_export_qp_table(s, pict, s->last_pic.ptr, FF_MPV_QSCALE_TYPE_MPEG1);
1611 got_picture = 1;
1612 }
1613
1614 return got_picture;
1615}
1616
1617static AVRational update_sar(int old_w, int old_h, AVRational sar, int new_w, int new_h)
1618{
1619 // attempt to keep aspect during typical resolution switches
1620 if (!sar.num)
1621 sar = (AVRational){1, 1};
1622
1623 sar = av_mul_q(sar, av_mul_q((AVRational){new_h, new_w}, (AVRational){old_w, old_h}));
1624 return sar;
1625}
1626
1628 int *got_picture_ptr, AVPacket *avpkt)
1629{
1630 const uint8_t *buf = avpkt->data;
1631 int buf_size = avpkt->size;
1632 RV34DecContext *r = avctx->priv_data;
1633 MpegEncContext *s = &r->s;
1634 SliceInfo si;
1635 int i, ret;
1636 int slice_count;
1637 const uint8_t *slices_hdr = NULL;
1638 int last = 0;
1639 int faulty_b = 0;
1640 int offset;
1641
1642 /* no supplementary picture */
1643 if (buf_size == 0) {
1644 /* special case for last picture */
1645 if (s->next_pic.ptr) {
1646 if ((ret = av_frame_ref(pict, s->next_pic.ptr->f)) < 0)
1647 return ret;
1648 ff_mpv_unref_picture(&s->next_pic);
1649
1650 *got_picture_ptr = 1;
1651 }
1652 return 0;
1653 }
1654
1655 slice_count = (*buf++) + 1;
1656 slices_hdr = buf + 4;
1657 buf += 8 * slice_count;
1658 buf_size -= 1 + 8 * slice_count;
1659
1660 offset = get_slice_offset(avctx, slices_hdr, 0, slice_count, buf_size);
1661 //parse first slice header to check whether this frame can be decoded
1662 if(offset < 0 || offset > buf_size){
1663 av_log(avctx, AV_LOG_ERROR, "Slice offset is invalid\n");
1664 return AVERROR_INVALIDDATA;
1665 }
1666 if ((ret = init_get_bits8(&r->gb, buf+offset, buf_size-offset)) < 0)
1667 return ret;
1668 if (r->parse_slice_header(r, &r->gb, &si) < 0 || si.start) {
1669 av_log(avctx, AV_LOG_ERROR, "First slice header is incorrect\n");
1670 return AVERROR_INVALIDDATA;
1671 }
1672 if (!s->last_pic.ptr && si.type == AV_PICTURE_TYPE_B) {
1673 av_log(avctx, AV_LOG_ERROR, "Invalid decoder state: B-frame without "
1674 "reference data.\n");
1675 faulty_b = 1;
1676 }
1677 if( (avctx->skip_frame >= AVDISCARD_NONREF && si.type==AV_PICTURE_TYPE_B)
1679 || avctx->skip_frame >= AVDISCARD_ALL)
1680 return avpkt->size;
1681
1682 /* first slice */
1683 if (si.start == 0) {
1684 if (r->mb_num_left > 0 && s->cur_pic.ptr) {
1685 av_log(avctx, AV_LOG_ERROR, "New frame but still %d MB left.\n",
1686 r->mb_num_left);
1687 if (!s->context_reinit)
1688 ff_er_frame_end(&s->er, NULL);
1690 }
1691
1692 if (s->width != si.width || s->height != si.height || s->context_reinit) {
1693 int err;
1694
1695 av_log(s->avctx, AV_LOG_WARNING, "Changing dimensions to %dx%d\n",
1696 si.width, si.height);
1697
1698 if (av_image_check_size(si.width, si.height, 0, s->avctx))
1699 return AVERROR_INVALIDDATA;
1700
1701 s->avctx->sample_aspect_ratio = update_sar(
1702 s->width, s->height, s->avctx->sample_aspect_ratio,
1703 si.width, si.height);
1704 s->width = si.width;
1705 s->height = si.height;
1706
1707 err = ff_set_dimensions(s->avctx, s->width, s->height);
1708 if (err < 0)
1709 return err;
1710 if ((err = ff_mpv_common_frame_size_change(s)) < 0)
1711 return err;
1712 if ((err = rv34_decoder_realloc(r)) < 0)
1713 return err;
1714 }
1715 if (faulty_b)
1716 return AVERROR_INVALIDDATA;
1717 s->pict_type = si.type ? si.type : AV_PICTURE_TYPE_I;
1718 if (ff_mpv_frame_start(s, s->avctx) < 0)
1719 return -1;
1721 if (!r->tmp_b_block_base) {
1722 int i;
1723
1724 r->tmp_b_block_base = av_malloc(s->linesize * 48);
1725 if (!r->tmp_b_block_base)
1726 return AVERROR(ENOMEM);
1727 for (i = 0; i < 2; i++)
1728 r->tmp_b_block_y[i] = r->tmp_b_block_base
1729 + i * 16 * s->linesize;
1730 for (i = 0; i < 4; i++)
1731 r->tmp_b_block_uv[i] = r->tmp_b_block_base + 32 * s->linesize
1732 + (i >> 1) * 8 * s->uvlinesize
1733 + (i & 1) * 16;
1734 }
1735 r->cur_pts = si.pts;
1736 if (s->pict_type != AV_PICTURE_TYPE_B) {
1737 r->last_pts = r->next_pts;
1738 r->next_pts = r->cur_pts;
1739 } else {
1740 int refdist = GET_PTS_DIFF(r->next_pts, r->last_pts);
1741 int dist0 = GET_PTS_DIFF(r->cur_pts, r->last_pts);
1742 int dist1 = GET_PTS_DIFF(r->next_pts, r->cur_pts);
1743
1744 if(!refdist){
1745 r->mv_weight1 = r->mv_weight2 = r->weight1 = r->weight2 = 8192;
1746 r->scaled_weight = 0;
1747 }else{
1748 if (FFMAX(dist0, dist1) > refdist)
1749 av_log(avctx, AV_LOG_TRACE, "distance overflow\n");
1750
1751 r->mv_weight1 = (dist0 << 14) / refdist;
1752 r->mv_weight2 = (dist1 << 14) / refdist;
1753 if((r->mv_weight1|r->mv_weight2) & 511){
1754 r->weight1 = r->mv_weight1;
1755 r->weight2 = r->mv_weight2;
1756 r->scaled_weight = 0;
1757 }else{
1758 r->weight1 = r->mv_weight1 >> 9;
1759 r->weight2 = r->mv_weight2 >> 9;
1760 r->scaled_weight = 1;
1761 }
1762 }
1763 }
1764 s->mb_x = s->mb_y = 0;
1765 ff_thread_finish_setup(s->avctx);
1766 } else if (s->context_reinit) {
1767 av_log(s->avctx, AV_LOG_ERROR, "Decoder needs full frames to "
1768 "reinitialize (start MB is %d).\n", si.start);
1769 return AVERROR_INVALIDDATA;
1770 } else if (HAVE_THREADS &&
1771 (s->avctx->active_thread_type & FF_THREAD_FRAME)) {
1772 av_log(s->avctx, AV_LOG_ERROR, "Decoder needs full frames in frame "
1773 "multithreading mode (start MB is %d).\n", si.start);
1774 return AVERROR_INVALIDDATA;
1775 }
1776
1777 for(i = 0; i < slice_count; i++){
1778 int offset = get_slice_offset(avctx, slices_hdr, i , slice_count, buf_size);
1779 int offset1 = get_slice_offset(avctx, slices_hdr, i+1, slice_count, buf_size);
1780 int size;
1781
1782 if(offset < 0 || offset > offset1 || offset1 > buf_size){
1783 av_log(avctx, AV_LOG_ERROR, "Slice offset is invalid\n");
1784 break;
1785 }
1786 size = offset1 - offset;
1787
1788 r->si.end = s->mb_width * s->mb_height;
1789 r->mb_num_left = r->s.mb_x + r->s.mb_y*r->s.mb_width - r->si.start;
1790
1791 if(i+1 < slice_count){
1792 int offset2 = get_slice_offset(avctx, slices_hdr, i+2, slice_count, buf_size);
1793 if (offset2 < offset1 || offset2 > buf_size) {
1794 av_log(avctx, AV_LOG_ERROR, "Slice offset is invalid\n");
1795 break;
1796 }
1797 ret = init_get_bits8(&r->gb, buf+offset1, buf_size-offset1);
1798 if (ret < 0)
1799 return ret;
1800 if (r->parse_slice_header(r, &r->gb, &si) < 0) {
1801 size = offset2 - offset;
1802 }else
1803 r->si.end = si.start;
1804 }
1805 av_assert0 (size >= 0 && size <= buf_size - offset);
1806 last = rv34_decode_slice(r, r->si.end, buf + offset, size);
1807 if(last)
1808 break;
1809 }
1810
1811 if (s->cur_pic.ptr) {
1812 if (last) {
1813 if(r->loop_filter)
1814 r->loop_filter(r, s->mb_height - 1);
1815
1816 ret = finish_frame(avctx, pict);
1817 if (ret < 0)
1818 return ret;
1819 *got_picture_ptr = ret;
1820 } else if (HAVE_THREADS &&
1821 (s->avctx->active_thread_type & FF_THREAD_FRAME)) {
1822 av_log(avctx, AV_LOG_INFO, "marking unfinished frame as finished\n");
1823 /* always mark the current frame as finished, frame-mt supports
1824 * only complete frames */
1825 ff_er_frame_end(&s->er, NULL);
1827 r->mb_num_left = 0;
1828 return AVERROR_INVALIDDATA;
1829 }
1830 }
1831
1832 return avpkt->size;
1833}
1834
1836{
1837 RV34DecContext *r = avctx->priv_data;
1838
1840
1841 return ff_mpv_decode_close(avctx);
1842}
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t my
Definition dsp.h:57
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t mx
Definition dsp.h:57
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
static double val(void *priv, double ch)
Definition aeval.c:77
#define U(x)
Definition vpx_arith.h:37
#define A(x)
Definition vpx_arith.h:28
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert2(cond)
assert() equivalent, that does lie in speed critical code.
Definition avassert.h:68
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
Definition avassert.h:58
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition avassert.h:42
Libavcodec external API header.
#define FF_THREAD_FRAME
Decode more than one frame at once.
Definition avcodec.h:1590
#define V
Definition avdct.c:32
static int BS_FUNC left(const BSCTX *bc)
Return the number of the bits left in a buffer.
#define Y
Definition boxblur.h:37
static const uint8_t shifts[2][12]
Definition camellia.c:178
#define flags(name, subs,...)
Definition cbs_h264.c:74
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
#define NULL
Definition coverity.c:32
static const uint16_t fc[]
Definition dcaenc.h:43
#define SUINT
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Definition utils.c:91
void ff_er_add_slice(ERContext *s, int startx, int starty, int endx, int endy, int status)
Add a slice.
void ff_er_frame_end(ERContext *s, int *decode_error_flags)
Indicate that a frame has finished decoding and perform error concealment in case it has been enabled...
#define ER_MB_END
#define ER_MB_ERROR
static const uint8_t bits[8]
Definition fastaudio.c:100
static void fill_rectangle(int x, int y, int w, int h)
Definition ffplay.c:829
static av_always_inline int get_vlc2(GetBitContext *s, const VLCElem *table, int bits, int max_depth)
Parse a vlc code.
Definition get_bits.h:645
static int get_bits_left(GetBitContext *gb)
Definition get_bits.h:688
static unsigned int get_bits1(GetBitContext *s)
Definition get_bits.h:391
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition get_bits.h:544
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition get_bits.h:337
static unsigned int show_bits(GetBitContext *s, int n)
Show 1-25 bits.
Definition get_bits.h:373
exp golomb vlc stuff
static int get_interleaved_se_golomb(GetBitContext *gb)
Definition golomb.h:301
#define INVALID_VLC
Definition golomb.h:37
@ AV_CODEC_ID_RV40
Definition codec_id.h:119
@ AVDISCARD_ALL
discard all
Definition defs.h:232
@ AVDISCARD_NONKEY
discard all frames except keyframes
Definition defs.h:231
@ AVDISCARD_NONREF
discard all non reference
Definition defs.h:228
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
Definition frame.c:278
#define AV_LOG_TRACE
Extremely verbose debugging, useful for libav* development.
Definition log.h:236
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition log.h:216
#define AV_LOG_INFO
Standard information.
Definition log.h:221
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
AVRational av_mul_q(AVRational b, AVRational c)
Multiply two rationals.
Definition rational.c:80
int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of the image can be address...
Definition imgutils.c:318
@ AV_PICTURE_TYPE_I
Intra.
Definition avutil.h:278
@ AV_PICTURE_TYPE_P
Predicted.
Definition avutil.h:279
@ AV_PICTURE_TYPE_B
Bi-dir predicted.
Definition avutil.h:280
void(* h264_chroma_mc_func)(uint8_t *dst, const uint8_t *src, ptrdiff_t srcStride, int h, int x, int y)
Definition h264chroma.h:25
#define DIAG_DOWN_LEFT_PRED_RV40_NODOWN
Definition h264pred.h:54
#define TOP_DC_PRED
Definition h264pred.h:50
#define TOP_DC_PRED8x8
Definition h264pred.h:75
#define HOR_UP_PRED_RV40_NODOWN
Definition h264pred.h:55
#define VERT_PRED
Prediction types.
Definition h264pred.h:38
#define HOR_PRED8x8
Definition h264pred.h:69
#define DC_128_PRED
Definition h264pred.h:51
#define VERT_LEFT_PRED
Definition h264pred.h:45
#define HOR_DOWN_PRED
Definition h264pred.h:44
#define VERT_PRED8x8
Definition h264pred.h:70
#define DIAG_DOWN_LEFT_PRED
Definition h264pred.h:41
#define LEFT_DC_PRED
Definition h264pred.h:49
#define DC_PRED8x8
Definition h264pred.h:68
#define HOR_UP_PRED
Definition h264pred.h:46
#define LEFT_DC_PRED8x8
Definition h264pred.h:74
#define VERT_LEFT_PRED_RV40_NODOWN
Definition h264pred.h:56
#define DIAG_DOWN_RIGHT_PRED
Definition h264pred.h:42
#define HOR_PRED
Definition h264pred.h:39
#define DC_PRED
Definition h264pred.h:40
#define PLANE_PRED8x8
Definition h264pred.h:71
#define DC_128_PRED8x8
Definition h264pred.h:76
#define VERT_RIGHT_PRED
Definition h264pred.h:43
#define B
Definition huffyuv.h:42
cl_device_type type
misc image utilities
#define r
Definition input.c:42
#define AV_RL32(p)
#define AV_RB32(p)
unsigned offset
Definition libaomenc.c:763
#define C
av_cold void ff_h264_pred_init(H264PredContext *h, int codec_id, const int bit_depth, int chroma_format_idc)
Set the intra prediction function pointers.
Definition h264pred.c:437
Multithreading API for decoders.
#define chroma_mc(a)
Definition vc1dsp.c:780
Macro definitions for various function/variable attributes.
#define av_fallthrough
Definition attributes.h:67
#define av_cold
Definition attributes.h:117
common internal API header
#define AVOnce
Definition thread.h:202
static int ff_thread_once(char *control, void(*routine)(void))
Definition thread.h:205
#define AV_ONCE_INIT
Definition thread.h:203
static const uint16_t mask[17]
Definition lzw.c:38
#define FFMIN(a, b)
Definition macros.h:49
#define FFMAX(a, b)
Definition macros.h:47
#define mid_pred
Definition mathops.h:115
Memory handling functions.
#define LOCAL_ALIGNED_16(t, v,...)
void ff_mpeg_er_frame_start(MpegEncContext *s)
Definition mpeg_er.c:46
void ff_mpv_unref_picture(MPVWorkPicture *pic)
Definition mpegpicture.c:98
#define MB_TYPE_8x8
Definition mpegutils.h:44
#define MB_TYPE_8x16
Definition mpegutils.h:43
#define MB_TYPE_BACKWARD_MV
Definition mpegutils.h:50
#define MB_TYPE_SKIP
Definition mpegutils.h:61
#define IS_16X8(a)
Definition mpegutils.h:81
#define IS_8X16(a)
Definition mpegutils.h:82
#define MB_TYPE_INTRA
Definition mpegutils.h:64
#define MB_TYPE_DIRECT2
Definition mpegutils.h:46
#define MB_TYPE_16x8
Definition mpegutils.h:42
#define MB_TYPE_INTRA16x16
Definition mpegutils.h:39
#define MB_TYPE_BIDIR_MV
Definition mpegutils.h:51
#define IS_8X8(a)
Definition mpegutils.h:83
#define MB_TYPE_16x16
Definition mpegutils.h:41
#define MB_TYPE_FORWARD_MV
Definition mpegutils.h:49
#define IS_SKIP(a)
Definition mpegutils.h:75
#define IS_INTRA16x16(a)
Definition mpegutils.h:70
av_cold int ff_mpv_common_init(MpegEncContext *s)
init common structure for both encoder and decoder.
Definition mpegvideo.c:359
void ff_init_block_index(MpegEncContext *s)
Definition mpegvideo.c:472
mpegvideo header.
@ FMT_H263
Definition mpegvideo.h:57
int ff_mpv_frame_start(MpegEncContext *s, AVCodecContext *avctx)
generic function called after decoding the header and before a frame is decoded.
void ff_mpv_frame_end(MpegEncContext *s)
int ff_mpv_export_qp_table(const MpegEncContext *s, AVFrame *f, const MPVPicture *p, int qp_type)
void ff_print_debug_info(const MpegEncContext *s, const MPVPicture *p, AVFrame *pict)
av_cold int ff_mpv_decode_close(AVCodecContext *avctx)
av_cold int ff_mpv_decode_init(MpegEncContext *s, AVCodecContext *avctx)
Initialize the given MpegEncContext for decoding.
int ff_mpeg_update_thread_context(AVCodecContext *dst, const AVCodecContext *src)
update_thread_context for mpegvideo-based decoders.
av_cold int ff_mpv_common_frame_size_change(MpegEncContext *s)
mpegvideo decoder header.
#define FF_MPV_QSCALE_TYPE_MPEG1
#define av_malloc(s)
Definition ops_static.c:52
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition pixfmt.h:73
#define IS_INTRA(x, y)
static const uint16_t table[]
Definition prosumer.c:203
void ff_thread_finish_setup(AVCodecContext *avctx)
If the codec defines update_thread_context(), call this when they are ready for the next thread to st...
quarterpel DSP functions
void(* qpel_mc_func)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)
Definition qpeldsp.h:65
useful rectangle filling function
static av_cold void rv34_init_tables(void)
Initialize all tables.
Definition rv34.c:157
static const int rv34_mb_type_to_lavc[12]
translation of RV30/40 macroblock types to lavc ones
Definition rv34.c:60
static int rv34_decode_intra_mb_header(RV34DecContext *r, int8_t *intra_types)
Decode intra macroblock header and return CBP in case of success, -1 otherwise.
Definition rv34.c:376
static int adjust_pred16(int itype, int up, int left)
Definition rv34.c:1026
static void rv34_decoder_free(RV34DecContext *r)
Definition rv34.c:1390
static int rv34_decode_slice(RV34DecContext *r, int end, const uint8_t *buf, int buf_size)
Definition rv34.c:1437
static int rv34_decode_cbp(GetBitContext *gb, const RV34VLC *vlc, int table)
Decode coded block pattern.
Definition rv34.c:212
static void decode_subblock1(int16_t *dst, int flags, GetBitContext *gb, const VLCElem *vlc, int q)
Decode a single coefficient.
Definition rv34.c:283
static AVRational update_sar(int old_w, int old_h, AVRational sar, int new_w, int new_h)
Definition rv34.c:1617
static int rv34_decode_block(int16_t *dst, GetBitContext *gb, const RV34VLC *rvlc, int fc, int sc, int q_dc, int q_ac1, int q_ac2)
Decode coefficients for 4x4 block.
Definition rv34.c:311
static void rv34_mc_2mv(RV34DecContext *r, const int block_type)
Definition rv34.c:838
static const int chroma_coeffs[3]
Definition rv34.c:672
static void rv4_weight(RV34DecContext *r)
Definition rv34.c:816
static void rv34_pred_b_vector(int A[2], int B[2], int C[2], int A_avail, int B_avail, int C_avail, int *mx, int *my)
Predict motion vector for B-frame macroblock.
Definition rv34.c:554
static av_cold void rv34_gen_vlc_ext(const uint8_t *bits, int size, VLC *vlc, const uint8_t *syms, int mod_three_bits_offset, int *offset)
Generate VLC from codeword lengths.
Definition rv34.c:95
static void rv34_output_i16x16(RV34DecContext *r, int8_t *intra_types, int cbp)
Definition rv34.c:1057
static int rv34_decoder_realloc(RV34DecContext *r)
Definition rv34.c:1430
static int get_slice_offset(AVCodecContext *avctx, const uint8_t *buf, int n, int slice_count, int buf_size)
Definition rv34.c:1582
static int rv34_decode_mv(RV34DecContext *r, int block_type)
Decode motion vector differences and perform motion vector reconstruction and motion compensation.
Definition rv34.c:884
static void rv34_pred_4x4_block(RV34DecContext *r, uint8_t *dst, int stride, int itype, int up, int left, int down, int right)
Perform 4x4 intra prediction.
Definition rv34.c:999
static int rv34_set_deblock_coef(RV34DecContext *r)
Definition rv34.c:1196
static VLCElem table_data[117592]
Definition rv34.c:85
static void decode_coeff(int16_t *dst, int coef, int esc, GetBitContext *gb, const VLCElem *vlc, int q)
Get one coefficient value from the bitstream and store it.
Definition rv34.c:245
static av_cold void rv34_gen_vlc(const uint8_t *bits, int size, const VLCElem **vlcp, int mod_three_bits_offset, int *offset)
Definition rv34.c:146
static int rv34_decode_intra_macroblock(RV34DecContext *r, int8_t *intra_types)
Definition rv34.c:1334
static int calc_add_mv(RV34DecContext *r, int dir, int val)
Calculate motion vector component that should be added for direct blocks.
Definition rv34.c:544
static void decode_subblock3(int16_t *dst, int flags, GetBitContext *gb, const VLCElem *vlc, int q_dc, int q_ac1, int q_ac2)
Definition rv34.c:290
av_cold int ff_rv34_decode_end(AVCodecContext *avctx)
Definition rv34.c:1835
static void decode_subblock(int16_t *dst, int flags, const int is_block2, GetBitContext *gb, const VLCElem *vlc, int q)
Decode 2x2 subblock of coefficients.
Definition rv34.c:266
int ff_rv34_decode_frame(AVCodecContext *avctx, AVFrame *pict, int *got_picture_ptr, AVPacket *avpkt)
Definition rv34.c:1627
static void rv34_mc(RV34DecContext *r, const int block_type, const int xoff, const int yoff, int mv_off, const int width, const int height, int dir, const int thirdpel, int weighted, qpel_mc_func(*qpel_mc)[16], h264_chroma_mc_func(*chroma_mc))
generic motion compensation function
Definition rv34.c:689
static RV34VLC inter_vlcs[NUM_INTER_TABLES]
Definition rv34.c:76
int ff_rv34_get_start_offset(GetBitContext *gb, int mb_size)
Decode starting slice position.
Definition rv34.c:352
static void rv34_mc_1mv(RV34DecContext *r, const int block_type, const int xoff, const int yoff, int mv_off, const int width, const int height, int dir)
Definition rv34.c:807
static void ZERO8x2(void *dst, int stride)
Definition rv34.c:53
static void rv34_output_intra(RV34DecContext *r, int8_t *intra_types, int cbp)
Definition rv34.c:1120
static const uint8_t avail_indexes[4]
availability index for subblocks
Definition rv34.c:480
static const int ittrans16[4]
mapping of RV30/40 intra 16x16 prediction types to standard H.264 types
Definition rv34.c:992
static int check_slice_end(RV34DecContext *r, MpegEncContext *s)
Definition rv34.c:1374
#define GET_PTS_DIFF(a, b)
Definition rv34.c:539
static const uint8_t part_sizes_w[RV34_MB_TYPES]
macroblock partition width in 8x8 blocks
Definition rv34.c:474
static int finish_frame(AVCodecContext *avctx, AVFrame *pict)
Definition rv34.c:1590
static const uint8_t part_sizes_h[RV34_MB_TYPES]
macroblock partition height in 8x8 blocks
Definition rv34.c:477
static const int num_mvs[RV34_MB_TYPES]
number of motion vectors in each macroblock type
Definition rv34.c:878
static int rv34_decoder_alloc(RV34DecContext *r)
Definition rv34.c:1402
static int rv34_decode_inter_mb_header(RV34DecContext *r, int8_t *intra_types)
Decode inter macroblock header and return CBP in case of success, -1 otherwise.
Definition rv34.c:411
static void rv34_pred_mv_rv3(RV34DecContext *r, int block_type, int dir)
motion vector prediction - RV3 version
Definition rv34.c:626
static RV34VLC * choose_vlc_set(int quant, int mod, int type)
Select VLC set for decoding from current quantizer, modifier and frame type.
Definition rv34.c:364
static RV34VLC intra_vlcs[NUM_INTRA_TABLES]
Definition rv34.c:76
static void rv34_pred_mv_b(RV34DecContext *r, int block_type, int dir)
motion vector prediction for B-frames
Definition rv34.c:574
static void rv34_mc_2mv_skip(RV34DecContext *r)
Definition rv34.c:857
av_cold int ff_rv34_decode_init(AVCodecContext *avctx)
Initialize decoder.
Definition rv34.c:1523
int ff_rv34_decode_update_thread_context(AVCodecContext *dst, const AVCodecContext *src)
Definition rv34.c:1553
static int rv34_decode_inter_macroblock(RV34DecContext *r, int8_t *intra_types)
Definition rv34.c:1226
static int is_mv_diff_gt_3(int16_t(*motion_val)[2], int step)
Definition rv34.c:1184
static void rv34_process_block(RV34DecContext *r, uint8_t *pdst, int stride, int fc, int sc, int q_dc, int q_ac)
Definition rv34.c:1042
static void rv34_pred_mv(RV34DecContext *r, int block_type, int subblock_no, int dmv_no)
motion vector prediction
Definition rv34.c:489
static const int ittrans[9]
mapping of RV30/40 intra prediction types to standard H.264 types
Definition rv34.c:986
RV30 and RV40 decoder common data declarations.
@ RV34_MB_TYPE_INTRA
Intra macroblock.
Definition rv34.h:46
@ RV34_MB_P_MIX16x16
P-frame macroblock with DCs in a separate 4x4 block, one motion vector.
Definition rv34.h:57
@ RV34_MB_P_16x8
P-frame macroblock, 16x8 motion compensation partitions.
Definition rv34.h:54
@ RV34_MB_B_BIDIR
Bidirectionally predicted B-frame macroblock, two motion vectors.
Definition rv34.h:56
@ RV34_MB_B_BACKWARD
B-frame macroblock, backward prediction.
Definition rv34.h:51
@ RV34_MB_B_DIRECT
Bidirectionally predicted B-frame macroblock, no motion vectors.
Definition rv34.h:53
@ RV34_MB_P_16x16
P-frame macroblock, one motion frame.
Definition rv34.h:48
@ RV34_MB_TYPES
Definition rv34.h:58
@ RV34_MB_P_8x16
P-frame macroblock, 8x16 motion compensation partitions.
Definition rv34.h:55
@ RV34_MB_P_8x8
P-frame macroblock, 8x8 motion compensation partitions.
Definition rv34.h:49
@ RV34_MB_B_FORWARD
B-frame macroblock, forward prediction.
Definition rv34.h:50
@ RV34_MB_TYPE_INTRA16x16
Intra macroblock with DCs in a separate 4x4 block.
Definition rv34.h:47
@ RV34_MB_SKIP
Skipped block.
Definition rv34.h:52
#define MB_TYPE_SEPARATE_DC
Definition rv34.h:39
miscellaneous RV30/40 tables
static const uint8_t modulo_three_table[108]
precalculated results of division by three and modulo three for values 0-107
Definition rv34data.h:53
static const uint8_t rv34_chroma_quant[2][32]
quantizer values used for AC and DC coefficients in chroma blocks
Definition rv34data.h:74
static const uint8_t rv34_quant_to_vlc_set[2][32]
tables used to translate a quantizer value into a VLC set for decoding The first table is used for in...
Definition rv34data.h:95
static const uint16_t rv34_qscale_tab[32]
This table is used for dequantizing.
Definition rv34data.h:84
static const uint8_t rv34_cbp_code[16]
values used to reconstruct coded block pattern
Definition rv34data.h:42
static const uint8_t rv34_count_ones[16]
number of ones in nibble minus one
Definition rv34data.h:35
static const uint8_t rv34_mb_bits_sizes[6]
bits needed to code the slice offset for the given size
Definition rv34data.h:111
static const uint16_t rv34_mb_max_sizes[6]
maximum number of macroblocks for each of the possible slice offset sizes
Definition rv34data.h:106
RV30/40 VLC tables.
#define MAX_VLC_SIZE
Definition rv34vlc.h:40
static const uint8_t rv34_intra_coeff[NUM_INTRA_TABLES][COEFF_VLC_SIZE]
Definition rv34vlc.h:2281
static const uint8_t rv34_inter_cbppat[NUM_INTER_TABLES][CBPPAT_VLC_SIZE]
Definition rv34vlc.h:2305
#define NUM_INTRA_TABLES
Definition rv34vlc.h:32
static const uint8_t rv34_table_intra_thirdpat[NUM_INTRA_TABLES][2][OTHERBLK_VLC_SIZE]
Definition rv34vlc.h:2177
#define OTHERBLK_VLC_SIZE
Definition rv34vlc.h:38
#define FIRSTBLK_VLC_SIZE
Definition rv34vlc.h:37
static const uint8_t rv34_inter_cbp[NUM_INTER_TABLES][4][CBP_VLC_SIZE]
Definition rv34vlc.h:2890
static const uint8_t rv34_table_inter_secondpat[NUM_INTER_TABLES][2][OTHERBLK_VLC_SIZE]
Definition rv34vlc.h:3737
static const uint8_t rv34_table_intra_cbp[NUM_INTRA_TABLES][8][CBP_VLC_SIZE]
Definition rv34vlc.h:886
static const uint8_t rv34_table_intra_secondpat[NUM_INTRA_TABLES][2][OTHERBLK_VLC_SIZE]
Definition rv34vlc.h:2074
#define COEFF_VLC_SIZE
Definition rv34vlc.h:39
static const uint8_t rv34_table_intra_firstpat[NUM_INTRA_TABLES][4][FIRSTBLK_VLC_SIZE]
Definition rv34vlc.h:940
#define CBPPAT_VLC_SIZE
Definition rv34vlc.h:35
#define CBP_VLC_SIZE
Definition rv34vlc.h:36
static const uint8_t rv34_table_inter_firstpat[NUM_INTER_TABLES][2][FIRSTBLK_VLC_SIZE]
Definition rv34vlc.h:2936
static const uint8_t rv34_inter_coeff[NUM_INTER_TABLES][COEFF_VLC_SIZE]
Definition rv34vlc.h:4024
static const uint8_t rv34_table_intra_cbppat[NUM_INTRA_TABLES][2][CBPPAT_VLC_SIZE]
Definition rv34vlc.h:42
#define NUM_INTER_TABLES
Definition rv34vlc.h:33
static const uint8_t rv34_table_inter_thirdpat[NUM_INTER_TABLES][2][OTHERBLK_VLC_SIZE]
Definition rv34vlc.h:3880
#define FF_ARRAY_ELEMS(a)
const uint8_t * code
Definition spdifenc.c:433
main external API structure.
Definition avcodec.h:443
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition avcodec.h:643
int has_b_frames
Size of the frame reordering buffer in the decoder.
Definition avcodec.h:709
void * priv_data
Definition avcodec.h:470
enum AVDiscard skip_frame
Skip decoding for selected frames.
Definition avcodec.h:1667
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
This structure stores compressed data.
Definition packet.h:580
int size
Definition packet.h:604
uint8_t * data
Definition packet.h:603
Rational number (pair of numerator and denominator).
Definition rational.h:58
int num
Numerator.
Definition rational.h:59
uint32_t * mb_type
types and macros are defined in mpegutils.h
int16_t(*[2] motion_val)[2]
MpegEncContext.
Definition mpegvideo.h:67
int context_initialized
Definition mpegvideo.h:95
decoder context
Definition rv34.h:87
VLC tables used by the decoder.
Definition rv34.h:66
VLC cbp[2][4]
VLCs used for coded block patterns decoding.
Definition rv34.h:68
const VLCElem * coefficient
VLCs used for decoding big coefficients.
Definition rv34.h:72
const VLCElem * first_pattern[4]
VLCs used for decoding coefficients in the first subblock.
Definition rv34.h:69
const VLCElem * second_pattern[2]
VLCs used for decoding coefficients in the subblocks 2 and 3.
Definition rv34.h:70
const VLCElem * cbppattern[2]
VLCs used for pattern of coded block patterns decoding.
Definition rv34.h:67
const VLCElem * third_pattern[2]
VLCs used for decoding coefficients in the last subblock.
Definition rv34.h:71
essential slice information
Definition rv34.h:76
int pts
frame timestamp
Definition rv34.h:83
int start
Definition rv34.h:80
int width
coded width
Definition rv34.h:81
int height
coded height
Definition rv34.h:82
int type
slice type (intra, inter)
Definition rv34.h:77
ThreadProgress is an API to easily notify other threads about progress of any kind as long as it can ...
Definition vlc.h:32
Definition vlc.h:50
int table_size
Definition vlc.h:53
int table_allocated
Definition vlc.h:53
VLCElem * table
Definition vlc.h:52
int bits
Definition vlc.h:51
#define stride
#define av_mallocz(s)
#define av_freep(p)
#define av_log(a,...)
#define src
Definition vp8dsp.c:248
#define height
Definition dsp.h:89
#define width
Definition dsp.h:89
void ff_thread_progress_report(ThreadProgress *pro, int n)
This function is a no-op in no-op mode; otherwise it notifies other threads that a certain level of p...
void ff_thread_progress_await(const ThreadProgress *pro_c, int n)
This function is a no-op in no-op mode; otherwise it waits until other threads have reached a certain...
int size
static const double coeff[2][5]
static int mod(int a, int b)
Modulo operation with only positive remainders.
Definition vf_v360.c:755
int ff_vlc_init_sparse(VLC *vlc, int nb_bits, int nb_codes, const void *bits, int bits_wrap, int bits_size, const void *codes, int codes_wrap, int codes_size, const void *symbols, int symbols_wrap, int symbols_size, int flags)
Build VLC decoding tables suitable for use with get_vlc2().
Definition vlc.c:250
#define VLC_INIT_STATIC_OVERLONG
Definition vlc.h:191
static const uint8_t quant[64]
Definition vmixdec.c:71