]> git.sesse.net Git - ffmpeg/blob - libavcodec/rv34.c
Merge remote-tracking branch 'cehoyos/master'
[ffmpeg] / libavcodec / rv34.c
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
27 #include "libavutil/imgutils.h"
28 #include "libavutil/internal.h"
29
30 #include "avcodec.h"
31 #include "error_resilience.h"
32 #include "mpegutils.h"
33 #include "mpegvideo.h"
34 #include "golomb.h"
35 #include "internal.h"
36 #include "mathops.h"
37 #include "rectangle.h"
38 #include "thread.h"
39
40 #include "rv34vlc.h"
41 #include "rv34data.h"
42 #include "rv34.h"
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
50 /** translation of RV30/40 macroblock types to lavc ones */
51 static const int rv34_mb_type_to_lavc[12] = {
52     MB_TYPE_INTRA,
53     MB_TYPE_INTRA16x16              | MB_TYPE_SEPARATE_DC,
54     MB_TYPE_16x16   | MB_TYPE_L0,
55     MB_TYPE_8x8     | MB_TYPE_L0,
56     MB_TYPE_16x16   | MB_TYPE_L0,
57     MB_TYPE_16x16   | MB_TYPE_L1,
58     MB_TYPE_SKIP,
59     MB_TYPE_DIRECT2 | MB_TYPE_16x16,
60     MB_TYPE_16x8    | MB_TYPE_L0,
61     MB_TYPE_8x16    | MB_TYPE_L0,
62     MB_TYPE_16x16   | MB_TYPE_L0L1,
63     MB_TYPE_16x16   | MB_TYPE_L0    | MB_TYPE_SEPARATE_DC
64 };
65
66
67 static RV34VLC intra_vlcs[NUM_INTRA_TABLES], inter_vlcs[NUM_INTER_TABLES];
68
69 static int rv34_decode_mv(RV34DecContext *r, int block_type);
70
71 /**
72  * @name RV30/40 VLC generating functions
73  * @{
74  */
75
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
99 /**
100  * Generate VLC from codeword lengths.
101  * @param bits   codeword lengths (zeroes are accepted)
102  * @param size   length of input data
103  * @param vlc    output VLC
104  * @param insyms symbols for input codes (NULL for default ones)
105  * @param num    VLC table number (for static initialization)
106  */
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];
113     uint8_t bits2[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
140 /**
141  * Initialize all tables.
142  */
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
176 /** @} */ // vlc group
177
178 /**
179  * @name RV30/40 4x4 block decoding functions
180  * @{
181  */
182
183 /**
184  * Decode coded block pattern.
185  */
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
216 /**
217  * Get one coefficient value from the bitstream and store it.
218  */
219 static inline void decode_coeff(int16_t *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
236 /**
237  * Decode 2x2 subblock of coefficients.
238  */
239 static inline void decode_subblock(int16_t *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
254 /**
255  * Decode a single coefficient.
256  */
257 static inline void decode_subblock1(int16_t *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(int16_t *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
274 /**
275  * Decode coefficients for 4x4 block.
276  *
277  * This is done by filling 2x2 subblocks with decoded coefficients
278  * in this order (the same for subblocks and subblock coefficients):
279  *  o--o
280  *    /
281  *   /
282  *  o--o
283  */
284
285 static int rv34_decode_block(int16_t *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
319 /**
320  * @name RV30/40 bitstream parsing
321  * @{
322  */
323
324 /**
325  * Decode starting slice position.
326  * @todo Maybe replace with ff_h263_decode_mba() ?
327  */
328 int ff_rv34_get_start_offset(GetBitContext *gb, int mb_size)
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
337 /**
338  * Select VLC set for decoding from current quantizer, modifier and frame type.
339  */
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
348 /**
349  * Decode intra macroblock header and return CBP in case of success, -1 otherwise.
350  */
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){
360         s->current_picture_ptr->mb_type[mb_pos] = MB_TYPE_INTRA16x16;
361         r->block_type = RV34_MB_TYPE_INTRA16x16;
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         }
370         s->current_picture_ptr->mb_type[mb_pos] = MB_TYPE_INTRA;
371         r->block_type = RV34_MB_TYPE_INTRA;
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
383 /**
384  * Decode inter macroblock header and return CBP in case of success, -1 otherwise.
385  */
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;
396     s->current_picture_ptr->mb_type[mb_pos] = rv34_mb_type_to_lavc[r->block_type];
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->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->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
440 /** @} */ //bitstream functions
441
442 /**
443  * @name motion vector related code (prediction, reconstruction, motion compensation)
444  * @{
445  */
446
447 /** macroblock partition width in 8x8 blocks */
448 static const uint8_t part_sizes_w[RV34_MB_TYPES] = { 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2 };
449
450 /** macroblock partition height in 8x8 blocks */
451 static const uint8_t part_sizes_h[RV34_MB_TYPES] = { 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2 };
452
453 /** availability index for subblocks */
454 static const uint8_t avail_indexes[4] = { 6, 7, 10, 11 };
455
456 /**
457  * motion vector prediction
458  *
459  * Motion prediction performed for the block by using median prediction of
460  * motion vectors from the left, top and right top blocks but in corner cases
461  * some other vectors may be used instead.
462  */
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->motion_val[0][mv_pos-1][0];
479         A[1] = s->current_picture_ptr->motion_val[0][mv_pos-1][1];
480     }
481     if(avail[-4]){
482         B[0] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride][0];
483         B[1] = s->current_picture_ptr->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->motion_val[0][mv_pos-s->b8_stride-1][0];
491             C[1] = s->current_picture_ptr->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->motion_val[0][mv_pos-s->b8_stride+c_off][0];
498         C[1] = s->current_picture_ptr->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->motion_val[0][mv_pos + i + j*s->b8_stride][0] = mx;
507             s->current_picture_ptr->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
514 /**
515  * Calculate motion vector component that should be added for direct blocks.
516  */
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
524 /**
525  * Predict motion vector for B-frame macroblock.
526  */
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
544 /**
545  * motion vector prediction for B-frames
546  */
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->mb_type[mb_pos];
559
560     if((r->avail_cache[6-1] & type) & mask){
561         A[0] = cur_pic->motion_val[dir][mv_pos - 1][0];
562         A[1] = cur_pic->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->motion_val[dir][mv_pos - s->b8_stride][0];
567         B[1] = cur_pic->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->motion_val[dir][mv_pos - s->b8_stride + 2][0];
572         C[1] = cur_pic->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->motion_val[dir][mv_pos - s->b8_stride - 1][0];
576         C[1] = cur_pic->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->motion_val[dir][mv_pos + i + j*s->b8_stride][0] = mx;
588             cur_pic->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->motion_val[!dir][mv_pos], s->b8_stride);
593     }
594 }
595
596 /**
597  * motion vector prediction - RV3 version
598  */
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->motion_val[0][mv_pos - 1][0];
610         A[1] = s->current_picture_ptr->motion_val[0][mv_pos - 1][1];
611     }
612     if(avail[-4]){
613         B[0] = s->current_picture_ptr->motion_val[0][mv_pos - s->b8_stride][0];
614         B[1] = s->current_picture_ptr->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->motion_val[0][mv_pos - s->b8_stride - 1][0];
622             C[1] = s->current_picture_ptr->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->motion_val[0][mv_pos - s->b8_stride + 2][0];
629         C[1] = s->current_picture_ptr->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->motion_val[k][mv_pos + i + j*s->b8_stride][0] = mx;
639                 s->current_picture_ptr->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
647 /**
648  * generic motion compensation function
649  *
650  * @param r decoder context
651  * @param block_type type of the current block
652  * @param xoff horizontal offset from the start of the current block
653  * @param yoff vertical offset from the start of the current block
654  * @param mv_off offset to the motion vector information
655  * @param width width of the current partition in 8x8 blocks
656  * @param height height of the current partition in 8x8 blocks
657  * @param dir motion compensation direction (i.e. from the last or the next reference frame)
658  * @param thirdpel motion vectors are specified in 1/3 of pixel
659  * @param qpel_mc a set of functions used to perform luma motion compensation
660  * @param chroma_mc a set of functions used to perform chroma motion compensation
661  */
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->motion_val[dir][mv_pos][0] + (3 << 24)) / 3 - (1 << 24);
678         my = (s->current_picture_ptr->motion_val[dir][mv_pos][1] + (3 << 24)) / 3 - (1 << 24);
679         lx = (s->current_picture_ptr->motion_val[dir][mv_pos][0] + (3 << 24)) % 3;
680         ly = (s->current_picture_ptr->motion_val[dir][mv_pos][1] + (3 << 24)) % 3;
681         chroma_mx = s->current_picture_ptr->motion_val[dir][mv_pos][0] / 2;
682         chroma_my = s->current_picture_ptr->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->motion_val[dir][mv_pos][0] >> 2;
690         my = s->current_picture_ptr->motion_val[dir][mv_pos][1] >> 2;
691         lx = s->current_picture_ptr->motion_val[dir][mv_pos][0] & 3;
692         ly = s->current_picture_ptr->motion_val[dir][mv_pos][1] & 3;
693         cx = s->current_picture_ptr->motion_val[dir][mv_pos][0] / 2;
694         cy = s->current_picture_ptr->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
704     if (HAVE_THREADS && (s->avctx->active_thread_type & FF_THREAD_FRAME)) {
705         /* wait for the referenced mb row to be finished */
706         int mb_row = s->mb_y + ((yoff + my + 5 + 8 * height) >> 4);
707         ThreadFrame *f = dir ? &s->next_picture_ptr->tf : &s->last_picture_ptr->tf;
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,
729                                  s->linesize, s->linesize,
730                                  (width << 3) + 6, (height << 3) + 6,
731                                  src_x - 2, src_y - 2,
732                                  s->h_edge_pos, s->v_edge_pos);
733         srcY = s->edge_emu_buffer + 2 + 2*s->linesize;
734         s->vdsp.emulated_edge_mc(uvbuf, srcU,
735                                  s->uvlinesize, s->uvlinesize,
736                                  (width << 2) + 1, (height << 2) + 1,
737                                  uvsrc_x, uvsrc_y,
738                                  s->h_edge_pos >> 1, s->v_edge_pos >> 1);
739         s->vdsp.emulated_edge_mc(uvbuf + 16, srcV,
740                                  s->uvlinesize, s->uvlinesize,
741                                  (width << 2) + 1, (height << 2) + 1,
742                                  uvsrc_x, uvsrc_y,
743                                  s->h_edge_pos >> 1, s->v_edge_pos >> 1);
744         srcU = uvbuf;
745         srcV = uvbuf + 16;
746     }
747     if(!weighted){
748         Y = s->dest[0] + xoff      + yoff     *s->linesize;
749         U = s->dest[1] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
750         V = s->dest[2] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
751     }else{
752         Y = r->tmp_b_block_y [dir]     +  xoff     +  yoff    *s->linesize;
753         U = r->tmp_b_block_uv[dir*2]   + (xoff>>1) + (yoff>>1)*s->uvlinesize;
754         V = r->tmp_b_block_uv[dir*2+1] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
755     }
756
757     if(block_type == RV34_MB_P_16x8){
758         qpel_mc[1][dxy](Y, srcY, s->linesize);
759         Y    += 8;
760         srcY += 8;
761     }else if(block_type == RV34_MB_P_8x16){
762         qpel_mc[1][dxy](Y, srcY, s->linesize);
763         Y    += 8 * s->linesize;
764         srcY += 8 * s->linesize;
765     }
766     is16x16 = (block_type != RV34_MB_P_8x8) && (block_type != RV34_MB_P_16x8) && (block_type != RV34_MB_P_8x16);
767     qpel_mc[!is16x16][dxy](Y, srcY, s->linesize);
768     chroma_mc[2-width]   (U, srcU, s->uvlinesize, height*4, uvmx, uvmy);
769     chroma_mc[2-width]   (V, srcV, s->uvlinesize, height*4, uvmx, uvmy);
770 }
771
772 static void rv34_mc_1mv(RV34DecContext *r, const int block_type,
773                         const int xoff, const int yoff, int mv_off,
774                         const int width, const int height, int dir)
775 {
776     rv34_mc(r, block_type, xoff, yoff, mv_off, width, height, dir, r->rv30, 0,
777             r->rdsp.put_pixels_tab,
778             r->rdsp.put_chroma_pixels_tab);
779 }
780
781 static void rv4_weight(RV34DecContext *r)
782 {
783     r->rdsp.rv40_weight_pixels_tab[r->scaled_weight][0](r->s.dest[0],
784                                                         r->tmp_b_block_y[0],
785                                                         r->tmp_b_block_y[1],
786                                                         r->weight1,
787                                                         r->weight2,
788                                                         r->s.linesize);
789     r->rdsp.rv40_weight_pixels_tab[r->scaled_weight][1](r->s.dest[1],
790                                                         r->tmp_b_block_uv[0],
791                                                         r->tmp_b_block_uv[2],
792                                                         r->weight1,
793                                                         r->weight2,
794                                                         r->s.uvlinesize);
795     r->rdsp.rv40_weight_pixels_tab[r->scaled_weight][1](r->s.dest[2],
796                                                         r->tmp_b_block_uv[1],
797                                                         r->tmp_b_block_uv[3],
798                                                         r->weight1,
799                                                         r->weight2,
800                                                         r->s.uvlinesize);
801 }
802
803 static void rv34_mc_2mv(RV34DecContext *r, const int block_type)
804 {
805     int weighted = !r->rv30 && block_type != RV34_MB_B_BIDIR && r->weight1 != 8192;
806
807     rv34_mc(r, block_type, 0, 0, 0, 2, 2, 0, r->rv30, weighted,
808             r->rdsp.put_pixels_tab,
809             r->rdsp.put_chroma_pixels_tab);
810     if(!weighted){
811         rv34_mc(r, block_type, 0, 0, 0, 2, 2, 1, r->rv30, 0,
812                 r->rdsp.avg_pixels_tab,
813                 r->rdsp.avg_chroma_pixels_tab);
814     }else{
815         rv34_mc(r, block_type, 0, 0, 0, 2, 2, 1, r->rv30, 1,
816                 r->rdsp.put_pixels_tab,
817                 r->rdsp.put_chroma_pixels_tab);
818         rv4_weight(r);
819     }
820 }
821
822 static void rv34_mc_2mv_skip(RV34DecContext *r)
823 {
824     int i, j;
825     int weighted = !r->rv30 && r->weight1 != 8192;
826
827     for(j = 0; j < 2; j++)
828         for(i = 0; i < 2; i++){
829              rv34_mc(r, RV34_MB_P_8x8, i*8, j*8, i+j*r->s.b8_stride, 1, 1, 0, r->rv30,
830                      weighted,
831                      r->rdsp.put_pixels_tab,
832                      r->rdsp.put_chroma_pixels_tab);
833              rv34_mc(r, RV34_MB_P_8x8, i*8, j*8, i+j*r->s.b8_stride, 1, 1, 1, r->rv30,
834                      weighted,
835                      weighted ? r->rdsp.put_pixels_tab : r->rdsp.avg_pixels_tab,
836                      weighted ? r->rdsp.put_chroma_pixels_tab : r->rdsp.avg_chroma_pixels_tab);
837         }
838     if(weighted)
839         rv4_weight(r);
840 }
841
842 /** number of motion vectors in each macroblock type */
843 static const int num_mvs[RV34_MB_TYPES] = { 0, 0, 1, 4, 1, 1, 0, 0, 2, 2, 2, 1 };
844
845 /**
846  * Decode motion vector differences
847  * and perform motion vector reconstruction and motion compensation.
848  */
849 static int rv34_decode_mv(RV34DecContext *r, int block_type)
850 {
851     MpegEncContext *s = &r->s;
852     GetBitContext *gb = &s->gb;
853     int i, j, k, l;
854     int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
855     int next_bt;
856
857     memset(r->dmv, 0, sizeof(r->dmv));
858     for(i = 0; i < num_mvs[block_type]; i++){
859         r->dmv[i][0] = svq3_get_se_golomb(gb);
860         r->dmv[i][1] = svq3_get_se_golomb(gb);
861     }
862     switch(block_type){
863     case RV34_MB_TYPE_INTRA:
864     case RV34_MB_TYPE_INTRA16x16:
865         ZERO8x2(s->current_picture_ptr->motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
866         return 0;
867     case RV34_MB_SKIP:
868         if(s->pict_type == AV_PICTURE_TYPE_P){
869             ZERO8x2(s->current_picture_ptr->motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
870             rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, 0);
871             break;
872         }
873     case RV34_MB_B_DIRECT:
874         //surprisingly, it uses motion scheme from next reference frame
875         /* wait for the current mb row to be finished */
876         if (HAVE_THREADS && (s->avctx->active_thread_type & FF_THREAD_FRAME))
877             ff_thread_await_progress(&s->next_picture_ptr->tf, FFMAX(0, s->mb_y-1), 0);
878
879         next_bt = s->next_picture_ptr->mb_type[s->mb_x + s->mb_y * s->mb_stride];
880         if(IS_INTRA(next_bt) || IS_SKIP(next_bt)){
881             ZERO8x2(s->current_picture_ptr->motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
882             ZERO8x2(s->current_picture_ptr->motion_val[1][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
883         }else
884             for(j = 0; j < 2; j++)
885                 for(i = 0; i < 2; i++)
886                     for(k = 0; k < 2; k++)
887                         for(l = 0; l < 2; l++)
888                             s->current_picture_ptr->motion_val[l][mv_pos + i + j*s->b8_stride][k] = calc_add_mv(r, l, s->next_picture_ptr->motion_val[0][mv_pos + i + j*s->b8_stride][k]);
889         if(!(IS_16X8(next_bt) || IS_8X16(next_bt) || IS_8X8(next_bt))) //we can use whole macroblock MC
890             rv34_mc_2mv(r, block_type);
891         else
892             rv34_mc_2mv_skip(r);
893         ZERO8x2(s->current_picture_ptr->motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
894         break;
895     case RV34_MB_P_16x16:
896     case RV34_MB_P_MIX16x16:
897         rv34_pred_mv(r, block_type, 0, 0);
898         rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, 0);
899         break;
900     case RV34_MB_B_FORWARD:
901     case RV34_MB_B_BACKWARD:
902         r->dmv[1][0] = r->dmv[0][0];
903         r->dmv[1][1] = r->dmv[0][1];
904         if(r->rv30)
905             rv34_pred_mv_rv3(r, block_type, block_type == RV34_MB_B_BACKWARD);
906         else
907             rv34_pred_mv_b  (r, block_type, block_type == RV34_MB_B_BACKWARD);
908         rv34_mc_1mv     (r, block_type, 0, 0, 0, 2, 2, block_type == RV34_MB_B_BACKWARD);
909         break;
910     case RV34_MB_P_16x8:
911     case RV34_MB_P_8x16:
912         rv34_pred_mv(r, block_type, 0, 0);
913         rv34_pred_mv(r, block_type, 1 + (block_type == RV34_MB_P_16x8), 1);
914         if(block_type == RV34_MB_P_16x8){
915             rv34_mc_1mv(r, block_type, 0, 0, 0,            2, 1, 0);
916             rv34_mc_1mv(r, block_type, 0, 8, s->b8_stride, 2, 1, 0);
917         }
918         if(block_type == RV34_MB_P_8x16){
919             rv34_mc_1mv(r, block_type, 0, 0, 0, 1, 2, 0);
920             rv34_mc_1mv(r, block_type, 8, 0, 1, 1, 2, 0);
921         }
922         break;
923     case RV34_MB_B_BIDIR:
924         rv34_pred_mv_b  (r, block_type, 0);
925         rv34_pred_mv_b  (r, block_type, 1);
926         rv34_mc_2mv     (r, block_type);
927         break;
928     case RV34_MB_P_8x8:
929         for(i=0;i< 4;i++){
930             rv34_pred_mv(r, block_type, i, i);
931             rv34_mc_1mv (r, block_type, (i&1)<<3, (i&2)<<2, (i&1)+(i>>1)*s->b8_stride, 1, 1, 0);
932         }
933         break;
934     }
935
936     return 0;
937 }
938 /** @} */ // mv group
939
940 /**
941  * @name Macroblock reconstruction functions
942  * @{
943  */
944 /** mapping of RV30/40 intra prediction types to standard H.264 types */
945 static const int ittrans[9] = {
946  DC_PRED, VERT_PRED, HOR_PRED, DIAG_DOWN_RIGHT_PRED, DIAG_DOWN_LEFT_PRED,
947  VERT_RIGHT_PRED, VERT_LEFT_PRED, HOR_UP_PRED, HOR_DOWN_PRED,
948 };
949
950 /** mapping of RV30/40 intra 16x16 prediction types to standard H.264 types */
951 static const int ittrans16[4] = {
952  DC_PRED8x8, VERT_PRED8x8, HOR_PRED8x8, PLANE_PRED8x8,
953 };
954
955 /**
956  * Perform 4x4 intra prediction.
957  */
958 static void rv34_pred_4x4_block(RV34DecContext *r, uint8_t *dst, int stride, int itype, int up, int left, int down, int right)
959 {
960     uint8_t *prev = dst - stride + 4;
961     uint32_t topleft;
962
963     if(!up && !left)
964         itype = DC_128_PRED;
965     else if(!up){
966         if(itype == VERT_PRED) itype = HOR_PRED;
967         if(itype == DC_PRED)   itype = LEFT_DC_PRED;
968     }else if(!left){
969         if(itype == HOR_PRED)  itype = VERT_PRED;
970         if(itype == DC_PRED)   itype = TOP_DC_PRED;
971         if(itype == DIAG_DOWN_LEFT_PRED) itype = DIAG_DOWN_LEFT_PRED_RV40_NODOWN;
972     }
973     if(!down){
974         if(itype == DIAG_DOWN_LEFT_PRED) itype = DIAG_DOWN_LEFT_PRED_RV40_NODOWN;
975         if(itype == HOR_UP_PRED) itype = HOR_UP_PRED_RV40_NODOWN;
976         if(itype == VERT_LEFT_PRED) itype = VERT_LEFT_PRED_RV40_NODOWN;
977     }
978     if(!right && up){
979         topleft = dst[-stride + 3] * 0x01010101u;
980         prev = (uint8_t*)&topleft;
981     }
982     r->h.pred4x4[itype](dst, prev, stride);
983 }
984
985 static inline int adjust_pred16(int itype, int up, int left)
986 {
987     if(!up && !left)
988         itype = DC_128_PRED8x8;
989     else if(!up){
990         if(itype == PLANE_PRED8x8)itype = HOR_PRED8x8;
991         if(itype == VERT_PRED8x8) itype = HOR_PRED8x8;
992         if(itype == DC_PRED8x8)   itype = LEFT_DC_PRED8x8;
993     }else if(!left){
994         if(itype == PLANE_PRED8x8)itype = VERT_PRED8x8;
995         if(itype == HOR_PRED8x8)  itype = VERT_PRED8x8;
996         if(itype == DC_PRED8x8)   itype = TOP_DC_PRED8x8;
997     }
998     return itype;
999 }
1000
1001 static inline void rv34_process_block(RV34DecContext *r,
1002                                       uint8_t *pdst, int stride,
1003                                       int fc, int sc, int q_dc, int q_ac)
1004 {
1005     MpegEncContext *s = &r->s;
1006     int16_t *ptr = s->block[0];
1007     int has_ac = rv34_decode_block(ptr, &s->gb, r->cur_vlcs,
1008                                    fc, sc, q_dc, q_ac, q_ac);
1009     if(has_ac){
1010         r->rdsp.rv34_idct_add(pdst, stride, ptr);
1011     }else{
1012         r->rdsp.rv34_idct_dc_add(pdst, stride, ptr[0]);
1013         ptr[0] = 0;
1014     }
1015 }
1016
1017 static void rv34_output_i16x16(RV34DecContext *r, int8_t *intra_types, int cbp)
1018 {
1019     LOCAL_ALIGNED_16(int16_t, block16, [16]);
1020     MpegEncContext *s    = &r->s;
1021     GetBitContext  *gb   = &s->gb;
1022     int             q_dc = rv34_qscale_tab[ r->luma_dc_quant_i[s->qscale] ],
1023                     q_ac = rv34_qscale_tab[s->qscale];
1024     uint8_t        *dst  = s->dest[0];
1025     int16_t        *ptr  = s->block[0];
1026     int i, j, itype, has_ac;
1027
1028     memset(block16, 0, 16 * sizeof(*block16));
1029
1030     has_ac = rv34_decode_block(block16, gb, r->cur_vlcs, 3, 0, q_dc, q_dc, q_ac);
1031     if(has_ac)
1032         r->rdsp.rv34_inv_transform(block16);
1033     else
1034         r->rdsp.rv34_inv_transform_dc(block16);
1035
1036     itype = ittrans16[intra_types[0]];
1037     itype = adjust_pred16(itype, r->avail_cache[6-4], r->avail_cache[6-1]);
1038     r->h.pred16x16[itype](dst, s->linesize);
1039
1040     for(j = 0; j < 4; j++){
1041         for(i = 0; i < 4; i++, cbp >>= 1){
1042             int dc = block16[i + j*4];
1043
1044             if(cbp & 1){
1045                 has_ac = rv34_decode_block(ptr, gb, r->cur_vlcs, r->luma_vlc, 0, q_ac, q_ac, q_ac);
1046             }else
1047                 has_ac = 0;
1048
1049             if(has_ac){
1050                 ptr[0] = dc;
1051                 r->rdsp.rv34_idct_add(dst+4*i, s->linesize, ptr);
1052             }else
1053                 r->rdsp.rv34_idct_dc_add(dst+4*i, s->linesize, dc);
1054         }
1055
1056         dst += 4*s->linesize;
1057     }
1058
1059     itype = ittrans16[intra_types[0]];
1060     if(itype == PLANE_PRED8x8) itype = DC_PRED8x8;
1061     itype = adjust_pred16(itype, r->avail_cache[6-4], r->avail_cache[6-1]);
1062
1063     q_dc = rv34_qscale_tab[rv34_chroma_quant[1][s->qscale]];
1064     q_ac = rv34_qscale_tab[rv34_chroma_quant[0][s->qscale]];
1065
1066     for(j = 1; j < 3; j++){
1067         dst = s->dest[j];
1068         r->h.pred8x8[itype](dst, s->uvlinesize);
1069         for(i = 0; i < 4; i++, cbp >>= 1){
1070             uint8_t *pdst;
1071             if(!(cbp & 1)) continue;
1072             pdst   = dst + (i&1)*4 + (i&2)*2*s->uvlinesize;
1073
1074             rv34_process_block(r, pdst, s->uvlinesize,
1075                                r->chroma_vlc, 1, q_dc, q_ac);
1076         }
1077     }
1078 }
1079
1080 static void rv34_output_intra(RV34DecContext *r, int8_t *intra_types, int cbp)
1081 {
1082     MpegEncContext *s   = &r->s;
1083     uint8_t        *dst = s->dest[0];
1084     int      avail[6*8] = {0};
1085     int i, j, k;
1086     int idx, q_ac, q_dc;
1087
1088     // Set neighbour information.
1089     if(r->avail_cache[1])
1090         avail[0] = 1;
1091     if(r->avail_cache[2])
1092         avail[1] = avail[2] = 1;
1093     if(r->avail_cache[3])
1094         avail[3] = avail[4] = 1;
1095     if(r->avail_cache[4])
1096         avail[5] = 1;
1097     if(r->avail_cache[5])
1098         avail[8] = avail[16] = 1;
1099     if(r->avail_cache[9])
1100         avail[24] = avail[32] = 1;
1101
1102     q_ac = rv34_qscale_tab[s->qscale];
1103     for(j = 0; j < 4; j++){
1104         idx = 9 + j*8;
1105         for(i = 0; i < 4; i++, cbp >>= 1, dst += 4, idx++){
1106             rv34_pred_4x4_block(r, dst, s->linesize, ittrans[intra_types[i]], avail[idx-8], avail[idx-1], avail[idx+7], avail[idx-7]);
1107             avail[idx] = 1;
1108             if(!(cbp & 1)) continue;
1109
1110             rv34_process_block(r, dst, s->linesize,
1111                                r->luma_vlc, 0, q_ac, q_ac);
1112         }
1113         dst += s->linesize * 4 - 4*4;
1114         intra_types += r->intra_types_stride;
1115     }
1116
1117     intra_types -= r->intra_types_stride * 4;
1118
1119     q_dc = rv34_qscale_tab[rv34_chroma_quant[1][s->qscale]];
1120     q_ac = rv34_qscale_tab[rv34_chroma_quant[0][s->qscale]];
1121
1122     for(k = 0; k < 2; k++){
1123         dst = s->dest[1+k];
1124         fill_rectangle(r->avail_cache + 6, 2, 2, 4, 0, 4);
1125
1126         for(j = 0; j < 2; j++){
1127             int* acache = r->avail_cache + 6 + j*4;
1128             for(i = 0; i < 2; i++, cbp >>= 1, acache++){
1129                 int itype = ittrans[intra_types[i*2+j*2*r->intra_types_stride]];
1130                 rv34_pred_4x4_block(r, dst+4*i, s->uvlinesize, itype, acache[-4], acache[-1], !i && !j, acache[-3]);
1131                 acache[0] = 1;
1132
1133                 if(!(cbp&1)) continue;
1134
1135                 rv34_process_block(r, dst + 4*i, s->uvlinesize,
1136                                    r->chroma_vlc, 1, q_dc, q_ac);
1137             }
1138
1139             dst += 4*s->uvlinesize;
1140         }
1141     }
1142 }
1143
1144 static int is_mv_diff_gt_3(int16_t (*motion_val)[2], int step)
1145 {
1146     int d;
1147     d = motion_val[0][0] - motion_val[-step][0];
1148     if(d < -3 || d > 3)
1149         return 1;
1150     d = motion_val[0][1] - motion_val[-step][1];
1151     if(d < -3 || d > 3)
1152         return 1;
1153     return 0;
1154 }
1155
1156 static int rv34_set_deblock_coef(RV34DecContext *r)
1157 {
1158     MpegEncContext *s = &r->s;
1159     int hmvmask = 0, vmvmask = 0, i, j;
1160     int midx = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
1161     int16_t (*motion_val)[2] = &s->current_picture_ptr->motion_val[0][midx];
1162     for(j = 0; j < 16; j += 8){
1163         for(i = 0; i < 2; i++){
1164             if(is_mv_diff_gt_3(motion_val + i, 1))
1165                 vmvmask |= 0x11 << (j + i*2);
1166             if((j || s->mb_y) && is_mv_diff_gt_3(motion_val + i, s->b8_stride))
1167                 hmvmask |= 0x03 << (j + i*2);
1168         }
1169         motion_val += s->b8_stride;
1170     }
1171     if(s->first_slice_line)
1172         hmvmask &= ~0x000F;
1173     if(!s->mb_x)
1174         vmvmask &= ~0x1111;
1175     if(r->rv30){ //RV30 marks both subblocks on the edge for filtering
1176         vmvmask |= (vmvmask & 0x4444) >> 1;
1177         hmvmask |= (hmvmask & 0x0F00) >> 4;
1178         if(s->mb_x)
1179             r->deblock_coefs[s->mb_x - 1 + s->mb_y*s->mb_stride] |= (vmvmask & 0x1111) << 3;
1180         if(!s->first_slice_line)
1181             r->deblock_coefs[s->mb_x + (s->mb_y - 1)*s->mb_stride] |= (hmvmask & 0xF) << 12;
1182     }
1183     return hmvmask | vmvmask;
1184 }
1185
1186 static int rv34_decode_inter_macroblock(RV34DecContext *r, int8_t *intra_types)
1187 {
1188     MpegEncContext *s   = &r->s;
1189     GetBitContext  *gb  = &s->gb;
1190     uint8_t        *dst = s->dest[0];
1191     int16_t        *ptr = s->block[0];
1192     int          mb_pos = s->mb_x + s->mb_y * s->mb_stride;
1193     int cbp, cbp2;
1194     int q_dc, q_ac, has_ac;
1195     int i, j;
1196     int dist;
1197
1198     // Calculate which neighbours are available. Maybe it's worth optimizing too.
1199     memset(r->avail_cache, 0, sizeof(r->avail_cache));
1200     fill_rectangle(r->avail_cache + 6, 2, 2, 4, 1, 4);
1201     dist = (s->mb_x - s->resync_mb_x) + (s->mb_y - s->resync_mb_y) * s->mb_width;
1202     if(s->mb_x && dist)
1203         r->avail_cache[5] =
1204         r->avail_cache[9] = s->current_picture_ptr->mb_type[mb_pos - 1];
1205     if(dist >= s->mb_width)
1206         r->avail_cache[2] =
1207         r->avail_cache[3] = s->current_picture_ptr->mb_type[mb_pos - s->mb_stride];
1208     if(((s->mb_x+1) < s->mb_width) && dist >= s->mb_width - 1)
1209         r->avail_cache[4] = s->current_picture_ptr->mb_type[mb_pos - s->mb_stride + 1];
1210     if(s->mb_x && dist > s->mb_width)
1211         r->avail_cache[1] = s->current_picture_ptr->mb_type[mb_pos - s->mb_stride - 1];
1212
1213     s->qscale = r->si.quant;
1214     cbp = cbp2 = rv34_decode_inter_mb_header(r, intra_types);
1215     r->cbp_luma  [mb_pos] = cbp;
1216     r->cbp_chroma[mb_pos] = cbp >> 16;
1217     r->deblock_coefs[mb_pos] = rv34_set_deblock_coef(r) | r->cbp_luma[mb_pos];
1218     s->current_picture_ptr->qscale_table[mb_pos] = s->qscale;
1219
1220     if(cbp == -1)
1221         return -1;
1222
1223     if (IS_INTRA(s->current_picture_ptr->mb_type[mb_pos])){
1224         if(r->is16) rv34_output_i16x16(r, intra_types, cbp);
1225         else        rv34_output_intra(r, intra_types, cbp);
1226         return 0;
1227     }
1228
1229     if(r->is16){
1230         // Only for RV34_MB_P_MIX16x16
1231         LOCAL_ALIGNED_16(int16_t, block16, [16]);
1232         memset(block16, 0, 16 * sizeof(*block16));
1233         q_dc = rv34_qscale_tab[ r->luma_dc_quant_p[s->qscale] ];
1234         q_ac = rv34_qscale_tab[s->qscale];
1235         if (rv34_decode_block(block16, gb, r->cur_vlcs, 3, 0, q_dc, q_dc, q_ac))
1236             r->rdsp.rv34_inv_transform(block16);
1237         else
1238             r->rdsp.rv34_inv_transform_dc(block16);
1239
1240         q_ac = rv34_qscale_tab[s->qscale];
1241
1242         for(j = 0; j < 4; j++){
1243             for(i = 0; i < 4; i++, cbp >>= 1){
1244                 int      dc   = block16[i + j*4];
1245
1246                 if(cbp & 1){
1247                     has_ac = rv34_decode_block(ptr, gb, r->cur_vlcs, r->luma_vlc, 0, q_ac, q_ac, q_ac);
1248                 }else
1249                     has_ac = 0;
1250
1251                 if(has_ac){
1252                     ptr[0] = dc;
1253                     r->rdsp.rv34_idct_add(dst+4*i, s->linesize, ptr);
1254                 }else
1255                     r->rdsp.rv34_idct_dc_add(dst+4*i, s->linesize, dc);
1256             }
1257
1258             dst += 4*s->linesize;
1259         }
1260
1261         r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 1);
1262     }else{
1263         q_ac = rv34_qscale_tab[s->qscale];
1264
1265         for(j = 0; j < 4; j++){
1266             for(i = 0; i < 4; i++, cbp >>= 1){
1267                 if(!(cbp & 1)) continue;
1268
1269                 rv34_process_block(r, dst + 4*i, s->linesize,
1270                                    r->luma_vlc, 0, q_ac, q_ac);
1271             }
1272             dst += 4*s->linesize;
1273         }
1274     }
1275
1276     q_dc = rv34_qscale_tab[rv34_chroma_quant[1][s->qscale]];
1277     q_ac = rv34_qscale_tab[rv34_chroma_quant[0][s->qscale]];
1278
1279     for(j = 1; j < 3; j++){
1280         dst = s->dest[j];
1281         for(i = 0; i < 4; i++, cbp >>= 1){
1282             uint8_t *pdst;
1283             if(!(cbp & 1)) continue;
1284             pdst = dst + (i&1)*4 + (i&2)*2*s->uvlinesize;
1285
1286             rv34_process_block(r, pdst, s->uvlinesize,
1287                                r->chroma_vlc, 1, q_dc, q_ac);
1288         }
1289     }
1290
1291     return 0;
1292 }
1293
1294 static int rv34_decode_intra_macroblock(RV34DecContext *r, int8_t *intra_types)
1295 {
1296     MpegEncContext *s = &r->s;
1297     int cbp, dist;
1298     int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
1299
1300     // Calculate which neighbours are available. Maybe it's worth optimizing too.
1301     memset(r->avail_cache, 0, sizeof(r->avail_cache));
1302     fill_rectangle(r->avail_cache + 6, 2, 2, 4, 1, 4);
1303     dist = (s->mb_x - s->resync_mb_x) + (s->mb_y - s->resync_mb_y) * s->mb_width;
1304     if(s->mb_x && dist)
1305         r->avail_cache[5] =
1306         r->avail_cache[9] = s->current_picture_ptr->mb_type[mb_pos - 1];
1307     if(dist >= s->mb_width)
1308         r->avail_cache[2] =
1309         r->avail_cache[3] = s->current_picture_ptr->mb_type[mb_pos - s->mb_stride];
1310     if(((s->mb_x+1) < s->mb_width) && dist >= s->mb_width - 1)
1311         r->avail_cache[4] = s->current_picture_ptr->mb_type[mb_pos - s->mb_stride + 1];
1312     if(s->mb_x && dist > s->mb_width)
1313         r->avail_cache[1] = s->current_picture_ptr->mb_type[mb_pos - s->mb_stride - 1];
1314
1315     s->qscale = r->si.quant;
1316     cbp = rv34_decode_intra_mb_header(r, intra_types);
1317     r->cbp_luma  [mb_pos] = cbp;
1318     r->cbp_chroma[mb_pos] = cbp >> 16;
1319     r->deblock_coefs[mb_pos] = 0xFFFF;
1320     s->current_picture_ptr->qscale_table[mb_pos] = s->qscale;
1321
1322     if(cbp == -1)
1323         return -1;
1324
1325     if(r->is16){
1326         rv34_output_i16x16(r, intra_types, cbp);
1327         return 0;
1328     }
1329
1330     rv34_output_intra(r, intra_types, cbp);
1331     return 0;
1332 }
1333
1334 static int check_slice_end(RV34DecContext *r, MpegEncContext *s)
1335 {
1336     int bits;
1337     if(s->mb_y >= s->mb_height)
1338         return 1;
1339     if(!s->mb_num_left)
1340         return 1;
1341     if(r->s.mb_skip_run > 1)
1342         return 0;
1343     bits = get_bits_left(&s->gb);
1344     if(bits <= 0 || (bits < 8 && !show_bits(&s->gb, bits)))
1345         return 1;
1346     return 0;
1347 }
1348
1349
1350 static void rv34_decoder_free(RV34DecContext *r)
1351 {
1352     av_freep(&r->intra_types_hist);
1353     r->intra_types = NULL;
1354     av_freep(&r->tmp_b_block_base);
1355     av_freep(&r->mb_type);
1356     av_freep(&r->cbp_luma);
1357     av_freep(&r->cbp_chroma);
1358     av_freep(&r->deblock_coefs);
1359 }
1360
1361
1362 static int rv34_decoder_alloc(RV34DecContext *r)
1363 {
1364     r->intra_types_stride = r->s.mb_width * 4 + 4;
1365
1366     r->cbp_chroma       = av_mallocz(r->s.mb_stride * r->s.mb_height *
1367                                     sizeof(*r->cbp_chroma));
1368     r->cbp_luma         = av_mallocz(r->s.mb_stride * r->s.mb_height *
1369                                     sizeof(*r->cbp_luma));
1370     r->deblock_coefs    = av_mallocz(r->s.mb_stride * r->s.mb_height *
1371                                     sizeof(*r->deblock_coefs));
1372     r->intra_types_hist = av_malloc(r->intra_types_stride * 4 * 2 *
1373                                     sizeof(*r->intra_types_hist));
1374     r->mb_type          = av_mallocz(r->s.mb_stride * r->s.mb_height *
1375                                      sizeof(*r->mb_type));
1376
1377     if (!(r->cbp_chroma       && r->cbp_luma && r->deblock_coefs &&
1378           r->intra_types_hist && r->mb_type)) {
1379         rv34_decoder_free(r);
1380         return AVERROR(ENOMEM);
1381     }
1382
1383     r->intra_types = r->intra_types_hist + r->intra_types_stride * 4;
1384
1385     return 0;
1386 }
1387
1388
1389 static int rv34_decoder_realloc(RV34DecContext *r)
1390 {
1391     rv34_decoder_free(r);
1392     return rv34_decoder_alloc(r);
1393 }
1394
1395
1396 static int rv34_decode_slice(RV34DecContext *r, int end, const uint8_t* buf, int buf_size)
1397 {
1398     MpegEncContext *s = &r->s;
1399     GetBitContext *gb = &s->gb;
1400     int mb_pos, slice_type;
1401     int res;
1402
1403     init_get_bits(&r->s.gb, buf, buf_size*8);
1404     res = r->parse_slice_header(r, gb, &r->si);
1405     if(res < 0){
1406         av_log(s->avctx, AV_LOG_ERROR, "Incorrect or unknown slice header\n");
1407         return -1;
1408     }
1409
1410     slice_type = r->si.type ? r->si.type : AV_PICTURE_TYPE_I;
1411     if (slice_type != s->pict_type) {
1412         av_log(s->avctx, AV_LOG_ERROR, "Slice type mismatch\n");
1413         return AVERROR_INVALIDDATA;
1414     }
1415     if (s->width != r->si.width || s->height != r->si.height) {
1416         av_log(s->avctx, AV_LOG_ERROR, "Size mismatch\n");
1417         return AVERROR_INVALIDDATA;
1418     }
1419
1420     r->si.end = end;
1421     s->qscale = r->si.quant;
1422     s->mb_num_left = r->si.end - r->si.start;
1423     r->s.mb_skip_run = 0;
1424
1425     mb_pos = s->mb_x + s->mb_y * s->mb_width;
1426     if(r->si.start != mb_pos){
1427         av_log(s->avctx, AV_LOG_ERROR, "Slice indicates MB offset %d, got %d\n", r->si.start, mb_pos);
1428         s->mb_x = r->si.start % s->mb_width;
1429         s->mb_y = r->si.start / s->mb_width;
1430     }
1431     memset(r->intra_types_hist, -1, r->intra_types_stride * 4 * 2 * sizeof(*r->intra_types_hist));
1432     s->first_slice_line = 1;
1433     s->resync_mb_x = s->mb_x;
1434     s->resync_mb_y = s->mb_y;
1435
1436     ff_init_block_index(s);
1437     while(!check_slice_end(r, s)) {
1438         ff_update_block_index(s);
1439
1440         if(r->si.type)
1441             res = rv34_decode_inter_macroblock(r, r->intra_types + s->mb_x * 4 + 4);
1442         else
1443             res = rv34_decode_intra_macroblock(r, r->intra_types + s->mb_x * 4 + 4);
1444         if(res < 0){
1445             ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, ER_MB_ERROR);
1446             return -1;
1447         }
1448         if (++s->mb_x == s->mb_width) {
1449             s->mb_x = 0;
1450             s->mb_y++;
1451             ff_init_block_index(s);
1452
1453             memmove(r->intra_types_hist, r->intra_types, r->intra_types_stride * 4 * sizeof(*r->intra_types_hist));
1454             memset(r->intra_types, -1, r->intra_types_stride * 4 * sizeof(*r->intra_types_hist));
1455
1456             if(r->loop_filter && s->mb_y >= 2)
1457                 r->loop_filter(r, s->mb_y - 2);
1458
1459             if (HAVE_THREADS && (s->avctx->active_thread_type & FF_THREAD_FRAME))
1460                 ff_thread_report_progress(&s->current_picture_ptr->tf,
1461                                           s->mb_y - 2, 0);
1462
1463         }
1464         if(s->mb_x == s->resync_mb_x)
1465             s->first_slice_line=0;
1466         s->mb_num_left--;
1467     }
1468     ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, ER_MB_END);
1469
1470     return s->mb_y == s->mb_height;
1471 }
1472
1473 /** @} */ // recons group end
1474
1475 /**
1476  * Initialize decoder.
1477  */
1478 av_cold int ff_rv34_decode_init(AVCodecContext *avctx)
1479 {
1480     RV34DecContext *r = avctx->priv_data;
1481     MpegEncContext *s = &r->s;
1482     int ret;
1483
1484     ff_MPV_decode_defaults(s);
1485     s->avctx      = avctx;
1486     s->out_format = FMT_H263;
1487     s->codec_id   = avctx->codec_id;
1488
1489     s->width  = avctx->width;
1490     s->height = avctx->height;
1491
1492     r->s.avctx = avctx;
1493     avctx->pix_fmt = AV_PIX_FMT_YUV420P;
1494     avctx->has_b_frames = 1;
1495     s->low_delay = 0;
1496
1497     if ((ret = ff_MPV_common_init(s)) < 0)
1498         return ret;
1499
1500     ff_h264_pred_init(&r->h, AV_CODEC_ID_RV40, 8, 1);
1501
1502 #if CONFIG_RV30_DECODER
1503     if (avctx->codec_id == AV_CODEC_ID_RV30)
1504         ff_rv30dsp_init(&r->rdsp);
1505 #endif
1506 #if CONFIG_RV40_DECODER
1507     if (avctx->codec_id == AV_CODEC_ID_RV40)
1508         ff_rv40dsp_init(&r->rdsp);
1509 #endif
1510
1511     if ((ret = rv34_decoder_alloc(r)) < 0) {
1512         ff_MPV_common_end(&r->s);
1513         return ret;
1514     }
1515
1516     if(!intra_vlcs[0].cbppattern[0].bits)
1517         rv34_init_tables();
1518
1519     avctx->internal->allocate_progress = 1;
1520
1521     return 0;
1522 }
1523
1524 int ff_rv34_decode_init_thread_copy(AVCodecContext *avctx)
1525 {
1526     int err;
1527     RV34DecContext *r = avctx->priv_data;
1528
1529     r->s.avctx = avctx;
1530
1531     if (avctx->internal->is_copy) {
1532         r->tmp_b_block_base = NULL;
1533         if ((err = ff_MPV_common_init(&r->s)) < 0)
1534             return err;
1535         if ((err = rv34_decoder_alloc(r)) < 0) {
1536             ff_MPV_common_end(&r->s);
1537             return err;
1538         }
1539     }
1540
1541     return 0;
1542 }
1543
1544 int ff_rv34_decode_update_thread_context(AVCodecContext *dst, const AVCodecContext *src)
1545 {
1546     RV34DecContext *r = dst->priv_data, *r1 = src->priv_data;
1547     MpegEncContext * const s = &r->s, * const s1 = &r1->s;
1548     int err;
1549
1550     if (dst == src || !s1->context_initialized)
1551         return 0;
1552
1553     if (s->height != s1->height || s->width != s1->width) {
1554         s->height = s1->height;
1555         s->width  = s1->width;
1556         if ((err = ff_MPV_common_frame_size_change(s)) < 0)
1557             return err;
1558         if ((err = rv34_decoder_realloc(r)) < 0)
1559             return err;
1560     }
1561
1562     if ((err = ff_mpeg_update_thread_context(dst, src)))
1563         return err;
1564
1565     r->cur_pts  = r1->cur_pts;
1566     r->last_pts = r1->last_pts;
1567     r->next_pts = r1->next_pts;
1568
1569     memset(&r->si, 0, sizeof(r->si));
1570
1571     return 0;
1572 }
1573
1574 static int get_slice_offset(AVCodecContext *avctx, const uint8_t *buf, int n)
1575 {
1576     if(avctx->slice_count) return avctx->slice_offset[n];
1577     else                   return AV_RL32(buf + n*8 - 4) == 1 ? AV_RL32(buf + n*8) :  AV_RB32(buf + n*8);
1578 }
1579
1580 static int finish_frame(AVCodecContext *avctx, AVFrame *pict)
1581 {
1582     RV34DecContext *r = avctx->priv_data;
1583     MpegEncContext *s = &r->s;
1584     int got_picture = 0, ret;
1585
1586     ff_er_frame_end(&s->er);
1587     ff_MPV_frame_end(s);
1588     s->mb_num_left = 0;
1589
1590     if (HAVE_THREADS && (s->avctx->active_thread_type & FF_THREAD_FRAME))
1591         ff_thread_report_progress(&s->current_picture_ptr->tf, INT_MAX, 0);
1592
1593     if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) {
1594         if ((ret = av_frame_ref(pict, s->current_picture_ptr->f)) < 0)
1595             return ret;
1596         ff_print_debug_info(s, s->current_picture_ptr, pict);
1597         ff_mpv_export_qp_table(s, pict, s->current_picture_ptr, FF_QSCALE_TYPE_MPEG1);
1598         got_picture = 1;
1599     } else if (s->last_picture_ptr != NULL) {
1600         if ((ret = av_frame_ref(pict, s->last_picture_ptr->f)) < 0)
1601             return ret;
1602         ff_print_debug_info(s, s->last_picture_ptr, pict);
1603         ff_mpv_export_qp_table(s, pict, s->last_picture_ptr, FF_QSCALE_TYPE_MPEG1);
1604         got_picture = 1;
1605     }
1606
1607     return got_picture;
1608 }
1609
1610 static AVRational update_sar(int old_w, int old_h, AVRational sar, int new_w, int new_h)
1611 {
1612     // attempt to keep aspect during typical resolution switches
1613     if (!sar.num)
1614         sar = (AVRational){1, 1};
1615
1616     sar = av_mul_q(sar, (AVRational){new_h * old_w, new_w * old_h});
1617     return sar;
1618 }
1619
1620 int ff_rv34_decode_frame(AVCodecContext *avctx,
1621                             void *data, int *got_picture_ptr,
1622                             AVPacket *avpkt)
1623 {
1624     const uint8_t *buf = avpkt->data;
1625     int buf_size = avpkt->size;
1626     RV34DecContext *r = avctx->priv_data;
1627     MpegEncContext *s = &r->s;
1628     AVFrame *pict = data;
1629     SliceInfo si;
1630     int i, ret;
1631     int slice_count;
1632     const uint8_t *slices_hdr = NULL;
1633     int last = 0;
1634
1635     /* no supplementary picture */
1636     if (buf_size == 0) {
1637         /* special case for last picture */
1638         if (s->low_delay==0 && s->next_picture_ptr) {
1639             if ((ret = av_frame_ref(pict, s->next_picture_ptr->f)) < 0)
1640                 return ret;
1641             s->next_picture_ptr = NULL;
1642
1643             *got_picture_ptr = 1;
1644         }
1645         return 0;
1646     }
1647
1648     if(!avctx->slice_count){
1649         slice_count = (*buf++) + 1;
1650         slices_hdr = buf + 4;
1651         buf += 8 * slice_count;
1652         buf_size -= 1 + 8 * slice_count;
1653     }else
1654         slice_count = avctx->slice_count;
1655
1656     //parse first slice header to check whether this frame can be decoded
1657     if(get_slice_offset(avctx, slices_hdr, 0) < 0 ||
1658        get_slice_offset(avctx, slices_hdr, 0) > buf_size){
1659         av_log(avctx, AV_LOG_ERROR, "Slice offset is invalid\n");
1660         return AVERROR_INVALIDDATA;
1661     }
1662     init_get_bits(&s->gb, buf+get_slice_offset(avctx, slices_hdr, 0), (buf_size-get_slice_offset(avctx, slices_hdr, 0))*8);
1663     if(r->parse_slice_header(r, &r->s.gb, &si) < 0 || si.start){
1664         av_log(avctx, AV_LOG_ERROR, "First slice header is incorrect\n");
1665         return AVERROR_INVALIDDATA;
1666     }
1667     if ((!s->last_picture_ptr || !s->last_picture_ptr->f->data[0]) &&
1668         si.type == AV_PICTURE_TYPE_B) {
1669         av_log(avctx, AV_LOG_ERROR, "Invalid decoder state: B-frame without "
1670                "reference data.\n");
1671         return AVERROR_INVALIDDATA;
1672     }
1673     if(   (avctx->skip_frame >= AVDISCARD_NONREF && si.type==AV_PICTURE_TYPE_B)
1674        || (avctx->skip_frame >= AVDISCARD_NONKEY && si.type!=AV_PICTURE_TYPE_I)
1675        ||  avctx->skip_frame >= AVDISCARD_ALL)
1676         return avpkt->size;
1677
1678     /* first slice */
1679     if (si.start == 0) {
1680         if (s->mb_num_left > 0) {
1681             av_log(avctx, AV_LOG_ERROR, "New frame but still %d MB left.\n",
1682                    s->mb_num_left);
1683             ff_er_frame_end(&s->er);
1684             ff_MPV_frame_end(s);
1685         }
1686
1687         if (s->width != si.width || s->height != si.height) {
1688             int err;
1689
1690             av_log(s->avctx, AV_LOG_WARNING, "Changing dimensions to %dx%d\n",
1691                    si.width, si.height);
1692
1693             if (av_image_check_size(si.width, si.height, 0, s->avctx))
1694                 return AVERROR_INVALIDDATA;
1695
1696             s->avctx->sample_aspect_ratio = update_sar(
1697                 s->width, s->height, s->avctx->sample_aspect_ratio,
1698                 si.width, si.height);
1699             s->width  = si.width;
1700             s->height = si.height;
1701
1702             err = ff_set_dimensions(s->avctx, s->width, s->height);
1703             if (err < 0)
1704                 return err;
1705
1706             if ((err = ff_MPV_common_frame_size_change(s)) < 0)
1707                 return err;
1708             if ((err = rv34_decoder_realloc(r)) < 0)
1709                 return err;
1710         }
1711         s->pict_type = si.type ? si.type : AV_PICTURE_TYPE_I;
1712         if (ff_MPV_frame_start(s, s->avctx) < 0)
1713             return -1;
1714         ff_mpeg_er_frame_start(s);
1715         if (!r->tmp_b_block_base) {
1716             int i;
1717
1718             r->tmp_b_block_base = av_malloc(s->linesize * 48);
1719             for (i = 0; i < 2; i++)
1720                 r->tmp_b_block_y[i] = r->tmp_b_block_base
1721                                       + i * 16 * s->linesize;
1722             for (i = 0; i < 4; i++)
1723                 r->tmp_b_block_uv[i] = r->tmp_b_block_base + 32 * s->linesize
1724                                        + (i >> 1) * 8 * s->uvlinesize
1725                                        + (i &  1) * 16;
1726         }
1727         r->cur_pts = si.pts;
1728         if (s->pict_type != AV_PICTURE_TYPE_B) {
1729             r->last_pts = r->next_pts;
1730             r->next_pts = r->cur_pts;
1731         } else {
1732             int refdist = GET_PTS_DIFF(r->next_pts, r->last_pts);
1733             int dist0   = GET_PTS_DIFF(r->cur_pts,  r->last_pts);
1734             int dist1   = GET_PTS_DIFF(r->next_pts, r->cur_pts);
1735
1736             if(!refdist){
1737                 r->mv_weight1 = r->mv_weight2 = r->weight1 = r->weight2 = 8192;
1738                 r->scaled_weight = 0;
1739             }else{
1740                 r->mv_weight1 = (dist0 << 14) / refdist;
1741                 r->mv_weight2 = (dist1 << 14) / refdist;
1742                 if((r->mv_weight1|r->mv_weight2) & 511){
1743                     r->weight1 = r->mv_weight1;
1744                     r->weight2 = r->mv_weight2;
1745                     r->scaled_weight = 0;
1746                 }else{
1747                     r->weight1 = r->mv_weight1 >> 9;
1748                     r->weight2 = r->mv_weight2 >> 9;
1749                     r->scaled_weight = 1;
1750                 }
1751             }
1752         }
1753         s->mb_x = s->mb_y = 0;
1754         ff_thread_finish_setup(s->avctx);
1755     } else if (HAVE_THREADS &&
1756                (s->avctx->active_thread_type & FF_THREAD_FRAME)) {
1757         av_log(s->avctx, AV_LOG_ERROR, "Decoder needs full frames in frame "
1758                "multithreading mode (start MB is %d).\n", si.start);
1759         return AVERROR_INVALIDDATA;
1760     }
1761
1762     for(i = 0; i < slice_count; i++){
1763         int offset = get_slice_offset(avctx, slices_hdr, i);
1764         int size;
1765         if(i+1 == slice_count)
1766             size = buf_size - offset;
1767         else
1768             size = get_slice_offset(avctx, slices_hdr, i+1) - offset;
1769
1770         if(offset < 0 || offset > buf_size){
1771             av_log(avctx, AV_LOG_ERROR, "Slice offset is invalid\n");
1772             break;
1773         }
1774
1775         r->si.end = s->mb_width * s->mb_height;
1776         s->mb_num_left = r->s.mb_x + r->s.mb_y*r->s.mb_width - r->si.start;
1777
1778         if(i+1 < slice_count){
1779             if (get_slice_offset(avctx, slices_hdr, i+1) < 0 ||
1780                 get_slice_offset(avctx, slices_hdr, i+1) > buf_size) {
1781                 av_log(avctx, AV_LOG_ERROR, "Slice offset is invalid\n");
1782                 break;
1783             }
1784             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);
1785             if(r->parse_slice_header(r, &r->s.gb, &si) < 0){
1786                 if(i+2 < slice_count)
1787                     size = get_slice_offset(avctx, slices_hdr, i+2) - offset;
1788                 else
1789                     size = buf_size - offset;
1790             }else
1791                 r->si.end = si.start;
1792         }
1793         if (size < 0 || size > buf_size - offset) {
1794             av_log(avctx, AV_LOG_ERROR, "Slice size is invalid\n");
1795             break;
1796         }
1797         last = rv34_decode_slice(r, r->si.end, buf + offset, size);
1798         if(last)
1799             break;
1800     }
1801
1802     if (s->current_picture_ptr) {
1803         if (last) {
1804             if(r->loop_filter)
1805                 r->loop_filter(r, s->mb_height - 1);
1806
1807             ret = finish_frame(avctx, pict);
1808             if (ret < 0)
1809                 return ret;
1810             *got_picture_ptr = ret;
1811         } else if (HAVE_THREADS &&
1812                    (s->avctx->active_thread_type & FF_THREAD_FRAME)) {
1813             av_log(avctx, AV_LOG_INFO, "marking unfished frame as finished\n");
1814             /* always mark the current frame as finished, frame-mt supports
1815              * only complete frames */
1816             ff_er_frame_end(&s->er);
1817             ff_MPV_frame_end(s);
1818             s->mb_num_left = 0;
1819             ff_thread_report_progress(&s->current_picture_ptr->tf, INT_MAX, 0);
1820             return AVERROR_INVALIDDATA;
1821         }
1822     }
1823
1824     return avpkt->size;
1825 }
1826
1827 av_cold int ff_rv34_decode_end(AVCodecContext *avctx)
1828 {
1829     RV34DecContext *r = avctx->priv_data;
1830
1831     ff_MPV_common_end(&r->s);
1832     rv34_decoder_free(r);
1833
1834     return 0;
1835 }