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