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