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 Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
27 #include "libavutil/internal.h"
28 
29 #include "avcodec.h"
30 #include "dsputil.h"
31 #include "mpegvideo.h"
32 #include "golomb.h"
33 #include "internal.h"
34 #include "mathops.h"
35 #include "rectangle.h"
36 #include "thread.h"
37 
38 #include "rv34vlc.h"
39 #include "rv34data.h"
40 #include "rv34.h"
41 
42 //#define DEBUG
43 
44 static inline void ZERO8x2(void* dst, int stride)
45 {
46  fill_rectangle(dst, 1, 2, stride, 0, 4);
47  fill_rectangle(((uint8_t*)(dst))+4, 1, 2, stride, 0, 4);
48 }
49 
51 static const int rv34_mb_type_to_lavc[12] = {
64 };
65 
66 
68 
69 static int rv34_decode_mv(RV34DecContext *r, int block_type);
70 
76 static const int table_offs[] = {
77  0, 1818, 3622, 4144, 4698, 5234, 5804, 5868, 5900, 5932,
78  5996, 6252, 6316, 6348, 6380, 7674, 8944, 10274, 11668, 12250,
79  14060, 15846, 16372, 16962, 17512, 18148, 18180, 18212, 18244, 18308,
80  18564, 18628, 18660, 18692, 20036, 21314, 22648, 23968, 24614, 26384,
81  28190, 28736, 29366, 29938, 30608, 30640, 30672, 30704, 30768, 31024,
82  31088, 31120, 31184, 32570, 33898, 35236, 36644, 37286, 39020, 40802,
83  41368, 42052, 42692, 43348, 43380, 43412, 43444, 43476, 43604, 43668,
84  43700, 43732, 45100, 46430, 47778, 49160, 49802, 51550, 53340, 53972,
85  54648, 55348, 55994, 56122, 56154, 56186, 56218, 56346, 56410, 56442,
86  56474, 57878, 59290, 60636, 62036, 62682, 64460, 64524, 64588, 64716,
87  64844, 66076, 67466, 67978, 68542, 69064, 69648, 70296, 72010, 72074,
88  72138, 72202, 72330, 73572, 74936, 75454, 76030, 76566, 77176, 77822,
89  79582, 79646, 79678, 79742, 79870, 81180, 82536, 83064, 83672, 84242,
90  84934, 85576, 87384, 87448, 87480, 87544, 87672, 88982, 90340, 90902,
91  91598, 92182, 92846, 93488, 95246, 95278, 95310, 95374, 95502, 96878,
92  98266, 98848, 99542, 100234, 100884, 101524, 103320, 103352, 103384, 103416,
93  103480, 104874, 106222, 106910, 107584, 108258, 108902, 109544, 111366, 111398,
94  111430, 111462, 111494, 112878, 114320, 114988, 115660, 116310, 116950, 117592
95 };
96 
97 static VLC_TYPE table_data[117592][2];
98 
107 static void rv34_gen_vlc(const uint8_t *bits, int size, VLC *vlc, const uint8_t *insyms,
108  const int num)
109 {
110  int i;
111  int counts[17] = {0}, codes[17];
112  uint16_t cw[MAX_VLC_SIZE], syms[MAX_VLC_SIZE];
114  int maxbits = 0, realsize = 0;
115 
116  for(i = 0; i < size; i++){
117  if(bits[i]){
118  bits2[realsize] = bits[i];
119  syms[realsize] = insyms ? insyms[i] : i;
120  realsize++;
121  maxbits = FFMAX(maxbits, bits[i]);
122  counts[bits[i]]++;
123  }
124  }
125 
126  codes[0] = 0;
127  for(i = 0; i < 16; i++)
128  codes[i+1] = (codes[i] + counts[i]) << 1;
129  for(i = 0; i < realsize; i++)
130  cw[i] = codes[bits2[i]]++;
131 
132  vlc->table = &table_data[table_offs[num]];
133  vlc->table_allocated = table_offs[num + 1] - table_offs[num];
134  ff_init_vlc_sparse(vlc, FFMIN(maxbits, 9), realsize,
135  bits2, 1, 1,
136  cw, 2, 2,
137  syms, 2, 2, INIT_VLC_USE_NEW_STATIC);
138 }
139 
143 static av_cold void rv34_init_tables(void)
144 {
145  int i, j, k;
146 
147  for(i = 0; i < NUM_INTRA_TABLES; i++){
148  for(j = 0; j < 2; j++){
149  rv34_gen_vlc(rv34_table_intra_cbppat [i][j], CBPPAT_VLC_SIZE, &intra_vlcs[i].cbppattern[j], NULL, 19*i + 0 + j);
150  rv34_gen_vlc(rv34_table_intra_secondpat[i][j], OTHERBLK_VLC_SIZE, &intra_vlcs[i].second_pattern[j], NULL, 19*i + 2 + j);
151  rv34_gen_vlc(rv34_table_intra_thirdpat [i][j], OTHERBLK_VLC_SIZE, &intra_vlcs[i].third_pattern[j], NULL, 19*i + 4 + j);
152  for(k = 0; k < 4; k++){
153  rv34_gen_vlc(rv34_table_intra_cbp[i][j+k*2], CBP_VLC_SIZE, &intra_vlcs[i].cbp[j][k], rv34_cbp_code, 19*i + 6 + j*4 + k);
154  }
155  }
156  for(j = 0; j < 4; j++){
157  rv34_gen_vlc(rv34_table_intra_firstpat[i][j], FIRSTBLK_VLC_SIZE, &intra_vlcs[i].first_pattern[j], NULL, 19*i + 14 + j);
158  }
159  rv34_gen_vlc(rv34_intra_coeff[i], COEFF_VLC_SIZE, &intra_vlcs[i].coefficient, NULL, 19*i + 18);
160  }
161 
162  for(i = 0; i < NUM_INTER_TABLES; i++){
163  rv34_gen_vlc(rv34_inter_cbppat[i], CBPPAT_VLC_SIZE, &inter_vlcs[i].cbppattern[0], NULL, i*12 + 95);
164  for(j = 0; j < 4; j++){
165  rv34_gen_vlc(rv34_inter_cbp[i][j], CBP_VLC_SIZE, &inter_vlcs[i].cbp[0][j], rv34_cbp_code, i*12 + 96 + j);
166  }
167  for(j = 0; j < 2; j++){
168  rv34_gen_vlc(rv34_table_inter_firstpat [i][j], FIRSTBLK_VLC_SIZE, &inter_vlcs[i].first_pattern[j], NULL, i*12 + 100 + j);
169  rv34_gen_vlc(rv34_table_inter_secondpat[i][j], OTHERBLK_VLC_SIZE, &inter_vlcs[i].second_pattern[j], NULL, i*12 + 102 + j);
170  rv34_gen_vlc(rv34_table_inter_thirdpat [i][j], OTHERBLK_VLC_SIZE, &inter_vlcs[i].third_pattern[j], NULL, i*12 + 104 + j);
171  }
172  rv34_gen_vlc(rv34_inter_coeff[i], COEFF_VLC_SIZE, &inter_vlcs[i].coefficient, NULL, i*12 + 106);
173  }
174 }
175  // vlc group
177 
186 static int rv34_decode_cbp(GetBitContext *gb, RV34VLC *vlc, int table)
187 {
188  int pattern, code, cbp=0;
189  int ones;
190  static const int cbp_masks[3] = {0x100000, 0x010000, 0x110000};
191  static const int shifts[4] = { 0, 2, 8, 10 };
192  const int *curshift = shifts;
193  int i, t, mask;
194 
195  code = get_vlc2(gb, vlc->cbppattern[table].table, 9, 2);
196  pattern = code & 0xF;
197  code >>= 4;
198 
199  ones = rv34_count_ones[pattern];
200 
201  for(mask = 8; mask; mask >>= 1, curshift++){
202  if(pattern & mask)
203  cbp |= get_vlc2(gb, vlc->cbp[table][ones].table, vlc->cbp[table][ones].bits, 1) << curshift[0];
204  }
205 
206  for(i = 0; i < 4; i++){
207  t = (modulo_three_table[code] >> (6 - 2*i)) & 3;
208  if(t == 1)
209  cbp |= cbp_masks[get_bits1(gb)] << i;
210  if(t == 2)
211  cbp |= cbp_masks[2] << i;
212  }
213  return cbp;
214 }
215 
219 static inline void decode_coeff(DCTELEM *dst, int coef, int esc, GetBitContext *gb, VLC* vlc, int q)
220 {
221  if(coef){
222  if(coef == esc){
223  coef = get_vlc2(gb, vlc->table, 9, 2);
224  if(coef > 23){
225  coef -= 23;
226  coef = 22 + ((1 << coef) | get_bits(gb, coef));
227  }
228  coef += esc;
229  }
230  if(get_bits1(gb))
231  coef = -coef;
232  *dst = (coef*q + 8) >> 4;
233  }
234 }
235 
239 static inline void decode_subblock(DCTELEM *dst, int code, const int is_block2, GetBitContext *gb, VLC *vlc, int q)
240 {
241  int flags = modulo_three_table[code];
242 
243  decode_coeff( dst+0*4+0, (flags >> 6) , 3, gb, vlc, q);
244  if(is_block2){
245  decode_coeff(dst+1*4+0, (flags >> 4) & 3, 2, gb, vlc, q);
246  decode_coeff(dst+0*4+1, (flags >> 2) & 3, 2, gb, vlc, q);
247  }else{
248  decode_coeff(dst+0*4+1, (flags >> 4) & 3, 2, gb, vlc, q);
249  decode_coeff(dst+1*4+0, (flags >> 2) & 3, 2, gb, vlc, q);
250  }
251  decode_coeff( dst+1*4+1, (flags >> 0) & 3, 2, gb, vlc, q);
252 }
253 
257 static inline void decode_subblock1(DCTELEM *dst, int code, GetBitContext *gb, VLC *vlc, int q)
258 {
259  int coeff = modulo_three_table[code] >> 6;
260  decode_coeff(dst, coeff, 3, gb, vlc, q);
261 }
262 
263 static inline void decode_subblock3(DCTELEM *dst, int code, GetBitContext *gb, VLC *vlc,
264  int q_dc, int q_ac1, int q_ac2)
265 {
266  int flags = modulo_three_table[code];
267 
268  decode_coeff(dst+0*4+0, (flags >> 6) , 3, gb, vlc, q_dc);
269  decode_coeff(dst+0*4+1, (flags >> 4) & 3, 2, gb, vlc, q_ac1);
270  decode_coeff(dst+1*4+0, (flags >> 2) & 3, 2, gb, vlc, q_ac1);
271  decode_coeff(dst+1*4+1, (flags >> 0) & 3, 2, gb, vlc, q_ac2);
272 }
273 
285 static int rv34_decode_block(DCTELEM *dst, GetBitContext *gb, RV34VLC *rvlc, int fc, int sc, int q_dc, int q_ac1, int q_ac2)
286 {
287  int code, pattern, has_ac = 1;
288 
289  code = get_vlc2(gb, rvlc->first_pattern[fc].table, 9, 2);
290 
291  pattern = code & 0x7;
292 
293  code >>= 3;
294 
295  if (modulo_three_table[code] & 0x3F) {
296  decode_subblock3(dst, code, gb, &rvlc->coefficient, q_dc, q_ac1, q_ac2);
297  } else {
298  decode_subblock1(dst, code, gb, &rvlc->coefficient, q_dc);
299  if (!pattern)
300  return 0;
301  has_ac = 0;
302  }
303 
304  if(pattern & 4){
305  code = get_vlc2(gb, rvlc->second_pattern[sc].table, 9, 2);
306  decode_subblock(dst + 4*0+2, code, 0, gb, &rvlc->coefficient, q_ac2);
307  }
308  if(pattern & 2){ // Looks like coefficients 1 and 2 are swapped for this block
309  code = get_vlc2(gb, rvlc->second_pattern[sc].table, 9, 2);
310  decode_subblock(dst + 4*2+0, code, 1, gb, &rvlc->coefficient, q_ac2);
311  }
312  if(pattern & 1){
313  code = get_vlc2(gb, rvlc->third_pattern[sc].table, 9, 2);
314  decode_subblock(dst + 4*2+2, code, 0, gb, &rvlc->coefficient, q_ac2);
315  }
316  return has_ac | pattern;
317 }
318 
329 {
330  int i;
331  for(i = 0; i < 5; i++)
332  if(rv34_mb_max_sizes[i] >= mb_size - 1)
333  break;
334  return rv34_mb_bits_sizes[i];
335 }
336 
340 static inline RV34VLC* choose_vlc_set(int quant, int mod, int type)
341 {
342  if(mod == 2 && quant < 19) quant += 10;
343  else if(mod && quant < 26) quant += 5;
344  return type ? &inter_vlcs[rv34_quant_to_vlc_set[1][av_clip(quant, 0, 30)]]
345  : &intra_vlcs[rv34_quant_to_vlc_set[0][av_clip(quant, 0, 30)]];
346 }
347 
351 static int rv34_decode_intra_mb_header(RV34DecContext *r, int8_t *intra_types)
352 {
353  MpegEncContext *s = &r->s;
354  GetBitContext *gb = &s->gb;
355  int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
356  int t;
357 
358  r->is16 = get_bits1(gb);
359  if(r->is16){
362  t = get_bits(gb, 2);
363  fill_rectangle(intra_types, 4, 4, r->intra_types_stride, t, sizeof(intra_types[0]));
364  r->luma_vlc = 2;
365  }else{
366  if(!r->rv30){
367  if(!get_bits1(gb))
368  av_log(s->avctx, AV_LOG_ERROR, "Need DQUANT\n");
369  }
372  if(r->decode_intra_types(r, gb, intra_types) < 0)
373  return -1;
374  r->luma_vlc = 1;
375  }
376 
377  r->chroma_vlc = 0;
378  r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 0);
379 
380  return rv34_decode_cbp(gb, r->cur_vlcs, r->is16);
381 }
382 
386 static int rv34_decode_inter_mb_header(RV34DecContext *r, int8_t *intra_types)
387 {
388  MpegEncContext *s = &r->s;
389  GetBitContext *gb = &s->gb;
390  int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
391  int i, t;
392 
393  r->block_type = r->decode_mb_info(r);
394  if(r->block_type == -1)
395  return -1;
397  r->mb_type[mb_pos] = r->block_type;
398  if(r->block_type == RV34_MB_SKIP){
399  if(s->pict_type == AV_PICTURE_TYPE_P)
400  r->mb_type[mb_pos] = RV34_MB_P_16x16;
401  if(s->pict_type == AV_PICTURE_TYPE_B)
402  r->mb_type[mb_pos] = RV34_MB_B_DIRECT;
403  }
404  r->is16 = !!IS_INTRA16x16(s->current_picture_ptr->f.mb_type[mb_pos]);
405  rv34_decode_mv(r, r->block_type);
406  if(r->block_type == RV34_MB_SKIP){
407  fill_rectangle(intra_types, 4, 4, r->intra_types_stride, 0, sizeof(intra_types[0]));
408  return 0;
409  }
410  r->chroma_vlc = 1;
411  r->luma_vlc = 0;
412 
413  if(IS_INTRA(s->current_picture_ptr->f.mb_type[mb_pos])){
414  if(r->is16){
415  t = get_bits(gb, 2);
416  fill_rectangle(intra_types, 4, 4, r->intra_types_stride, t, sizeof(intra_types[0]));
417  r->luma_vlc = 2;
418  }else{
419  if(r->decode_intra_types(r, gb, intra_types) < 0)
420  return -1;
421  r->luma_vlc = 1;
422  }
423  r->chroma_vlc = 0;
424  r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 0);
425  }else{
426  for(i = 0; i < 16; i++)
427  intra_types[(i & 3) + (i>>2) * r->intra_types_stride] = 0;
428  r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 1);
429  if(r->mb_type[mb_pos] == RV34_MB_P_MIX16x16){
430  r->is16 = 1;
431  r->chroma_vlc = 1;
432  r->luma_vlc = 2;
433  r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 0);
434  }
435  }
436 
437  return rv34_decode_cbp(gb, r->cur_vlcs, r->is16);
438 }
439  //bitstream functions
441 
448 static const uint8_t part_sizes_w[RV34_MB_TYPES] = { 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2 };
449 
451 static const uint8_t part_sizes_h[RV34_MB_TYPES] = { 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2 };
452 
454 static const uint8_t avail_indexes[4] = { 6, 7, 10, 11 };
455 
463 static void rv34_pred_mv(RV34DecContext *r, int block_type, int subblock_no, int dmv_no)
464 {
465  MpegEncContext *s = &r->s;
466  int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
467  int A[2] = {0}, B[2], C[2];
468  int i, j;
469  int mx, my;
470  int* avail = r->avail_cache + avail_indexes[subblock_no];
471  int c_off = part_sizes_w[block_type];
472 
473  mv_pos += (subblock_no & 1) + (subblock_no >> 1)*s->b8_stride;
474  if(subblock_no == 3)
475  c_off = -1;
476 
477  if(avail[-1]){
478  A[0] = s->current_picture_ptr->f.motion_val[0][mv_pos-1][0];
479  A[1] = s->current_picture_ptr->f.motion_val[0][mv_pos-1][1];
480  }
481  if(avail[-4]){
482  B[0] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride][0];
483  B[1] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride][1];
484  }else{
485  B[0] = A[0];
486  B[1] = A[1];
487  }
488  if(!avail[c_off-4]){
489  if(avail[-4] && (avail[-1] || r->rv30)){
490  C[0] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride-1][0];
491  C[1] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride-1][1];
492  }else{
493  C[0] = A[0];
494  C[1] = A[1];
495  }
496  }else{
497  C[0] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride+c_off][0];
498  C[1] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride+c_off][1];
499  }
500  mx = mid_pred(A[0], B[0], C[0]);
501  my = mid_pred(A[1], B[1], C[1]);
502  mx += r->dmv[dmv_no][0];
503  my += r->dmv[dmv_no][1];
504  for(j = 0; j < part_sizes_h[block_type]; j++){
505  for(i = 0; i < part_sizes_w[block_type]; i++){
506  s->current_picture_ptr->f.motion_val[0][mv_pos + i + j*s->b8_stride][0] = mx;
507  s->current_picture_ptr->f.motion_val[0][mv_pos + i + j*s->b8_stride][1] = my;
508  }
509  }
510 }
511 
512 #define GET_PTS_DIFF(a, b) ((a - b + 8192) & 0x1FFF)
513 
517 static int calc_add_mv(RV34DecContext *r, int dir, int val)
518 {
519  int mul = dir ? -r->mv_weight2 : r->mv_weight1;
520 
521  return (val * mul + 0x2000) >> 14;
522 }
523 
527 static inline void rv34_pred_b_vector(int A[2], int B[2], int C[2],
528  int A_avail, int B_avail, int C_avail,
529  int *mx, int *my)
530 {
531  if(A_avail + B_avail + C_avail != 3){
532  *mx = A[0] + B[0] + C[0];
533  *my = A[1] + B[1] + C[1];
534  if(A_avail + B_avail + C_avail == 2){
535  *mx /= 2;
536  *my /= 2;
537  }
538  }else{
539  *mx = mid_pred(A[0], B[0], C[0]);
540  *my = mid_pred(A[1], B[1], C[1]);
541  }
542 }
543 
547 static void rv34_pred_mv_b(RV34DecContext *r, int block_type, int dir)
548 {
549  MpegEncContext *s = &r->s;
550  int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
551  int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
552  int A[2] = { 0 }, B[2] = { 0 }, C[2] = { 0 };
553  int has_A = 0, has_B = 0, has_C = 0;
554  int mx, my;
555  int i, j;
556  Picture *cur_pic = s->current_picture_ptr;
557  const int mask = dir ? MB_TYPE_L1 : MB_TYPE_L0;
558  int type = cur_pic->f.mb_type[mb_pos];
559 
560  if((r->avail_cache[6-1] & type) & mask){
561  A[0] = cur_pic->f.motion_val[dir][mv_pos - 1][0];
562  A[1] = cur_pic->f.motion_val[dir][mv_pos - 1][1];
563  has_A = 1;
564  }
565  if((r->avail_cache[6-4] & type) & mask){
566  B[0] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride][0];
567  B[1] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride][1];
568  has_B = 1;
569  }
570  if(r->avail_cache[6-4] && (r->avail_cache[6-2] & type) & mask){
571  C[0] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride + 2][0];
572  C[1] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride + 2][1];
573  has_C = 1;
574  }else if((s->mb_x+1) == s->mb_width && (r->avail_cache[6-5] & type) & mask){
575  C[0] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride - 1][0];
576  C[1] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride - 1][1];
577  has_C = 1;
578  }
579 
580  rv34_pred_b_vector(A, B, C, has_A, has_B, has_C, &mx, &my);
581 
582  mx += r->dmv[dir][0];
583  my += r->dmv[dir][1];
584 
585  for(j = 0; j < 2; j++){
586  for(i = 0; i < 2; i++){
587  cur_pic->f.motion_val[dir][mv_pos + i + j*s->b8_stride][0] = mx;
588  cur_pic->f.motion_val[dir][mv_pos + i + j*s->b8_stride][1] = my;
589  }
590  }
591  if(block_type == RV34_MB_B_BACKWARD || block_type == RV34_MB_B_FORWARD){
592  ZERO8x2(cur_pic->f.motion_val[!dir][mv_pos], s->b8_stride);
593  }
594 }
595 
599 static void rv34_pred_mv_rv3(RV34DecContext *r, int block_type, int dir)
600 {
601  MpegEncContext *s = &r->s;
602  int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
603  int A[2] = {0}, B[2], C[2];
604  int i, j, k;
605  int mx, my;
606  int* avail = r->avail_cache + avail_indexes[0];
607 
608  if(avail[-1]){
609  A[0] = s->current_picture_ptr->f.motion_val[0][mv_pos - 1][0];
610  A[1] = s->current_picture_ptr->f.motion_val[0][mv_pos - 1][1];
611  }
612  if(avail[-4]){
613  B[0] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride][0];
614  B[1] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride][1];
615  }else{
616  B[0] = A[0];
617  B[1] = A[1];
618  }
619  if(!avail[-4 + 2]){
620  if(avail[-4] && (avail[-1])){
621  C[0] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride - 1][0];
622  C[1] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride - 1][1];
623  }else{
624  C[0] = A[0];
625  C[1] = A[1];
626  }
627  }else{
628  C[0] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride + 2][0];
629  C[1] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride + 2][1];
630  }
631  mx = mid_pred(A[0], B[0], C[0]);
632  my = mid_pred(A[1], B[1], C[1]);
633  mx += r->dmv[0][0];
634  my += r->dmv[0][1];
635  for(j = 0; j < 2; j++){
636  for(i = 0; i < 2; i++){
637  for(k = 0; k < 2; k++){
638  s->current_picture_ptr->f.motion_val[k][mv_pos + i + j*s->b8_stride][0] = mx;
639  s->current_picture_ptr->f.motion_val[k][mv_pos + i + j*s->b8_stride][1] = my;
640  }
641  }
642  }
643 }
644 
645 static const int chroma_coeffs[3] = { 0, 3, 5 };
646 
662 static inline void rv34_mc(RV34DecContext *r, const int block_type,
663  const int xoff, const int yoff, int mv_off,
664  const int width, const int height, int dir,
665  const int thirdpel, int weighted,
666  qpel_mc_func (*qpel_mc)[16],
667  h264_chroma_mc_func (*chroma_mc))
668 {
669  MpegEncContext *s = &r->s;
670  uint8_t *Y, *U, *V, *srcY, *srcU, *srcV;
671  int dxy, mx, my, umx, umy, lx, ly, uvmx, uvmy, src_x, src_y, uvsrc_x, uvsrc_y;
672  int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride + mv_off;
673  int is16x16 = 1;
674 
675  if(thirdpel){
676  int chroma_mx, chroma_my;
677  mx = (s->current_picture_ptr->f.motion_val[dir][mv_pos][0] + (3 << 24)) / 3 - (1 << 24);
678  my = (s->current_picture_ptr->f.motion_val[dir][mv_pos][1] + (3 << 24)) / 3 - (1 << 24);
679  lx = (s->current_picture_ptr->f.motion_val[dir][mv_pos][0] + (3 << 24)) % 3;
680  ly = (s->current_picture_ptr->f.motion_val[dir][mv_pos][1] + (3 << 24)) % 3;
681  chroma_mx = s->current_picture_ptr->f.motion_val[dir][mv_pos][0] / 2;
682  chroma_my = s->current_picture_ptr->f.motion_val[dir][mv_pos][1] / 2;
683  umx = (chroma_mx + (3 << 24)) / 3 - (1 << 24);
684  umy = (chroma_my + (3 << 24)) / 3 - (1 << 24);
685  uvmx = chroma_coeffs[(chroma_mx + (3 << 24)) % 3];
686  uvmy = chroma_coeffs[(chroma_my + (3 << 24)) % 3];
687  }else{
688  int cx, cy;
689  mx = s->current_picture_ptr->f.motion_val[dir][mv_pos][0] >> 2;
690  my = s->current_picture_ptr->f.motion_val[dir][mv_pos][1] >> 2;
691  lx = s->current_picture_ptr->f.motion_val[dir][mv_pos][0] & 3;
692  ly = s->current_picture_ptr->f.motion_val[dir][mv_pos][1] & 3;
693  cx = s->current_picture_ptr->f.motion_val[dir][mv_pos][0] / 2;
694  cy = s->current_picture_ptr->f.motion_val[dir][mv_pos][1] / 2;
695  umx = cx >> 2;
696  umy = cy >> 2;
697  uvmx = (cx & 3) << 1;
698  uvmy = (cy & 3) << 1;
699  //due to some flaw RV40 uses the same MC compensation routine for H2V2 and H3V3
700  if(uvmx == 6 && uvmy == 6)
701  uvmx = uvmy = 4;
702  }
703 
705  /* wait for the referenced mb row to be finished */
706  int mb_row = s->mb_y + ((yoff + my + 5 + 8 * height) >> 4);
707  AVFrame *f = dir ? &s->next_picture_ptr->f : &s->last_picture_ptr->f;
708  ff_thread_await_progress(f, mb_row, 0);
709  }
710 
711  dxy = ly*4 + lx;
712  srcY = dir ? s->next_picture_ptr->f.data[0] : s->last_picture_ptr->f.data[0];
713  srcU = dir ? s->next_picture_ptr->f.data[1] : s->last_picture_ptr->f.data[1];
714  srcV = dir ? s->next_picture_ptr->f.data[2] : s->last_picture_ptr->f.data[2];
715  src_x = s->mb_x * 16 + xoff + mx;
716  src_y = s->mb_y * 16 + yoff + my;
717  uvsrc_x = s->mb_x * 8 + (xoff >> 1) + umx;
718  uvsrc_y = s->mb_y * 8 + (yoff >> 1) + umy;
719  srcY += src_y * s->linesize + src_x;
720  srcU += uvsrc_y * s->uvlinesize + uvsrc_x;
721  srcV += uvsrc_y * s->uvlinesize + uvsrc_x;
722  if(s->h_edge_pos - (width << 3) < 6 || s->v_edge_pos - (height << 3) < 6 ||
723  (unsigned)(src_x - !!lx*2) > s->h_edge_pos - !!lx*2 - (width <<3) - 4 ||
724  (unsigned)(src_y - !!ly*2) > s->v_edge_pos - !!ly*2 - (height<<3) - 4) {
725  uint8_t *uvbuf = s->edge_emu_buffer + 22 * s->linesize;
726 
727  srcY -= 2 + 2*s->linesize;
728  s->vdsp.emulated_edge_mc(s->edge_emu_buffer, srcY, s->linesize, (width<<3)+6, (height<<3)+6,
729  src_x - 2, src_y - 2, s->h_edge_pos, s->v_edge_pos);
730  srcY = s->edge_emu_buffer + 2 + 2*s->linesize;
731  s->vdsp.emulated_edge_mc(uvbuf , srcU, s->uvlinesize, (width<<2)+1, (height<<2)+1,
732  uvsrc_x, uvsrc_y, s->h_edge_pos >> 1, s->v_edge_pos >> 1);
733  s->vdsp.emulated_edge_mc(uvbuf + 16, srcV, s->uvlinesize, (width<<2)+1, (height<<2)+1,
734  uvsrc_x, uvsrc_y, s->h_edge_pos >> 1, s->v_edge_pos >> 1);
735  srcU = uvbuf;
736  srcV = uvbuf + 16;
737  }
738  if(!weighted){
739  Y = s->dest[0] + xoff + yoff *s->linesize;
740  U = s->dest[1] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
741  V = s->dest[2] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
742  }else{
743  Y = r->tmp_b_block_y [dir] + xoff + yoff *s->linesize;
744  U = r->tmp_b_block_uv[dir*2] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
745  V = r->tmp_b_block_uv[dir*2+1] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
746  }
747 
748  if(block_type == RV34_MB_P_16x8){
749  qpel_mc[1][dxy](Y, srcY, s->linesize);
750  Y += 8;
751  srcY += 8;
752  }else if(block_type == RV34_MB_P_8x16){
753  qpel_mc[1][dxy](Y, srcY, s->linesize);
754  Y += 8 * s->linesize;
755  srcY += 8 * s->linesize;
756  }
757  is16x16 = (block_type != RV34_MB_P_8x8) && (block_type != RV34_MB_P_16x8) && (block_type != RV34_MB_P_8x16);
758  qpel_mc[!is16x16][dxy](Y, srcY, s->linesize);
759  chroma_mc[2-width] (U, srcU, s->uvlinesize, height*4, uvmx, uvmy);
760  chroma_mc[2-width] (V, srcV, s->uvlinesize, height*4, uvmx, uvmy);
761 }
762 
763 static void rv34_mc_1mv(RV34DecContext *r, const int block_type,
764  const int xoff, const int yoff, int mv_off,
765  const int width, const int height, int dir)
766 {
767  rv34_mc(r, block_type, xoff, yoff, mv_off, width, height, dir, r->rv30, 0,
768  r->rdsp.put_pixels_tab,
770 }
771 
772 static void rv4_weight(RV34DecContext *r)
773 {
775  r->tmp_b_block_y[0],
776  r->tmp_b_block_y[1],
777  r->weight1,
778  r->weight2,
779  r->s.linesize);
781  r->tmp_b_block_uv[0],
782  r->tmp_b_block_uv[2],
783  r->weight1,
784  r->weight2,
785  r->s.uvlinesize);
787  r->tmp_b_block_uv[1],
788  r->tmp_b_block_uv[3],
789  r->weight1,
790  r->weight2,
791  r->s.uvlinesize);
792 }
793 
794 static void rv34_mc_2mv(RV34DecContext *r, const int block_type)
795 {
796  int weighted = !r->rv30 && block_type != RV34_MB_B_BIDIR && r->weight1 != 8192;
797 
798  rv34_mc(r, block_type, 0, 0, 0, 2, 2, 0, r->rv30, weighted,
799  r->rdsp.put_pixels_tab,
801  if(!weighted){
802  rv34_mc(r, block_type, 0, 0, 0, 2, 2, 1, r->rv30, 0,
803  r->rdsp.avg_pixels_tab,
805  }else{
806  rv34_mc(r, block_type, 0, 0, 0, 2, 2, 1, r->rv30, 1,
807  r->rdsp.put_pixels_tab,
809  rv4_weight(r);
810  }
811 }
812 
814 {
815  int i, j;
816  int weighted = !r->rv30 && r->weight1 != 8192;
817 
818  for(j = 0; j < 2; j++)
819  for(i = 0; i < 2; i++){
820  rv34_mc(r, RV34_MB_P_8x8, i*8, j*8, i+j*r->s.b8_stride, 1, 1, 0, r->rv30,
821  weighted,
822  r->rdsp.put_pixels_tab,
824  rv34_mc(r, RV34_MB_P_8x8, i*8, j*8, i+j*r->s.b8_stride, 1, 1, 1, r->rv30,
825  weighted,
826  weighted ? r->rdsp.put_pixels_tab : r->rdsp.avg_pixels_tab,
828  }
829  if(weighted)
830  rv4_weight(r);
831 }
832 
834 static const int num_mvs[RV34_MB_TYPES] = { 0, 0, 1, 4, 1, 1, 0, 0, 2, 2, 2, 1 };
835 
840 static int rv34_decode_mv(RV34DecContext *r, int block_type)
841 {
842  MpegEncContext *s = &r->s;
843  GetBitContext *gb = &s->gb;
844  int i, j, k, l;
845  int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
846  int next_bt;
847 
848  memset(r->dmv, 0, sizeof(r->dmv));
849  for(i = 0; i < num_mvs[block_type]; i++){
850  r->dmv[i][0] = svq3_get_se_golomb(gb);
851  r->dmv[i][1] = svq3_get_se_golomb(gb);
852  }
853  switch(block_type){
854  case RV34_MB_TYPE_INTRA:
856  ZERO8x2(s->current_picture_ptr->f.motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
857  return 0;
858  case RV34_MB_SKIP:
859  if(s->pict_type == AV_PICTURE_TYPE_P){
860  ZERO8x2(s->current_picture_ptr->f.motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
861  rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, 0);
862  break;
863  }
864  case RV34_MB_B_DIRECT:
865  //surprisingly, it uses motion scheme from next reference frame
866  /* wait for the current mb row to be finished */
869 
870  next_bt = s->next_picture_ptr->f.mb_type[s->mb_x + s->mb_y * s->mb_stride];
871  if(IS_INTRA(next_bt) || IS_SKIP(next_bt)){
872  ZERO8x2(s->current_picture_ptr->f.motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
873  ZERO8x2(s->current_picture_ptr->f.motion_val[1][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
874  }else
875  for(j = 0; j < 2; j++)
876  for(i = 0; i < 2; i++)
877  for(k = 0; k < 2; k++)
878  for(l = 0; l < 2; l++)
879  s->current_picture_ptr->f.motion_val[l][mv_pos + i + j*s->b8_stride][k] = calc_add_mv(r, l, s->next_picture_ptr->f.motion_val[0][mv_pos + i + j*s->b8_stride][k]);
880  if(!(IS_16X8(next_bt) || IS_8X16(next_bt) || IS_8X8(next_bt))) //we can use whole macroblock MC
881  rv34_mc_2mv(r, block_type);
882  else
883  rv34_mc_2mv_skip(r);
884  ZERO8x2(s->current_picture_ptr->f.motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
885  break;
886  case RV34_MB_P_16x16:
887  case RV34_MB_P_MIX16x16:
888  rv34_pred_mv(r, block_type, 0, 0);
889  rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, 0);
890  break;
891  case RV34_MB_B_FORWARD:
892  case RV34_MB_B_BACKWARD:
893  r->dmv[1][0] = r->dmv[0][0];
894  r->dmv[1][1] = r->dmv[0][1];
895  if(r->rv30)
896  rv34_pred_mv_rv3(r, block_type, block_type == RV34_MB_B_BACKWARD);
897  else
898  rv34_pred_mv_b (r, block_type, block_type == RV34_MB_B_BACKWARD);
899  rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, block_type == RV34_MB_B_BACKWARD);
900  break;
901  case RV34_MB_P_16x8:
902  case RV34_MB_P_8x16:
903  rv34_pred_mv(r, block_type, 0, 0);
904  rv34_pred_mv(r, block_type, 1 + (block_type == RV34_MB_P_16x8), 1);
905  if(block_type == RV34_MB_P_16x8){
906  rv34_mc_1mv(r, block_type, 0, 0, 0, 2, 1, 0);
907  rv34_mc_1mv(r, block_type, 0, 8, s->b8_stride, 2, 1, 0);
908  }
909  if(block_type == RV34_MB_P_8x16){
910  rv34_mc_1mv(r, block_type, 0, 0, 0, 1, 2, 0);
911  rv34_mc_1mv(r, block_type, 8, 0, 1, 1, 2, 0);
912  }
913  break;
914  case RV34_MB_B_BIDIR:
915  rv34_pred_mv_b (r, block_type, 0);
916  rv34_pred_mv_b (r, block_type, 1);
917  rv34_mc_2mv (r, block_type);
918  break;
919  case RV34_MB_P_8x8:
920  for(i=0;i< 4;i++){
921  rv34_pred_mv(r, block_type, i, i);
922  rv34_mc_1mv (r, block_type, (i&1)<<3, (i&2)<<2, (i&1)+(i>>1)*s->b8_stride, 1, 1, 0);
923  }
924  break;
925  }
926 
927  return 0;
928 } // mv group
930 
936 static const int ittrans[9] = {
939 };
940 
942 static const int ittrans16[4] = {
944 };
945 
949 static void rv34_pred_4x4_block(RV34DecContext *r, uint8_t *dst, int stride, int itype, int up, int left, int down, int right)
950 {
951  uint8_t *prev = dst - stride + 4;
952  uint32_t topleft;
953 
954  if(!up && !left)
955  itype = DC_128_PRED;
956  else if(!up){
957  if(itype == VERT_PRED) itype = HOR_PRED;
958  if(itype == DC_PRED) itype = LEFT_DC_PRED;
959  }else if(!left){
960  if(itype == HOR_PRED) itype = VERT_PRED;
961  if(itype == DC_PRED) itype = TOP_DC_PRED;
963  }
964  if(!down){
966  if(itype == HOR_UP_PRED) itype = HOR_UP_PRED_RV40_NODOWN;
967  if(itype == VERT_LEFT_PRED) itype = VERT_LEFT_PRED_RV40_NODOWN;
968  }
969  if(!right && up){
970  topleft = dst[-stride + 3] * 0x01010101u;
971  prev = (uint8_t*)&topleft;
972  }
973  r->h.pred4x4[itype](dst, prev, stride);
974 }
975 
976 static inline int adjust_pred16(int itype, int up, int left)
977 {
978  if(!up && !left)
979  itype = DC_128_PRED8x8;
980  else if(!up){
981  if(itype == PLANE_PRED8x8)itype = HOR_PRED8x8;
982  if(itype == VERT_PRED8x8) itype = HOR_PRED8x8;
983  if(itype == DC_PRED8x8) itype = LEFT_DC_PRED8x8;
984  }else if(!left){
985  if(itype == PLANE_PRED8x8)itype = VERT_PRED8x8;
986  if(itype == HOR_PRED8x8) itype = VERT_PRED8x8;
987  if(itype == DC_PRED8x8) itype = TOP_DC_PRED8x8;
988  }
989  return itype;
990 }
991 
992 static inline void rv34_process_block(RV34DecContext *r,
993  uint8_t *pdst, int stride,
994  int fc, int sc, int q_dc, int q_ac)
995 {
996  MpegEncContext *s = &r->s;
997  DCTELEM *ptr = s->block[0];
998  int has_ac = rv34_decode_block(ptr, &s->gb, r->cur_vlcs,
999  fc, sc, q_dc, q_ac, q_ac);
1000  if(has_ac){
1001  r->rdsp.rv34_idct_add(pdst, stride, ptr);
1002  }else{
1003  r->rdsp.rv34_idct_dc_add(pdst, stride, ptr[0]);
1004  ptr[0] = 0;
1005  }
1006 }
1007 
1008 static void rv34_output_i16x16(RV34DecContext *r, int8_t *intra_types, int cbp)
1009 {
1010  LOCAL_ALIGNED_16(DCTELEM, block16, [16]);
1011  MpegEncContext *s = &r->s;
1012  GetBitContext *gb = &s->gb;
1013  int q_dc = rv34_qscale_tab[ r->luma_dc_quant_i[s->qscale] ],
1014  q_ac = rv34_qscale_tab[s->qscale];
1015  uint8_t *dst = s->dest[0];
1016  DCTELEM *ptr = s->block[0];
1017  int i, j, itype, has_ac;
1018 
1019  memset(block16, 0, 16 * sizeof(*block16));
1020 
1021  has_ac = rv34_decode_block(block16, gb, r->cur_vlcs, 3, 0, q_dc, q_dc, q_ac);
1022  if(has_ac)
1023  r->rdsp.rv34_inv_transform(block16);
1024  else
1025  r->rdsp.rv34_inv_transform_dc(block16);
1026 
1027  itype = ittrans16[intra_types[0]];
1028  itype = adjust_pred16(itype, r->avail_cache[6-4], r->avail_cache[6-1]);
1029  r->h.pred16x16[itype](dst, s->linesize);
1030 
1031  for(j = 0; j < 4; j++){
1032  for(i = 0; i < 4; i++, cbp >>= 1){
1033  int dc = block16[i + j*4];
1034 
1035  if(cbp & 1){
1036  has_ac = rv34_decode_block(ptr, gb, r->cur_vlcs, r->luma_vlc, 0, q_ac, q_ac, q_ac);
1037  }else
1038  has_ac = 0;
1039 
1040  if(has_ac){
1041  ptr[0] = dc;
1042  r->rdsp.rv34_idct_add(dst+4*i, s->linesize, ptr);
1043  }else
1044  r->rdsp.rv34_idct_dc_add(dst+4*i, s->linesize, dc);
1045  }
1046 
1047  dst += 4*s->linesize;
1048  }
1049 
1050  itype = ittrans16[intra_types[0]];
1051  if(itype == PLANE_PRED8x8) itype = DC_PRED8x8;
1052  itype = adjust_pred16(itype, r->avail_cache[6-4], r->avail_cache[6-1]);
1053 
1054  q_dc = rv34_qscale_tab[rv34_chroma_quant[1][s->qscale]];
1055  q_ac = rv34_qscale_tab[rv34_chroma_quant[0][s->qscale]];
1056 
1057  for(j = 1; j < 3; j++){
1058  dst = s->dest[j];
1059  r->h.pred8x8[itype](dst, s->uvlinesize);
1060  for(i = 0; i < 4; i++, cbp >>= 1){
1061  uint8_t *pdst;
1062  if(!(cbp & 1)) continue;
1063  pdst = dst + (i&1)*4 + (i&2)*2*s->uvlinesize;
1064 
1065  rv34_process_block(r, pdst, s->uvlinesize,
1066  r->chroma_vlc, 1, q_dc, q_ac);
1067  }
1068  }
1069 }
1070 
1071 static void rv34_output_intra(RV34DecContext *r, int8_t *intra_types, int cbp)
1072 {
1073  MpegEncContext *s = &r->s;
1074  uint8_t *dst = s->dest[0];
1075  int avail[6*8] = {0};
1076  int i, j, k;
1077  int idx, q_ac, q_dc;
1078 
1079  // Set neighbour information.
1080  if(r->avail_cache[1])
1081  avail[0] = 1;
1082  if(r->avail_cache[2])
1083  avail[1] = avail[2] = 1;
1084  if(r->avail_cache[3])
1085  avail[3] = avail[4] = 1;
1086  if(r->avail_cache[4])
1087  avail[5] = 1;
1088  if(r->avail_cache[5])
1089  avail[8] = avail[16] = 1;
1090  if(r->avail_cache[9])
1091  avail[24] = avail[32] = 1;
1092 
1093  q_ac = rv34_qscale_tab[s->qscale];
1094  for(j = 0; j < 4; j++){
1095  idx = 9 + j*8;
1096  for(i = 0; i < 4; i++, cbp >>= 1, dst += 4, idx++){
1097  rv34_pred_4x4_block(r, dst, s->linesize, ittrans[intra_types[i]], avail[idx-8], avail[idx-1], avail[idx+7], avail[idx-7]);
1098  avail[idx] = 1;
1099  if(!(cbp & 1)) continue;
1100 
1101  rv34_process_block(r, dst, s->linesize,
1102  r->luma_vlc, 0, q_ac, q_ac);
1103  }
1104  dst += s->linesize * 4 - 4*4;
1105  intra_types += r->intra_types_stride;
1106  }
1107 
1108  intra_types -= r->intra_types_stride * 4;
1109 
1110  q_dc = rv34_qscale_tab[rv34_chroma_quant[1][s->qscale]];
1111  q_ac = rv34_qscale_tab[rv34_chroma_quant[0][s->qscale]];
1112 
1113  for(k = 0; k < 2; k++){
1114  dst = s->dest[1+k];
1115  fill_rectangle(r->avail_cache + 6, 2, 2, 4, 0, 4);
1116 
1117  for(j = 0; j < 2; j++){
1118  int* acache = r->avail_cache + 6 + j*4;
1119  for(i = 0; i < 2; i++, cbp >>= 1, acache++){
1120  int itype = ittrans[intra_types[i*2+j*2*r->intra_types_stride]];
1121  rv34_pred_4x4_block(r, dst+4*i, s->uvlinesize, itype, acache[-4], acache[-1], !i && !j, acache[-3]);
1122  acache[0] = 1;
1123 
1124  if(!(cbp&1)) continue;
1125 
1126  rv34_process_block(r, dst + 4*i, s->uvlinesize,
1127  r->chroma_vlc, 1, q_dc, q_ac);
1128  }
1129 
1130  dst += 4*s->uvlinesize;
1131  }
1132  }
1133 }
1134 
1135 static int is_mv_diff_gt_3(int16_t (*motion_val)[2], int step)
1136 {
1137  int d;
1138  d = motion_val[0][0] - motion_val[-step][0];
1139  if(d < -3 || d > 3)
1140  return 1;
1141  d = motion_val[0][1] - motion_val[-step][1];
1142  if(d < -3 || d > 3)
1143  return 1;
1144  return 0;
1145 }
1146 
1148 {
1149  MpegEncContext *s = &r->s;
1150  int hmvmask = 0, vmvmask = 0, i, j;
1151  int midx = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
1152  int16_t (*motion_val)[2] = &s->current_picture_ptr->f.motion_val[0][midx];
1153  for(j = 0; j < 16; j += 8){
1154  for(i = 0; i < 2; i++){
1155  if(is_mv_diff_gt_3(motion_val + i, 1))
1156  vmvmask |= 0x11 << (j + i*2);
1157  if((j || s->mb_y) && is_mv_diff_gt_3(motion_val + i, s->b8_stride))
1158  hmvmask |= 0x03 << (j + i*2);
1159  }
1160  motion_val += s->b8_stride;
1161  }
1162  if(s->first_slice_line)
1163  hmvmask &= ~0x000F;
1164  if(!s->mb_x)
1165  vmvmask &= ~0x1111;
1166  if(r->rv30){ //RV30 marks both subblocks on the edge for filtering
1167  vmvmask |= (vmvmask & 0x4444) >> 1;
1168  hmvmask |= (hmvmask & 0x0F00) >> 4;
1169  if(s->mb_x)
1170  r->deblock_coefs[s->mb_x - 1 + s->mb_y*s->mb_stride] |= (vmvmask & 0x1111) << 3;
1171  if(!s->first_slice_line)
1172  r->deblock_coefs[s->mb_x + (s->mb_y - 1)*s->mb_stride] |= (hmvmask & 0xF) << 12;
1173  }
1174  return hmvmask | vmvmask;
1175 }
1176 
1177 static int rv34_decode_inter_macroblock(RV34DecContext *r, int8_t *intra_types)
1178 {
1179  MpegEncContext *s = &r->s;
1180  GetBitContext *gb = &s->gb;
1181  uint8_t *dst = s->dest[0];
1182  DCTELEM *ptr = s->block[0];
1183  int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
1184  int cbp, cbp2;
1185  int q_dc, q_ac, has_ac;
1186  int i, j;
1187  int dist;
1188 
1189  // Calculate which neighbours are available. Maybe it's worth optimizing too.
1190  memset(r->avail_cache, 0, sizeof(r->avail_cache));
1191  fill_rectangle(r->avail_cache + 6, 2, 2, 4, 1, 4);
1192  dist = (s->mb_x - s->resync_mb_x) + (s->mb_y - s->resync_mb_y) * s->mb_width;
1193  if(s->mb_x && dist)
1194  r->avail_cache[5] =
1195  r->avail_cache[9] = s->current_picture_ptr->f.mb_type[mb_pos - 1];
1196  if(dist >= s->mb_width)
1197  r->avail_cache[2] =
1198  r->avail_cache[3] = s->current_picture_ptr->f.mb_type[mb_pos - s->mb_stride];
1199  if(((s->mb_x+1) < s->mb_width) && dist >= s->mb_width - 1)
1200  r->avail_cache[4] = s->current_picture_ptr->f.mb_type[mb_pos - s->mb_stride + 1];
1201  if(s->mb_x && dist > s->mb_width)
1202  r->avail_cache[1] = s->current_picture_ptr->f.mb_type[mb_pos - s->mb_stride - 1];
1203 
1204  s->qscale = r->si.quant;
1205  cbp = cbp2 = rv34_decode_inter_mb_header(r, intra_types);
1206  r->cbp_luma [mb_pos] = cbp;
1207  r->cbp_chroma[mb_pos] = cbp >> 16;
1208  r->deblock_coefs[mb_pos] = rv34_set_deblock_coef(r) | r->cbp_luma[mb_pos];
1209  s->current_picture_ptr->f.qscale_table[mb_pos] = s->qscale;
1210 
1211  if(cbp == -1)
1212  return -1;
1213 
1214  if (IS_INTRA(s->current_picture_ptr->f.mb_type[mb_pos])){
1215  if(r->is16) rv34_output_i16x16(r, intra_types, cbp);
1216  else rv34_output_intra(r, intra_types, cbp);
1217  return 0;
1218  }
1219 
1220  if(r->is16){
1221  // Only for RV34_MB_P_MIX16x16
1222  LOCAL_ALIGNED_16(DCTELEM, block16, [16]);
1223  memset(block16, 0, 16 * sizeof(*block16));
1224  q_dc = rv34_qscale_tab[ r->luma_dc_quant_p[s->qscale] ];
1225  q_ac = rv34_qscale_tab[s->qscale];
1226  if (rv34_decode_block(block16, gb, r->cur_vlcs, 3, 0, q_dc, q_dc, q_ac))
1227  r->rdsp.rv34_inv_transform(block16);
1228  else
1229  r->rdsp.rv34_inv_transform_dc(block16);
1230 
1231  q_ac = rv34_qscale_tab[s->qscale];
1232 
1233  for(j = 0; j < 4; j++){
1234  for(i = 0; i < 4; i++, cbp >>= 1){
1235  int dc = block16[i + j*4];
1236 
1237  if(cbp & 1){
1238  has_ac = rv34_decode_block(ptr, gb, r->cur_vlcs, r->luma_vlc, 0, q_ac, q_ac, q_ac);
1239  }else
1240  has_ac = 0;
1241 
1242  if(has_ac){
1243  ptr[0] = dc;
1244  r->rdsp.rv34_idct_add(dst+4*i, s->linesize, ptr);
1245  }else
1246  r->rdsp.rv34_idct_dc_add(dst+4*i, s->linesize, dc);
1247  }
1248 
1249  dst += 4*s->linesize;
1250  }
1251 
1252  r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 1);
1253  }else{
1254  q_ac = rv34_qscale_tab[s->qscale];
1255 
1256  for(j = 0; j < 4; j++){
1257  for(i = 0; i < 4; i++, cbp >>= 1){
1258  if(!(cbp & 1)) continue;
1259 
1260  rv34_process_block(r, dst + 4*i, s->linesize,
1261  r->luma_vlc, 0, q_ac, q_ac);
1262  }
1263  dst += 4*s->linesize;
1264  }
1265  }
1266 
1267  q_dc = rv34_qscale_tab[rv34_chroma_quant[1][s->qscale]];
1268  q_ac = rv34_qscale_tab[rv34_chroma_quant[0][s->qscale]];
1269 
1270  for(j = 1; j < 3; j++){
1271  dst = s->dest[j];
1272  for(i = 0; i < 4; i++, cbp >>= 1){
1273  uint8_t *pdst;
1274  if(!(cbp & 1)) continue;
1275  pdst = dst + (i&1)*4 + (i&2)*2*s->uvlinesize;
1276 
1277  rv34_process_block(r, pdst, s->uvlinesize,
1278  r->chroma_vlc, 1, q_dc, q_ac);
1279  }
1280  }
1281 
1282  return 0;
1283 }
1284 
1285 static int rv34_decode_intra_macroblock(RV34DecContext *r, int8_t *intra_types)
1286 {
1287  MpegEncContext *s = &r->s;
1288  int cbp, dist;
1289  int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
1290 
1291  // Calculate which neighbours are available. Maybe it's worth optimizing too.
1292  memset(r->avail_cache, 0, sizeof(r->avail_cache));
1293  fill_rectangle(r->avail_cache + 6, 2, 2, 4, 1, 4);
1294  dist = (s->mb_x - s->resync_mb_x) + (s->mb_y - s->resync_mb_y) * s->mb_width;
1295  if(s->mb_x && dist)
1296  r->avail_cache[5] =
1297  r->avail_cache[9] = s->current_picture_ptr->f.mb_type[mb_pos - 1];
1298  if(dist >= s->mb_width)
1299  r->avail_cache[2] =
1300  r->avail_cache[3] = s->current_picture_ptr->f.mb_type[mb_pos - s->mb_stride];
1301  if(((s->mb_x+1) < s->mb_width) && dist >= s->mb_width - 1)
1302  r->avail_cache[4] = s->current_picture_ptr->f.mb_type[mb_pos - s->mb_stride + 1];
1303  if(s->mb_x && dist > s->mb_width)
1304  r->avail_cache[1] = s->current_picture_ptr->f.mb_type[mb_pos - s->mb_stride - 1];
1305 
1306  s->qscale = r->si.quant;
1307  cbp = rv34_decode_intra_mb_header(r, intra_types);
1308  r->cbp_luma [mb_pos] = cbp;
1309  r->cbp_chroma[mb_pos] = cbp >> 16;
1310  r->deblock_coefs[mb_pos] = 0xFFFF;
1311  s->current_picture_ptr->f.qscale_table[mb_pos] = s->qscale;
1312 
1313  if(cbp == -1)
1314  return -1;
1315 
1316  if(r->is16){
1317  rv34_output_i16x16(r, intra_types, cbp);
1318  return 0;
1319  }
1320 
1321  rv34_output_intra(r, intra_types, cbp);
1322  return 0;
1323 }
1324 
1326 {
1327  int bits;
1328  if(s->mb_y >= s->mb_height)
1329  return 1;
1330  if(!s->mb_num_left)
1331  return 1;
1332  if(r->s.mb_skip_run > 1)
1333  return 0;
1334  bits = get_bits_left(&s->gb);
1335  if(bits < 0 || (bits < 8 && !show_bits(&s->gb, bits)))
1336  return 1;
1337  return 0;
1338 }
1339 
1340 
1342 {
1344  r->intra_types = NULL;
1346  av_freep(&r->mb_type);
1347  av_freep(&r->cbp_luma);
1348  av_freep(&r->cbp_chroma);
1349  av_freep(&r->deblock_coefs);
1350 }
1351 
1352 
1354 {
1355  r->intra_types_stride = r->s.mb_width * 4 + 4;
1356 
1357  r->cbp_chroma = av_malloc(r->s.mb_stride * r->s.mb_height *
1358  sizeof(*r->cbp_chroma));
1359  r->cbp_luma = av_malloc(r->s.mb_stride * r->s.mb_height *
1360  sizeof(*r->cbp_luma));
1361  r->deblock_coefs = av_malloc(r->s.mb_stride * r->s.mb_height *
1362  sizeof(*r->deblock_coefs));
1364  sizeof(*r->intra_types_hist));
1365  r->mb_type = av_mallocz(r->s.mb_stride * r->s.mb_height *
1366  sizeof(*r->mb_type));
1367 
1368  if (!(r->cbp_chroma && r->cbp_luma && r->deblock_coefs &&
1369  r->intra_types_hist && r->mb_type)) {
1370  rv34_decoder_free(r);
1371  return AVERROR(ENOMEM);
1372  }
1373 
1375 
1376  return 0;
1377 }
1378 
1379 
1381 {
1382  rv34_decoder_free(r);
1383  return rv34_decoder_alloc(r);
1384 }
1385 
1386 
1387 static int rv34_decode_slice(RV34DecContext *r, int end, const uint8_t* buf, int buf_size)
1388 {
1389  MpegEncContext *s = &r->s;
1390  GetBitContext *gb = &s->gb;
1391  int mb_pos, slice_type;
1392  int res;
1393 
1394  init_get_bits(&r->s.gb, buf, buf_size*8);
1395  res = r->parse_slice_header(r, gb, &r->si);
1396  if(res < 0){
1397  av_log(s->avctx, AV_LOG_ERROR, "Incorrect or unknown slice header\n");
1398  return -1;
1399  }
1400 
1401  slice_type = r->si.type ? r->si.type : AV_PICTURE_TYPE_I;
1402  if (slice_type != s->pict_type) {
1403  av_log(s->avctx, AV_LOG_ERROR, "Slice type mismatch\n");
1404  return AVERROR_INVALIDDATA;
1405  }
1406 
1407  r->si.end = end;
1408  s->qscale = r->si.quant;
1409  s->mb_num_left = r->si.end - r->si.start;
1410  r->s.mb_skip_run = 0;
1411 
1412  mb_pos = s->mb_x + s->mb_y * s->mb_width;
1413  if(r->si.start != mb_pos){
1414  av_log(s->avctx, AV_LOG_ERROR, "Slice indicates MB offset %d, got %d\n", r->si.start, mb_pos);
1415  s->mb_x = r->si.start % s->mb_width;
1416  s->mb_y = r->si.start / s->mb_width;
1417  }
1418  memset(r->intra_types_hist, -1, r->intra_types_stride * 4 * 2 * sizeof(*r->intra_types_hist));
1419  s->first_slice_line = 1;
1420  s->resync_mb_x = s->mb_x;
1421  s->resync_mb_y = s->mb_y;
1422 
1424  while(!check_slice_end(r, s)) {
1426 
1427  if(r->si.type)
1428  res = rv34_decode_inter_macroblock(r, r->intra_types + s->mb_x * 4 + 4);
1429  else
1430  res = rv34_decode_intra_macroblock(r, r->intra_types + s->mb_x * 4 + 4);
1431  if(res < 0){
1433  return -1;
1434  }
1435  if (++s->mb_x == s->mb_width) {
1436  s->mb_x = 0;
1437  s->mb_y++;
1439 
1440  memmove(r->intra_types_hist, r->intra_types, r->intra_types_stride * 4 * sizeof(*r->intra_types_hist));
1441  memset(r->intra_types, -1, r->intra_types_stride * 4 * sizeof(*r->intra_types_hist));
1442 
1443  if(r->loop_filter && s->mb_y >= 2)
1444  r->loop_filter(r, s->mb_y - 2);
1445 
1448  s->mb_y - 2, 0);
1449 
1450  }
1451  if(s->mb_x == s->resync_mb_x)
1452  s->first_slice_line=0;
1453  s->mb_num_left--;
1454  }
1455  ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, ER_MB_END);
1456 
1457  return s->mb_y == s->mb_height;
1458 }
1459  // recons group end
1461 
1466 {
1467  RV34DecContext *r = avctx->priv_data;
1468  MpegEncContext *s = &r->s;
1469  int ret;
1470 
1472  s->avctx = avctx;
1473  s->out_format = FMT_H263;
1474  s->codec_id = avctx->codec_id;
1475 
1476  s->width = avctx->width;
1477  s->height = avctx->height;
1478 
1479  r->s.avctx = avctx;
1480  avctx->flags |= CODEC_FLAG_EMU_EDGE;
1481  r->s.flags |= CODEC_FLAG_EMU_EDGE;
1482  avctx->pix_fmt = AV_PIX_FMT_YUV420P;
1483  avctx->has_b_frames = 1;
1484  s->low_delay = 0;
1485 
1486  if ((ret = ff_MPV_common_init(s)) < 0)
1487  return ret;
1488 
1489  ff_h264_pred_init(&r->h, AV_CODEC_ID_RV40, 8, 1);
1490 
1491 #if CONFIG_RV30_DECODER
1492  if (avctx->codec_id == AV_CODEC_ID_RV30)
1493  ff_rv30dsp_init(&r->rdsp, &r->s.dsp);
1494 #endif
1495 #if CONFIG_RV40_DECODER
1496  if (avctx->codec_id == AV_CODEC_ID_RV40)
1497  ff_rv40dsp_init(&r->rdsp, &r->s.dsp);
1498 #endif
1499 
1500  if ((ret = rv34_decoder_alloc(r)) < 0)
1501  return ret;
1502 
1503  if(!intra_vlcs[0].cbppattern[0].bits)
1504  rv34_init_tables();
1505 
1506  return 0;
1507 }
1508 
1510 {
1511  int err;
1512  RV34DecContext *r = avctx->priv_data;
1513 
1514  r->s.avctx = avctx;
1515 
1516  if (avctx->internal->is_copy) {
1517  r->tmp_b_block_base = NULL;
1518  if ((err = ff_MPV_common_init(&r->s)) < 0)
1519  return err;
1520  if ((err = rv34_decoder_alloc(r)) < 0)
1521  return err;
1522  }
1523  return 0;
1524 }
1525 
1527 {
1528  RV34DecContext *r = dst->priv_data, *r1 = src->priv_data;
1529  MpegEncContext * const s = &r->s, * const s1 = &r1->s;
1530  int err;
1531 
1532  if (dst == src || !s1->context_initialized)
1533  return 0;
1534 
1535  if (s->height != s1->height || s->width != s1->width) {
1536  s->height = s1->height;
1537  s->width = s1->width;
1538  if ((err = ff_MPV_common_frame_size_change(s)) < 0)
1539  return err;
1540  if ((err = rv34_decoder_realloc(r)) < 0)
1541  return err;
1542  }
1543 
1544  if ((err = ff_mpeg_update_thread_context(dst, src)))
1545  return err;
1546 
1547  r->cur_pts = r1->cur_pts;
1548  r->last_pts = r1->last_pts;
1549  r->next_pts = r1->next_pts;
1550 
1551  memset(&r->si, 0, sizeof(r->si));
1552 
1553  return 0;
1554 }
1555 
1556 static int get_slice_offset(AVCodecContext *avctx, const uint8_t *buf, int n)
1557 {
1558  if(avctx->slice_count) return avctx->slice_offset[n];
1559  else return AV_RL32(buf + n*8 - 4) == 1 ? AV_RL32(buf + n*8) : AV_RB32(buf + n*8);
1560 }
1561 
1562 static int finish_frame(AVCodecContext *avctx, AVFrame *pict)
1563 {
1564  RV34DecContext *r = avctx->priv_data;
1565  MpegEncContext *s = &r->s;
1566  int got_picture = 0;
1567 
1568  ff_er_frame_end(s);
1569  ff_MPV_frame_end(s);
1570  s->mb_num_left = 0;
1571 
1574 
1575  if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) {
1576  *pict = s->current_picture_ptr->f;
1577  got_picture = 1;
1578  } else if (s->last_picture_ptr != NULL) {
1579  *pict = s->last_picture_ptr->f;
1580  got_picture = 1;
1581  }
1582  if (got_picture)
1583  ff_print_debug_info(s, pict);
1584 
1585  return got_picture;
1586 }
1587 
1589  void *data, int *got_picture_ptr,
1590  AVPacket *avpkt)
1591 {
1592  const uint8_t *buf = avpkt->data;
1593  int buf_size = avpkt->size;
1594  RV34DecContext *r = avctx->priv_data;
1595  MpegEncContext *s = &r->s;
1596  AVFrame *pict = data;
1597  SliceInfo si;
1598  int i;
1599  int slice_count;
1600  const uint8_t *slices_hdr = NULL;
1601  int last = 0;
1602 
1603  /* no supplementary picture */
1604  if (buf_size == 0) {
1605  /* special case for last picture */
1606  if (s->low_delay==0 && s->next_picture_ptr) {
1607  *pict = s->next_picture_ptr->f;
1608  s->next_picture_ptr = NULL;
1609 
1610  *got_picture_ptr = 1;
1611  }
1612  return 0;
1613  }
1614 
1615  if(!avctx->slice_count){
1616  slice_count = (*buf++) + 1;
1617  slices_hdr = buf + 4;
1618  buf += 8 * slice_count;
1619  buf_size -= 1 + 8 * slice_count;
1620  }else
1621  slice_count = avctx->slice_count;
1622 
1623  //parse first slice header to check whether this frame can be decoded
1624  if(get_slice_offset(avctx, slices_hdr, 0) < 0 ||
1625  get_slice_offset(avctx, slices_hdr, 0) > buf_size){
1626  av_log(avctx, AV_LOG_ERROR, "Slice offset is invalid\n");
1627  return AVERROR_INVALIDDATA;
1628  }
1629  init_get_bits(&s->gb, buf+get_slice_offset(avctx, slices_hdr, 0), (buf_size-get_slice_offset(avctx, slices_hdr, 0))*8);
1630  if(r->parse_slice_header(r, &r->s.gb, &si) < 0 || si.start){
1631  av_log(avctx, AV_LOG_ERROR, "First slice header is incorrect\n");
1632  return AVERROR_INVALIDDATA;
1633  }
1634  if ((!s->last_picture_ptr || !s->last_picture_ptr->f.data[0]) &&
1635  si.type == AV_PICTURE_TYPE_B) {
1636  av_log(avctx, AV_LOG_ERROR, "Invalid decoder state: B-frame without "
1637  "reference data.\n");
1638  return AVERROR_INVALIDDATA;
1639  }
1640  if( (avctx->skip_frame >= AVDISCARD_NONREF && si.type==AV_PICTURE_TYPE_B)
1641  || (avctx->skip_frame >= AVDISCARD_NONKEY && si.type!=AV_PICTURE_TYPE_I)
1642  || avctx->skip_frame >= AVDISCARD_ALL)
1643  return avpkt->size;
1644 
1645  /* first slice */
1646  if (si.start == 0) {
1647  if (s->mb_num_left > 0) {
1648  av_log(avctx, AV_LOG_ERROR, "New frame but still %d MB left.",
1649  s->mb_num_left);
1650  ff_er_frame_end(s);
1651  ff_MPV_frame_end(s);
1652  }
1653 
1654  if (s->width != si.width || s->height != si.height) {
1655  int err;
1656 
1657  av_log(s->avctx, AV_LOG_WARNING, "Changing dimensions to %dx%d\n",
1658  si.width, si.height);
1659 
1660  s->width = si.width;
1661  s->height = si.height;
1663  if ((err = ff_MPV_common_frame_size_change(s)) < 0)
1664  return err;
1665  if ((err = rv34_decoder_realloc(r)) < 0)
1666  return err;
1667  }
1668  s->pict_type = si.type ? si.type : AV_PICTURE_TYPE_I;
1669  if (ff_MPV_frame_start(s, s->avctx) < 0)
1670  return -1;
1671  ff_er_frame_start(s);
1672  if (!r->tmp_b_block_base) {
1673  int i;
1674 
1675  r->tmp_b_block_base = av_malloc(s->linesize * 48);
1676  for (i = 0; i < 2; i++)
1677  r->tmp_b_block_y[i] = r->tmp_b_block_base
1678  + i * 16 * s->linesize;
1679  for (i = 0; i < 4; i++)
1680  r->tmp_b_block_uv[i] = r->tmp_b_block_base + 32 * s->linesize
1681  + (i >> 1) * 8 * s->uvlinesize
1682  + (i & 1) * 16;
1683  }
1684  r->cur_pts = si.pts;
1685  if (s->pict_type != AV_PICTURE_TYPE_B) {
1686  r->last_pts = r->next_pts;
1687  r->next_pts = r->cur_pts;
1688  } else {
1689  int refdist = GET_PTS_DIFF(r->next_pts, r->last_pts);
1690  int dist0 = GET_PTS_DIFF(r->cur_pts, r->last_pts);
1691  int dist1 = GET_PTS_DIFF(r->next_pts, r->cur_pts);
1692 
1693  if(!refdist){
1694  r->mv_weight1 = r->mv_weight2 = r->weight1 = r->weight2 = 8192;
1695  r->scaled_weight = 0;
1696  }else{
1697  r->mv_weight1 = (dist0 << 14) / refdist;
1698  r->mv_weight2 = (dist1 << 14) / refdist;
1699  if((r->mv_weight1|r->mv_weight2) & 511){
1700  r->weight1 = r->mv_weight1;
1701  r->weight2 = r->mv_weight2;
1702  r->scaled_weight = 0;
1703  }else{
1704  r->weight1 = r->mv_weight1 >> 9;
1705  r->weight2 = r->mv_weight2 >> 9;
1706  r->scaled_weight = 1;
1707  }
1708  }
1709  }
1710  s->mb_x = s->mb_y = 0;
1712  } else if (HAVE_THREADS &&
1714  av_log(s->avctx, AV_LOG_ERROR, "Decoder needs full frames in frame "
1715  "multithreading mode (start MB is %d).\n", si.start);
1716  return AVERROR_INVALIDDATA;
1717  }
1718 
1719  for(i = 0; i < slice_count; i++){
1720  int offset = get_slice_offset(avctx, slices_hdr, i);
1721  int size;
1722  if(i+1 == slice_count)
1723  size = buf_size - offset;
1724  else
1725  size = get_slice_offset(avctx, slices_hdr, i+1) - offset;
1726 
1727  if(offset < 0 || offset > buf_size){
1728  av_log(avctx, AV_LOG_ERROR, "Slice offset is invalid\n");
1729  break;
1730  }
1731 
1732  r->si.end = s->mb_width * s->mb_height;
1733  s->mb_num_left = r->s.mb_x + r->s.mb_y*r->s.mb_width - r->si.start;
1734 
1735  if(i+1 < slice_count){
1736  if (get_slice_offset(avctx, slices_hdr, i+1) < 0 ||
1737  get_slice_offset(avctx, slices_hdr, i+1) > buf_size) {
1738  av_log(avctx, AV_LOG_ERROR, "Slice offset is invalid\n");
1739  break;
1740  }
1741  init_get_bits(&s->gb, buf+get_slice_offset(avctx, slices_hdr, i+1), (buf_size-get_slice_offset(avctx, slices_hdr, i+1))*8);
1742  if(r->parse_slice_header(r, &r->s.gb, &si) < 0){
1743  if(i+2 < slice_count)
1744  size = get_slice_offset(avctx, slices_hdr, i+2) - offset;
1745  else
1746  size = buf_size - offset;
1747  }else
1748  r->si.end = si.start;
1749  }
1750  if (size < 0 || size > buf_size - offset) {
1751  av_log(avctx, AV_LOG_ERROR, "Slice size is invalid\n");
1752  break;
1753  }
1754  last = rv34_decode_slice(r, r->si.end, buf + offset, size);
1755  if(last)
1756  break;
1757  }
1758 
1759  if (s->current_picture_ptr) {
1760  if (last) {
1761  if(r->loop_filter)
1762  r->loop_filter(r, s->mb_height - 1);
1763 
1764  *got_picture_ptr = finish_frame(avctx, pict);
1765  } else if (HAVE_THREADS &&
1767  av_log(avctx, AV_LOG_INFO, "marking unfished frame as finished\n");
1768  /* always mark the current frame as finished, frame-mt supports
1769  * only complete frames */
1770  ff_er_frame_end(s);
1771  ff_MPV_frame_end(s);
1772  s->mb_num_left = 0;
1774  return AVERROR_INVALIDDATA;
1775  }
1776  }
1777 
1778  return avpkt->size;
1779 }
1780 
1782 {
1783  RV34DecContext *r = avctx->priv_data;
1784 
1785  ff_MPV_common_end(&r->s);
1786  rv34_decoder_free(r);
1787 
1788  return 0;
1789 }
qpel_mc_func put_pixels_tab[4][16]
Definition: rv34dsp.h:57
P-frame macroblock with DCs in a separate 4x4 block, one motion vector.
Definition: rv34.h:55
#define VERT_PRED8x8
Definition: h264pred.h:70
void * av_malloc(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:61
int vlc_set
VLCs used for this slice.
Definition: rv34.h:77
VLC second_pattern[2]
VLCs used for decoding coefficients in the subblocks 2 and 3.
Definition: rv34.h:68
discard all frames except keyframes
Definition: avcodec.h:535
void ff_init_block_index(MpegEncContext *s)
Definition: mpegvideo.c:2458
static const uint8_t rv34_table_inter_secondpat[NUM_INTER_TABLES][2][OTHERBLK_VLC_SIZE]
Definition: rv34vlc.h:3737
#define DC_128_PRED8x8
Definition: h264pred.h:76
#define VERT_LEFT_PRED
Definition: h264pred.h:45
#define HAVE_THREADS
Definition: config.h:235
int last_pts
Definition: rv34.h:108
int size
P-frame macroblock, 16x8 motion compensation partitions.
Definition: rv34.h:52
This structure describes decoded (raw) audio or video data.
Definition: avcodec.h:989
static void rv34_output_i16x16(RV34DecContext *r, int8_t *intra_types, int cbp)
Definition: rv34.c:1008
#define IS_SKIP(a)
Definition: mpegvideo.h:110
uint8_t * tmp_b_block_y[2]
temporary blocks for RV4 weighted MC
Definition: rv34.h:121
int(* decode_intra_types)(struct RV34DecContext *r, GetBitContext *gb, int8_t *dst)
Definition: rv34.h:127
void(* loop_filter)(struct RV34DecContext *r, int row)
Definition: rv34.h:128
uint32_t avail_cache[3 *4]
8x8 block available flags (for MV prediction)
Definition: rv34.h:118
av_cold int ff_MPV_common_init(MpegEncContext *s)
init common structure for both encoder and decoder.
Definition: mpegvideo.c:882
#define B
Definition: dsputil.c:1897
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:237
static const int ittrans[9]
mapping of RV30/40 intra prediction types to standard H.264 types
Definition: rv34.c:936
B-frame macroblock, forward prediction.
Definition: rv34.h:48
int dmv[4][2]
differential motion vectors for the current macroblock
Definition: rv34.h:103
Bidirectionally predicted B-frame macroblock, two motion vectors.
Definition: rv34.h:54
MpegEncContext s
Definition: rv34.h:86
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:351
int v_edge_pos
horizontal / vertical position of the right/bottom edge (pixel replication)
Definition: mpegvideo.h:251
static const uint8_t rv34_chroma_quant[2][32]
quantizer values used for AC and DC coefficients in chroma blocks
Definition: rv34data.h:74
int height
coded height
Definition: rv34.h:80
void avcodec_set_dimensions(AVCodecContext *s, int width, int height)
Definition: utils.c:149
int size
Definition: avcodec.h:916
enum AVCodecID codec_id
Definition: mpegvideo.h:227
Bidirectionally predicted B-frame macroblock, no motion vectors.
Definition: rv34.h:51
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1533
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:840
#define VLC_TYPE
Definition: get_bits.h:61
mpegvideo header.
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:527
VLC cbppattern[2]
VLCs used for pattern of coded block patterns decoding.
Definition: rv34.h:65
static int finish_frame(AVCodecContext *avctx, AVFrame *pict)
Definition: rv34.c:1562
int weight2
B frame distance fractions (0.14) used in motion compensation.
Definition: rv34.h:110
#define GET_PTS_DIFF(a, b)
Definition: rv34.c:512
RV30 and RV40 decoder common data declarations.
discard all
Definition: avcodec.h:536
static int rv34_decode_slice(RV34DecContext *r, int end, const uint8_t *buf, int buf_size)
Definition: rv34.c:1387
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:949
int start
Definition: rv34.h:78
#define HOR_PRED8x8
Definition: h264pred.h:69
static const int rv34_mb_type_to_lavc[12]
translation of RV30/40 macroblock types to lavc ones
Definition: rv34.c:51
int stride
Definition: mace.c:144
#define NUM_INTRA_TABLES
Definition: rv34vlc.h:32
int qscale
QP.
Definition: mpegvideo.h:342
#define DIAG_DOWN_LEFT_PRED_RV40_NODOWN
Definition: h264pred.h:54
const uint8_t * luma_dc_quant_p
luma subblock DC quantizer for interframes
Definition: rv34.h:92
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
Definition: mem.c:151
enum AVDiscard skip_frame
Definition: avcodec.h:2907
#define PLANE_PRED8x8
Definition: h264pred.h:71
#define CBPPAT_VLC_SIZE
Definition: rv34vlc.h:35
uint8_t * tmp_b_block_base
Definition: rv34.h:123
int mb_num_left
number of MBs left in this video packet (for partitioned Slices only)
Definition: mpegvideo.h:508
void(* emulated_edge_mc)(uint8_t *buf, const uint8_t *src, ptrdiff_t linesize, int block_w, int block_h, int src_x, int src_y, int w, int h)
Copy a rectangular area of samples to a temporary buffer and replicate the border samples...
Definition: videodsp.h:50
#define MB_TYPE_INTRA
Definition: mpegvideo.h:104
static void rv34_gen_vlc(const uint8_t *bits, int size, VLC *vlc, const uint8_t *insyms, const int num)
Generate VLC from codeword lengths.
Definition: rv34.c:107
int ff_MPV_common_frame_size_change(MpegEncContext *s)
Definition: mpegvideo.c:1069
int ff_init_vlc_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)
Definition: bitstream.c:259
uint8_t bits
Definition: crc.c:31
uint8_t
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:992
static const uint8_t rv34_table_intra_firstpat[NUM_INTRA_TABLES][4][FIRSTBLK_VLC_SIZE]
Definition: rv34vlc.h:940
#define IS_8X16(a)
Definition: mpegvideo.h:117
#define DC_PRED8x8
Definition: h264pred.h:68
int scaled_weight
Definition: rv34.h:109
uint16_t * cbp_luma
CBP values for luma subblocks.
Definition: rv34.h:113
static const uint16_t rv34_mb_max_sizes[6]
maximum number of macroblocks for each of the possible slice offset sizes
Definition: rv34data.h:119
enum OutputFormat out_format
output format
Definition: mpegvideo.h:219
static const int chroma_coeffs[3]
Definition: rv34.c:645
static void rv34_mc_2mv_skip(RV34DecContext *r)
Definition: rv34.c:813
void(* qpel_mc_func)(uint8_t *dst, uint8_t *src, int stride)
Definition: dsputil.h:144
#define AV_RB32
Definition: intreadwrite.h:130
int width
coded width
Definition: rv34.h:79
#define TOP_DC_PRED8x8
Definition: h264pred.h:75
#define HOR_UP_PRED_RV40_NODOWN
Definition: h264pred.h:55
#define DIAG_DOWN_LEFT_PRED
Definition: h264pred.h:41
#define MB_TYPE_SEPARATE_DC
Definition: rv34.h:37
rv40_weight_func rv40_weight_pixels_tab[2][2]
Biweight functions, first dimension is transform size (16/8), second is whether the weight is prescal...
Definition: rv34dsp.h:66
uint16_t * deblock_coefs
deblock coefficients for each macroblock
Definition: rv34.h:115
void(* pred8x8[4+3+4])(uint8_t *src, ptrdiff_t stride)
Definition: h264pred.h:97
static const uint8_t part_sizes_h[RV34_MB_TYPES]
macroblock partition height in 8x8 blocks
Definition: rv34.c:451
#define TOP_DC_PRED
Definition: h264pred.h:50
const char data[16]
Definition: mxf.c:66
static RV34VLC inter_vlcs[NUM_INTER_TABLES]
Definition: rv34.c:67
uint8_t * data
Definition: avcodec.h:915
static void decode_subblock(DCTELEM *dst, int code, const int is_block2, GetBitContext *gb, VLC *vlc, int q)
Decode 2x2 subblock of coefficients.
Definition: rv34.c:239
static int flags
Definition: log.c:42
static const uint8_t bits2[81]
Definition: aactab.c:118
static int is_mv_diff_gt_3(int16_t(*motion_val)[2], int step)
Definition: rv34.c:1135
Skipped block.
Definition: rv34.h:50
static VLC_TYPE table_data[117592][2]
Definition: rv34.c:97
int mb_height
number of MBs horizontally & vertically
Definition: mpegvideo.h:247
static const uint16_t rv34_qscale_tab[32]
This table is used for dequantizing.
Definition: rv34data.h:84
#define LOCAL_ALIGNED_16(t, v,...)
Definition: dsputil.h:602
void ff_MPV_frame_end(MpegEncContext *s)
Definition: mpegvideo.c:1573
static void rv34_output_intra(RV34DecContext *r, int8_t *intra_types, int cbp)
Definition: rv34.c:1071
void(* pred4x4[9+3+3])(uint8_t *src, const uint8_t *topright, ptrdiff_t stride)
Definition: h264pred.h:93
rv34_idct_add_func rv34_idct_add
Definition: rv34dsp.h:69
P-frame macroblock, 8x16 motion compensation partitions.
Definition: rv34.h:53
static void ff_update_block_index(MpegEncContext *s)
Definition: mpegvideo.h:823
static float t
#define r
Definition: input.c:51
static const uint8_t rv34_quant_to_vlc_set[2][31]
tables used to translate a quantizer value into a VLC set for decoding The first table is used for in...
Definition: rv34data.h:95
int slice_count
slice count
Definition: avcodec.h:1699
int quant
quantizer used for this slice
Definition: rv34.h:76
static int get_bits_left(GetBitContext *gb)
Definition: get_bits.h:547
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...
Definition: pthread.c:702
static const int table_offs[]
Definition: rv34.c:76
void ff_h264_pred_init(H264PredContext *h, int codec_id, const int bit_depth, const int chroma_format_idc)
Set the intra prediction function pointers.
Definition: h264pred.c:399
qpel_mc_func avg_pixels_tab[4][16]
Definition: rv34dsp.h:58
int(* parse_slice_header)(struct RV34DecContext *r, GetBitContext *gb, SliceInfo *si)
Definition: rv34.h:125
int has_b_frames
Size of the frame reordering buffer in the decoder.
Definition: avcodec.h:1634
static void rv4_weight(RV34DecContext *r)
Definition: rv34.c:772
static const int ittrans16[4]
mapping of RV30/40 intra 16x16 prediction types to standard H.264 types
Definition: rv34.c:942
Multithreading support functions.
static const uint16_t mask[17]
Definition: lzw.c:38
int is_copy
Whether the parent AVCodecContext is a copy of the context which had init() called on it...
Definition: internal.h:63
rv34_idct_dc_add_func rv34_idct_dc_add
Definition: rv34dsp.h:70
#define DC_128_PRED
Definition: h264pred.h:51
#define LEFT_DC_PRED
Definition: h264pred.h:49
#define ER_MB_ERROR
Definition: mpegvideo.h:502
int active_thread_type
Which multithreading methods are in use by the codec.
Definition: avcodec.h:2752
static void rv34_mc_2mv(RV34DecContext *r, const int block_type)
Definition: rv34.c:794
static void rv34_pred_mv(RV34DecContext *r, int block_type, int subblock_no, int dmv_no)
motion vector prediction
Definition: rv34.c:463
int luma_vlc
which VLC set will be used for decoding of luma blocks
Definition: rv34.h:100
uint8_t * edge_emu_buffer
temporary buffer for if MVs point to out-of-frame data
Definition: mpegvideo.h:337
#define COEFF_VLC_SIZE
Definition: rv34vlc.h:39
int flags
CODEC_FLAG_*.
Definition: avcodec.h:1434
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:146
static int rv34_decoder_realloc(RV34DecContext *r)
Definition: rv34.c:1380
void(* h264_chroma_mc_func)(uint8_t *dst, uint8_t *src, int srcStride, int h, int x, int y)
Definition: dsputil.h:145
#define IS_INTRA(a)
Definition: mpegvideo.h:108
int low_delay
no reordering needed / has no b-frames
Definition: mpegvideo.h:570
GetBitContext gb
Definition: mpegvideo.h:626
static void decode_subblock3(DCTELEM *dst, int code, GetBitContext *gb, VLC *vlc, int q_dc, int q_ac1, int q_ac2)
Definition: rv34.c:263
#define CBP_VLC_SIZE
Definition: rv34vlc.h:36
rv34_inv_transform_func rv34_inv_transform_dc
Definition: rv34dsp.h:68
VLC tables used by the decoder.
Definition: rv34.h:64
Definition: get_bits.h:63
int end
start and end macroblocks of the slice
Definition: rv34.h:78
int resync_mb_x
x position of last resync marker
Definition: mpegvideo.h:505
static int svq3_get_se_golomb(GetBitContext *gb)
Definition: golomb.h:199
static int rv34_decode_block(DCTELEM *dst, GetBitContext *gb, RV34VLC *rvlc, int fc, int sc, int q_dc, int q_ac1, int q_ac2)
Decode coefficients for 4x4 block.
Definition: rv34.c:285
Definition: vf_drawbox.c:36
static int rv34_set_deblock_coef(RV34DecContext *r)
Definition: rv34.c:1147
common internal API header
#define HOR_UP_PRED
Definition: h264pred.h:46
useful rectangle filling function
void ff_er_add_slice(MpegEncContext *s, int startx, int starty, int endx, int endy, int status)
Add a slice.
static void ZERO8x2(void *dst, int stride)
Definition: rv34.c:44
#define IS_8X8(a)
Definition: mpegvideo.h:118
Intra macroblock with DCs in a separate 4x4 block.
Definition: rv34.h:45
static void rv34_pred_mv_b(RV34DecContext *r, int block_type, int dir)
motion vector prediction for B-frames
Definition: rv34.c:547
int * mb_type
internal macroblock types
Definition: rv34.h:98
static int adjust_pred16(int itype, int up, int left)
Definition: rv34.c:976
int width
picture width / height.
Definition: avcodec.h:1508
Picture * current_picture_ptr
pointer to the current picture
Definition: mpegvideo.h:317
Picture.
Definition: mpegvideo.h:94
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:517
H264PredContext h
functions for 4x4 and 16x16 intra block prediction
Definition: rv34.h:95
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:340
VLC coefficient
VLCs used for decoding big coefficients.
Definition: rv34.h:70
static int rv34_decoder_alloc(RV34DecContext *r)
Definition: rv34.c:1353
VLC first_pattern[4]
VLCs used for decoding coefficients in the first subblock.
Definition: rv34.h:67
static unsigned int show_bits(GetBitContext *s, int n)
Show 1-25 bits.
Definition: get_bits.h:251
static void fill_rectangle(SDL_Surface *screen, int x, int y, int w, int h, int color)
Definition: avplay.c:401
void ff_er_frame_end(MpegEncContext *s)
#define FIRSTBLK_VLC_SIZE
Definition: rv34vlc.h:37
int mv_weight1
Definition: rv34.h:111
static av_always_inline int get_vlc2(GetBitContext *s, VLC_TYPE(*table)[2], int bits, int max_depth)
Parse a vlc code.
Definition: get_bits.h:515
#define AV_RL32
Definition: intreadwrite.h:146
static const uint8_t rv34_table_intra_secondpat[NUM_INTRA_TABLES][2][OTHERBLK_VLC_SIZE]
Definition: rv34vlc.h:2074
static const uint8_t rv34_table_intra_thirdpat[NUM_INTRA_TABLES][2][OTHERBLK_VLC_SIZE]
Definition: rv34vlc.h:2177
static const uint8_t rv34_inter_coeff[NUM_INTER_TABLES][COEFF_VLC_SIZE]
Definition: rv34vlc.h:4024
int ff_MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx)
generic function for encode/decode called after coding/decoding the header and before a frame is code...
Definition: mpegvideo.c:1370
#define INIT_VLC_USE_NEW_STATIC
Definition: get_bits.h:433
int ff_mpeg_update_thread_context(AVCodecContext *dst, const AVCodecContext *src)
Definition: mpegvideo.c:570
#define LEFT_DC_PRED8x8
Definition: h264pred.h:74
#define VERT_PRED
Prediction types.
Definition: h264pred.h:38
#define DIAG_DOWN_RIGHT_PRED
Definition: h264pred.h:42
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:763
#define IS_16X8(a)
Definition: mpegvideo.h:116
int bits
Definition: get_bits.h:64
RV30/40 VLC tables.
int table_allocated
Definition: get_bits.h:66
uint32_t * mb_type
macroblock type table mb_type_base + mb_width + 2
Definition: avcodec.h:1180
int first_slice_line
used in mpeg4 too to handle resync markers
Definition: mpegvideo.h:614
static const uint8_t rv34_inter_cbp[NUM_INTER_TABLES][4][CBP_VLC_SIZE]
Definition: rv34vlc.h:2890
int ff_rv34_decode_init_thread_copy(AVCodecContext *avctx)
Definition: rv34.c:1509
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:662
NULL
Definition: eval.c:52
static int rv34_decode_intra_macroblock(RV34DecContext *r, int8_t *intra_types)
Definition: rv34.c:1285
static int width
Definition: utils.c:156
static int get_slice_offset(AVCodecContext *avctx, const uint8_t *buf, int n)
Definition: rv34.c:1556
essential slice information
Definition: rv34.h:74
external API header
void ff_thread_await_progress(AVFrame *f, int n, int field)
Wait for earlier decoding threads to finish reference pictures.
Definition: pthread.c:684
enum AVCodecID codec_id
Definition: avcodec.h:1350
static const uint8_t rv34_table_inter_firstpat[NUM_INTER_TABLES][2][FIRSTBLK_VLC_SIZE]
Definition: rv34vlc.h:2936
static const uint8_t rv34_table_intra_cbppat[NUM_INTRA_TABLES][2][CBPPAT_VLC_SIZE]
Definition: rv34vlc.h:42
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:386
main external API structure.
Definition: avcodec.h:1339
static const uint8_t part_sizes_w[RV34_MB_TYPES]
macroblock partition width in 8x8 blocks
Definition: rv34.c:448
#define MAX_VLC_SIZE
Definition: rv34vlc.h:40
#define HOR_PRED
Definition: h264pred.h:39
RV34VLC * cur_vlcs
VLC set used for current frame decoding.
Definition: rv34.h:94
int height
picture size. must be a multiple of 16
Definition: mpegvideo.h:215
#define HOR_DOWN_PRED
Definition: h264pred.h:44
static const uint8_t rv34_inter_cbppat[NUM_INTER_TABLES][CBPPAT_VLC_SIZE]
Definition: rv34vlc.h:2305
int16_t(*[2] motion_val)[2]
motion vector table
Definition: avcodec.h:1172
SliceInfo si
current slice information
Definition: rv34.h:96
void(* pred16x16[4+3+2])(uint8_t *src, ptrdiff_t stride)
Definition: h264pred.h:98
P-frame macroblock, 8x8 motion compensation partitions.
Definition: rv34.h:47
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:268
static void rv34_decoder_free(RV34DecContext *r)
Definition: rv34.c:1341
#define ER_MB_END
Definition: mpegvideo.h:503
VLC cbp[2][4]
VLCs used for coded block patterns decoding.
Definition: rv34.h:66
static av_cold void rv34_init_tables(void)
Initialize all tables.
Definition: rv34.c:143
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:372
av_cold int ff_rv34_decode_init(AVCodecContext *avctx)
Initialize decoder.
Definition: rv34.c:1465
void ff_er_frame_start(MpegEncContext *s)
#define mid_pred
Definition: mathops.h:94
DSPContext dsp
pointers for accelerated dsp functions
Definition: mpegvideo.h:361
int ff_rv34_decode_frame(AVCodecContext *avctx, void *data, int *got_picture_ptr, AVPacket *avpkt)
Definition: rv34.c:1588
#define s1
Definition: regdef.h:38
static int step
Definition: avplay.c:252
static const uint8_t rv34_table_inter_thirdpat[NUM_INTER_TABLES][2][OTHERBLK_VLC_SIZE]
Definition: rv34vlc.h:3880
void ff_rv40dsp_init(RV34DSPContext *c, DSPContext *dsp)
Definition: rv40dsp.c:520
static int rv34_decode_inter_macroblock(RV34DecContext *r, int8_t *intra_types)
Definition: rv34.c:1177
int intra_types_stride
block types array stride
Definition: rv34.h:90
short DCTELEM
Definition: dsputil.h:39
int pict_type
AV_PICTURE_TYPE_I, AV_PICTURE_TYPE_P, AV_PICTURE_TYPE_B, ...
Definition: mpegvideo.h:349
miscellaneous RV30/40 tables
DCTELEM(* block)[64]
points to one of the following blocks
Definition: mpegvideo.h:674
const uint8_t * quant
static void rv34_pred_mv_rv3(RV34DecContext *r, int block_type, int dir)
motion vector prediction - RV3 version
Definition: rv34.c:599
static int check_slice_end(RV34DecContext *r, MpegEncContext *s)
Definition: rv34.c:1325
int is16
current block has additional 16x16 specific features or not
Definition: rv34.h:102
int8_t * intra_types
block types
Definition: rv34.h:89
static const uint8_t rv34_table_intra_cbp[NUM_INTRA_TABLES][8][CBP_VLC_SIZE]
Definition: rv34vlc.h:886
P-frame macroblock, one motion frame.
Definition: rv34.h:46
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: avcodec.h:997
int8_t * qscale_table
QP table.
Definition: avcodec.h:1139
#define IS_INTRA16x16(a)
Definition: mpegvideo.h:106
int b8_stride
2*mb_width+1 used for some 8x8 block arrays to allow simple addressing
Definition: mpegvideo.h:249
int cur_pts
Definition: rv34.h:108
Definition: vf_drawbox.c:36
static int rv34_decode_cbp(GetBitContext *gb, RV34VLC *vlc, int table)
Decode coded block pattern.
Definition: rv34.c:186
int height
Definition: gxfenc.c:72
MpegEncContext.
Definition: mpegvideo.h:211
Picture * next_picture_ptr
pointer to the next picture (for bidir pred)
Definition: mpegvideo.h:316
av_cold int ff_rv34_decode_end(AVCodecContext *avctx)
Definition: rv34.c:1781
struct AVCodecContext * avctx
Definition: mpegvideo.h:213
static const uint8_t rv34_cbp_code[16]
values used to reconstruct coded block pattern
Definition: rv34data.h:42
int weight1
Definition: rv34.h:110
int(* decode_mb_info)(struct RV34DecContext *r)
Definition: rv34.h:126
#define VERT_LEFT_PRED_RV40_NODOWN
Definition: h264pred.h:56
discard all non reference
Definition: avcodec.h:533
#define VERT_RIGHT_PRED
Definition: h264pred.h:43
#define OTHERBLK_VLC_SIZE
Definition: rv34vlc.h:38
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:65
static const uint8_t avail_indexes[4]
availability index for subblocks
Definition: rv34.c:454
uint8_t * tmp_b_block_uv[4]
Definition: rv34.h:122
common internal api header.
int mb_stride
mb_width+1 used for some arrays to allow simple addressing of left & top MBs without sig11 ...
Definition: mpegvideo.h:248
int mv_weight2
Definition: rv34.h:111
uint8_t * dest[3]
Definition: mpegvideo.h:435
B-frame macroblock, backward prediction.
Definition: rv34.h:49
static const uint8_t rv34_mb_bits_sizes[6]
bits needed to code the slice offset for the given size
Definition: rv34data.h:124
int ff_rv34_decode_update_thread_context(AVCodecContext *dst, const AVCodecContext *src)
Definition: rv34.c:1526
Picture * last_picture_ptr
pointer to the previous picture.
Definition: mpegvideo.h:315
Bi-dir predicted.
Definition: avutil.h:247
VLC third_pattern[2]
VLCs used for decoding coefficients in the last subblock.
Definition: rv34.h:69
static const int num_mvs[RV34_MB_TYPES]
number of motion vectors in each macroblock type
Definition: rv34.c:834
int ff_rv34_get_start_offset(GetBitContext *gb, int mb_size)
Decode starting slice position.
Definition: rv34.c:328
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
DSP utils.
#define NUM_INTER_TABLES
Definition: rv34vlc.h:33
decoder context
Definition: rv34.h:85
void * priv_data
Definition: avcodec.h:1382
VideoDSPContext vdsp
Definition: mpegvideo.h:362
void ff_MPV_common_end(MpegEncContext *s)
Definition: mpegvideo.c:1141
void ff_print_debug_info(MpegEncContext *s, AVFrame *pict)
Print debugging info for the given picture.
Definition: mpegvideo.c:1735
struct AVCodecInternal * internal
Private context used for internal data.
Definition: avcodec.h:1390
int resync_mb_y
y position of last resync marker
Definition: mpegvideo.h:506
int block_type
current block type
Definition: rv34.h:99
VLC_TYPE(* table)[2]
code, bits
Definition: get_bits.h:65
int linesize
line size, in bytes, may be different from width
Definition: mpegvideo.h:253
int next_pts
Definition: rv34.h:108
const uint8_t * luma_dc_quant_i
luma subblock DC quantizer for intraframes
Definition: rv34.h:91
struct AVFrame f
Definition: mpegvideo.h:95
static const uint8_t rv34_count_ones[16]
number of ones in nibble minus one
Definition: rv34data.h:35
static void decode_coeff(DCTELEM *dst, int coef, int esc, GetBitContext *gb, VLC *vlc, int q)
Get one coefficient value from the bistream and store it.
Definition: rv34.c:219
int * slice_offset
slice offsets in the frame in bytes
Definition: avcodec.h:1715
int8_t * intra_types_hist
old block types, used for prediction
Definition: rv34.h:88
int flags
AVCodecContext.flags (HQ, MV4, ...)
Definition: mpegvideo.h:230
rv34_inv_transform_func rv34_inv_transform
Definition: rv34dsp.h:67
int type
slice type (intra, inter)
Definition: rv34.h:75
h264_chroma_mc_func avg_chroma_pixels_tab[3]
Definition: rv34dsp.h:60
av_cold void ff_rv30dsp_init(RV34DSPContext *c, DSPContext *dsp)
Definition: rv30dsp.c:255
#define DC_PRED
Definition: h264pred.h:40
void ff_thread_report_progress(AVFrame *f, int n, int field)
Notify later decoding threads when part of their reference picture is ready.
Definition: pthread.c:666
Definition: vf_drawbox.c:36
static RV34VLC intra_vlcs[NUM_INTRA_TABLES]
Definition: rv34.c:67
int rv30
indicates which RV variasnt is currently decoded
Definition: rv34.h:105
exp golomb vlc stuff
int uvlinesize
line size, for chroma in bytes, may be different from width
Definition: mpegvideo.h:254
This structure stores compressed data.
Definition: avcodec.h:898
h264_chroma_mc_func put_chroma_pixels_tab[3]
Definition: rv34dsp.h:59
static void decode_subblock1(DCTELEM *dst, int code, GetBitContext *gb, VLC *vlc, int q)
Decode a single coefficient.
Definition: rv34.c:257
Intra macroblock.
Definition: rv34.h:44
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:158
int chroma_vlc
which VLC set will be used for decoding of chroma blocks
Definition: rv34.h:101
for(j=16;j >0;--j)
RV34DSPContext rdsp
Definition: rv34.h:87
Predicted.
Definition: avutil.h:246
int pts
frame timestamp
Definition: rv34.h:81
void ff_MPV_decode_defaults(MpegEncContext *s)
Set the given MpegEncContext to defaults for decoding.
Definition: mpegvideo.c:718
static const uint8_t rv34_intra_coeff[NUM_INTRA_TABLES][COEFF_VLC_SIZE]
Definition: rv34vlc.h:2281
uint8_t * cbp_chroma
CBP values for chroma subblocks.
Definition: rv34.h:114