annotate rv34.c @ 6106:7185e3bb0614 libavcodec

RV30 thirdpel motion compensation support
author kostya
date Fri, 04 Jan 2008 17:50:45 +0000
parents a2b438bcb1d2
children bc59962f70b9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6026
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1 /*
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
2 * RV30/40 decoder common data
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
3 * Copyright (c) 2007 Mike Melanson, Konstantin Shishkov
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
4 *
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
5 * This file is part of FFmpeg.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
6 *
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
11 *
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
15 * Lesser General Public License for more details.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
16 *
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
20 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
21
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
22 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
23 * @file rv34.c
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
24 * RV30/40 decoder common data
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
25 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
26
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
27 #include "avcodec.h"
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
28 #include "dsputil.h"
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
29 #include "mpegvideo.h"
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
30 #include "golomb.h"
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
31 #include "rectangle.h"
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
32
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
33 #include "rv34vlc.h"
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
34 #include "rv34data.h"
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
35 #include "rv34.h"
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
36
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
37 //#define DEBUG
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
38
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
39 /** translation of RV30/40 macroblock types to lavc ones */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
40 static const int rv34_mb_type_to_lavc[12] = {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
41 MB_TYPE_INTRA,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
42 MB_TYPE_INTRA16x16,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
43 MB_TYPE_16x16 | MB_TYPE_L0,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
44 MB_TYPE_8x8 | MB_TYPE_L0,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
45 MB_TYPE_16x16 | MB_TYPE_L0,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
46 MB_TYPE_16x16 | MB_TYPE_L1,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
47 MB_TYPE_SKIP,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
48 MB_TYPE_DIRECT2 | MB_TYPE_16x16,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
49 MB_TYPE_16x8 | MB_TYPE_L0,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
50 MB_TYPE_8x16 | MB_TYPE_L0,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
51 MB_TYPE_16x16 | MB_TYPE_L0L1,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
52 MB_TYPE_16x16 | MB_TYPE_L0
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
53 };
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
54
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
55
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
56 static RV34VLC intra_vlcs[NUM_INTRA_TABLES], inter_vlcs[NUM_INTER_TABLES];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
57
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
58 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
59 * @defgroup vlc RV30/40 VLC generating functions
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
60 * @{
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
61 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
62
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
63 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
64 * Generate VLC from codeword lengths.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
65 * @param bits codeword lengths (zeroes are accepted)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
66 * @param size length of input data
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
67 * @param insyms symbols for input codes (NULL for default ones)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
68 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
69 static void rv34_gen_vlc(const uint8_t *bits, int size, VLC *vlc, const uint8_t *insyms)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
70 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
71 int i;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
72 int counts[17] = {0}, codes[17];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
73 uint16_t cw[size], syms[size];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
74 uint8_t bits2[size];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
75 int maxbits = 0, realsize = 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
76
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
77 for(i = 0; i < size; i++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
78 if(bits[i]){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
79 bits2[realsize] = bits[i];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
80 syms[realsize] = insyms ? insyms[i] : i;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
81 realsize++;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
82 maxbits = FFMAX(maxbits, bits[i]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
83 counts[bits[i]]++;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
84 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
85 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
86
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
87 codes[0] = 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
88 for(i = 0; i < 16; i++)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
89 codes[i+1] = (codes[i] + counts[i]) << 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
90 for(i = 0; i < realsize; i++)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
91 cw[i] = codes[bits2[i]]++;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
92
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
93 init_vlc_sparse(vlc, FFMIN(maxbits, 9), realsize,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
94 bits2, 1, 1,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
95 cw, 2, 2,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
96 syms, 2, 2, INIT_VLC_USE_STATIC);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
97 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
98
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
99 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
100 * Initialize all tables.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
101 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
102 static void rv34_init_tables()
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
103 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
104 int i, j, k;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
105
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
106 for(i = 0; i < NUM_INTRA_TABLES; i++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
107 for(j = 0; j < 2; j++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
108 rv34_gen_vlc(rv34_table_intra_cbppat [i][j], CBPPAT_VLC_SIZE, &intra_vlcs[i].cbppattern[j], NULL);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
109 rv34_gen_vlc(rv34_table_intra_secondpat[i][j], OTHERBLK_VLC_SIZE, &intra_vlcs[i].second_pattern[j], NULL);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
110 rv34_gen_vlc(rv34_table_intra_thirdpat [i][j], OTHERBLK_VLC_SIZE, &intra_vlcs[i].third_pattern[j], NULL);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
111 for(k = 0; k < 4; k++)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
112 rv34_gen_vlc(rv34_table_intra_cbp[i][j+k*2], CBP_VLC_SIZE, &intra_vlcs[i].cbp[j][k], rv34_cbp_code);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
113 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
114 for(j = 0; j < 4; j++)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
115 rv34_gen_vlc(rv34_table_intra_firstpat[i][j], FIRSTBLK_VLC_SIZE, &intra_vlcs[i].first_pattern[j], NULL);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
116 rv34_gen_vlc(rv34_intra_coeff[i], COEFF_VLC_SIZE, &intra_vlcs[i].coefficient, NULL);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
117 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
118
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
119 for(i = 0; i < NUM_INTER_TABLES; i++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
120 rv34_gen_vlc(rv34_inter_cbppat[i], CBPPAT_VLC_SIZE, &inter_vlcs[i].cbppattern[0], NULL);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
121 for(j = 0; j < 4; j++)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
122 rv34_gen_vlc(rv34_inter_cbp[i][j], CBP_VLC_SIZE, &inter_vlcs[i].cbp[0][j], rv34_cbp_code);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
123 for(j = 0; j < 2; j++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
124 rv34_gen_vlc(rv34_table_inter_firstpat [i][j], FIRSTBLK_VLC_SIZE, &inter_vlcs[i].first_pattern[j], NULL);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
125 rv34_gen_vlc(rv34_table_inter_secondpat[i][j], OTHERBLK_VLC_SIZE, &inter_vlcs[i].second_pattern[j], NULL);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
126 rv34_gen_vlc(rv34_table_inter_thirdpat [i][j], OTHERBLK_VLC_SIZE, &inter_vlcs[i].third_pattern[j], NULL);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
127 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
128 rv34_gen_vlc(rv34_inter_coeff[i], COEFF_VLC_SIZE, &inter_vlcs[i].coefficient, NULL);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
129 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
130 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
131
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
132 /** @} */ // vlc group
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
133
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
134
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
135 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
136 * @defgroup transform RV30/40 inverse transform functions
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
137 * @{
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
138 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
139
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
140 static av_always_inline void rv34_row_transform(int temp[16], DCTELEM *block)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
141 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
142 int i;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
143
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
144 for(i=0; i<4; i++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
145 const int z0= 13*(block[i+8*0] + block[i+8*2]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
146 const int z1= 13*(block[i+8*0] - block[i+8*2]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
147 const int z2= 7* block[i+8*1] - 17*block[i+8*3];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
148 const int z3= 17* block[i+8*1] + 7*block[i+8*3];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
149
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
150 temp[4*i+0]= z0+z3;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
151 temp[4*i+1]= z1+z2;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
152 temp[4*i+2]= z1-z2;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
153 temp[4*i+3]= z0-z3;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
154 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
155 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
156
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
157 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
158 * Real Video 3.0/4.0 inverse transform
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
159 * Code is almost the same as in SVQ3, only scaling is different.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
160 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
161 static void rv34_inv_transform(DCTELEM *block){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
162 int temp[16];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
163 int i;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
164
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
165 rv34_row_transform(temp, block);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
166
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
167 for(i=0; i<4; i++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
168 const int z0= 13*(temp[4*0+i] + temp[4*2+i]) + 0x200;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
169 const int z1= 13*(temp[4*0+i] - temp[4*2+i]) + 0x200;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
170 const int z2= 7* temp[4*1+i] - 17*temp[4*3+i];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
171 const int z3= 17* temp[4*1+i] + 7*temp[4*3+i];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
172
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
173 block[i*8+0]= (z0 + z3)>>10;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
174 block[i*8+1]= (z1 + z2)>>10;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
175 block[i*8+2]= (z1 - z2)>>10;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
176 block[i*8+3]= (z0 - z3)>>10;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
177 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
178
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
179 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
180
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
181 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
182 * RealVideo 3.0/4.0 inverse transform for DC block
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
183 *
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
184 * Code is almost the same as rv34_inv_transform()
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
185 * but final coefficients are multiplied by 1.5 and have no rounding.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
186 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
187 static void rv34_inv_transform_noround(DCTELEM *block){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
188 int temp[16];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
189 int i;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
190
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
191 rv34_row_transform(temp, block);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
192
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
193 for(i=0; i<4; i++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
194 const int z0= 13*(temp[4*0+i] + temp[4*2+i]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
195 const int z1= 13*(temp[4*0+i] - temp[4*2+i]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
196 const int z2= 7* temp[4*1+i] - 17*temp[4*3+i];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
197 const int z3= 17* temp[4*1+i] + 7*temp[4*3+i];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
198
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
199 block[i*8+0]= ((z0 + z3)*3)>>11;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
200 block[i*8+1]= ((z1 + z2)*3)>>11;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
201 block[i*8+2]= ((z1 - z2)*3)>>11;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
202 block[i*8+3]= ((z0 - z3)*3)>>11;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
203 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
204
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
205 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
206
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
207 /** @} */ // transform
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
208
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
209
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
210 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
211 * @defgroup block RV30/40 4x4 block decoding functions
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
212 * @{
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
213 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
214
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
215 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
216 * Decode coded block pattern.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
217 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
218 static int rv34_decode_cbp(GetBitContext *gb, RV34VLC *vlc, int table)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
219 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
220 int pattern, code, cbp=0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
221 int ones;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
222 static const int cbp_masks[3] = {0x100000, 0x010000, 0x110000};
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
223 static const int shifts[4] = { 0, 2, 8, 10 };
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
224 int *curshift = shifts;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
225 int i, t, mask;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
226
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
227 code = get_vlc2(gb, vlc->cbppattern[table].table, 9, 2);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
228 pattern = code & 0xF;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
229 code >>= 4;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
230
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
231 ones = rv34_count_ones[pattern];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
232
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
233 for(mask = 8; mask; mask >>= 1, curshift++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
234 if(pattern & mask)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
235 cbp |= get_vlc2(gb, vlc->cbp[table][ones].table, vlc->cbp[table][ones].bits, 1) << curshift[0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
236 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
237
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
238 for(i = 0; i < 4; i++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
239 t = modulo_three_table[code][i];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
240 if(t == 1)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
241 cbp |= cbp_masks[get_bits1(gb)] << i;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
242 if(t == 2)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
243 cbp |= cbp_masks[2] << i;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
244 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
245 return cbp;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
246 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
247
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
248 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
249 * Get one coefficient value from the bistream and store it.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
250 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
251 static inline void decode_coeff(DCTELEM *dst, int coef, int esc, GetBitContext *gb, VLC* vlc)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
252 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
253 if(coef){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
254 if(coef == esc){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
255 coef = get_vlc2(gb, vlc->table, 9, 2);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
256 if(coef > 23){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
257 coef -= 23;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
258 coef = 22 + ((1 << coef) | get_bits(gb, coef));
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
259 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
260 coef += esc;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
261 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
262 if(get_bits1(gb))
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
263 coef = -coef;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
264 *dst = coef;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
265 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
266 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
267
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
268 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
269 * Decode 2x2 subblock of coefficients.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
270 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
271 static inline void decode_subblock(DCTELEM *dst, int code, const int is_block2, GetBitContext *gb, VLC *vlc)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
272 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
273 int coeffs[4];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
274
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
275 coeffs[0] = modulo_three_table[code][0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
276 coeffs[1] = modulo_three_table[code][1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
277 coeffs[2] = modulo_three_table[code][2];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
278 coeffs[3] = modulo_three_table[code][3];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
279 decode_coeff(dst , coeffs[0], 3, gb, vlc);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
280 if(is_block2){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
281 decode_coeff(dst+8, coeffs[1], 2, gb, vlc);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
282 decode_coeff(dst+1, coeffs[2], 2, gb, vlc);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
283 }else{
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
284 decode_coeff(dst+1, coeffs[1], 2, gb, vlc);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
285 decode_coeff(dst+8, coeffs[2], 2, gb, vlc);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
286 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
287 decode_coeff(dst+9, coeffs[3], 2, gb, vlc);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
288 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
289
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
290 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
291 * Decode coefficients for 4x4 block.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
292 *
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
293 * This is done by filling 2x2 subblocks with decoded coefficients
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
294 * in this order (the same for subblocks and subblock coefficients):
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
295 * o--o
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
296 * /
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
297 * /
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
298 * o--o
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
299 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
300
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
301 static inline void rv34_decode_block(DCTELEM *dst, GetBitContext *gb, RV34VLC *rvlc, int fc, int sc)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
302 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
303 int code, pattern;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
304
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
305 code = get_vlc2(gb, rvlc->first_pattern[fc].table, 9, 2);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
306
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
307 pattern = code & 0x7;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
308
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
309 code >>= 3;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
310 decode_subblock(dst, code, 0, gb, &rvlc->coefficient);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
311
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
312 if(pattern & 4){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
313 code = get_vlc2(gb, rvlc->second_pattern[sc].table, 9, 2);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
314 decode_subblock(dst + 2, code, 0, gb, &rvlc->coefficient);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
315 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
316 if(pattern & 2){ // Looks like coefficients 1 and 2 are swapped for this block
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
317 code = get_vlc2(gb, rvlc->second_pattern[sc].table, 9, 2);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
318 decode_subblock(dst + 8*2, code, 1, gb, &rvlc->coefficient);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
319 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
320 if(pattern & 1){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
321 code = get_vlc2(gb, rvlc->third_pattern[sc].table, 9, 2);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
322 decode_subblock(dst + 8*2+2, code, 0, gb, &rvlc->coefficient);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
323 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
324
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
325 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
326
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
327 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
328 * Dequantize ordinary 4x4 block.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
329 * @todo optimize
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
330 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
331 static inline void rv34_dequant4x4(DCTELEM *block, int Qdc, int Q)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
332 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
333 int i, j;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
334
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
335 block[0] = (block[0] * Qdc + 8) >> 4;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
336 for(i = 0; i < 4; i++)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
337 for(j = !i; j < 4; j++)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
338 block[j + i*8] = (block[j + i*8] * Q + 8) >> 4;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
339 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
340
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
341 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
342 * Dequantize 4x4 block of DC values for 16x16 macroblock.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
343 * @todo optimize
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
344 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
345 static inline void rv34_dequant4x4_16x16(DCTELEM *block, int Qdc, int Q)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
346 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
347 int i;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
348
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
349 for(i = 0; i < 3; i++)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
350 block[rv34_dezigzag[i]] = (block[rv34_dezigzag[i]] * Qdc + 8) >> 4;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
351 for(; i < 16; i++)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
352 block[rv34_dezigzag[i]] = (block[rv34_dezigzag[i]] * Q + 8) >> 4;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
353 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
354 /** @} */ //block functions
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
355
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
356
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
357 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
358 * @defgroup bitstream RV30/40 bitstream parsing
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
359 * @{
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
360 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
361
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
362 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
363 * Decode starting slice position.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
364 * @todo Maybe replace with ff_h263_decode_mba() ?
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
365 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
366 int ff_rv34_get_start_offset(GetBitContext *gb, int mb_size)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
367 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
368 int i;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
369 for(i = 0; i < 5; i++)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
370 if(rv34_mb_max_sizes[i] > mb_size)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
371 break;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
372 return rv34_mb_bits_sizes[i];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
373 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
374
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
375 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
376 * Select VLC set for decoding from current quantizer, modifier and frame type.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
377 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
378 static inline RV34VLC* choose_vlc_set(int quant, int mod, int type)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
379 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
380 if(mod == 2 && quant < 19) quant += 10;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
381 else if(mod && quant < 26) quant += 5;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
382 return type ? &inter_vlcs[rv34_quant_to_vlc_set[1][av_clip(quant, 0, 30)]]
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
383 : &intra_vlcs[rv34_quant_to_vlc_set[0][av_clip(quant, 0, 30)]];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
384 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
385
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
386 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
387 * Decode quantizer difference and return modified quantizer.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
388 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
389 static inline int rv34_decode_dquant(GetBitContext *gb, int quant)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
390 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
391 if(get_bits1(gb))
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
392 return rv34_dquant_tab[get_bits1(gb)][quant];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
393 else
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
394 return get_bits(gb, 5);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
395 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
396
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
397 /** @} */ //bitstream functions
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
398
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
399 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
400 * @defgroup mv motion vector related code (prediction, reconstruction, motion compensation)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
401 * @{
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
402 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
403
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
404 /** macroblock partition width in 8x8 blocks */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
405 static const uint8_t part_sizes_w[RV34_MB_TYPES] = { 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2 };
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
406
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
407 /** macroblock partition height in 8x8 blocks */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
408 static const uint8_t part_sizes_h[RV34_MB_TYPES] = { 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2 };
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
409
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
410 /** availability index for subblocks */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
411 static const uint8_t avail_indexes[4] = { 5, 6, 9, 10 };
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
412
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
413 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
414 * motion vector prediction
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
415 *
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
416 * Motion prediction performed for the block by using median prediction of
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
417 * motion vectors from the left, top and right top blocks but in corner cases
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
418 * some other vectors may be used instead.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
419 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
420 static void rv34_pred_mv(RV34DecContext *r, int block_type, int subblock_no, int dmv_no)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
421 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
422 MpegEncContext *s = &r->s;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
423 int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
424 int A[2] = {0}, B[2], C[2];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
425 int i, j;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
426 int mx, my;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
427 int avail_index = avail_indexes[subblock_no];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
428 int c_off = part_sizes_w[block_type];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
429
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
430 mv_pos += (subblock_no & 1) + (subblock_no >> 1)*s->b8_stride;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
431 if(subblock_no == 3)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
432 c_off = -1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
433
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
434 if(r->avail_cache[avail_index - 1]){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
435 A[0] = s->current_picture_ptr->motion_val[0][mv_pos-1][0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
436 A[1] = s->current_picture_ptr->motion_val[0][mv_pos-1][1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
437 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
438 if(r->avail_cache[avail_index - 4]){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
439 B[0] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride][0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
440 B[1] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride][1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
441 }else{
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
442 B[0] = A[0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
443 B[1] = A[1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
444 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
445 if(!r->avail_cache[avail_index - 4 + c_off]){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
446 if(r->avail_cache[avail_index - 4] && (r->avail_cache[avail_index - 1] || r->rv30)){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
447 C[0] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride-1][0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
448 C[1] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride-1][1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
449 }else{
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
450 C[0] = A[0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
451 C[1] = A[1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
452 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
453 }else{
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
454 C[0] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride+c_off][0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
455 C[1] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride+c_off][1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
456 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
457 mx = mid_pred(A[0], B[0], C[0]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
458 my = mid_pred(A[1], B[1], C[1]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
459 mx += r->dmv[dmv_no][0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
460 my += r->dmv[dmv_no][1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
461 for(j = 0; j < part_sizes_h[block_type]; j++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
462 for(i = 0; i < part_sizes_w[block_type]; i++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
463 s->current_picture_ptr->motion_val[0][mv_pos + i + j*s->b8_stride][0] = mx;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
464 s->current_picture_ptr->motion_val[0][mv_pos + i + j*s->b8_stride][1] = my;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
465 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
466 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
467 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
468
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
469 /**
6096
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
470 * Calculate motion vector component that should be added for direct blocks.
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
471 */
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
472 static int calc_add_mv(MpegEncContext *s, int dir, int component)
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
473 {
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
474 int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
475 int sum;
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
476
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
477 sum = (s->next_picture_ptr->motion_val[0][mv_pos][component] +
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
478 s->next_picture_ptr->motion_val[0][mv_pos + 1][component] +
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
479 s->next_picture_ptr->motion_val[0][mv_pos + s->b8_stride][component] +
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
480 s->next_picture_ptr->motion_val[0][mv_pos + s->b8_stride + 1][component]) >> 2;
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
481 return dir ? -(sum >> 1) : ((sum + 1) >> 1);
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
482 }
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
483
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
484 /**
6026
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
485 * Predict motion vector for B-frame macroblock.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
486 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
487 static inline void rv34_pred_b_vector(int A[2], int B[2], int C[2],
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
488 int A_avail, int B_avail, int C_avail,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
489 int *mx, int *my)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
490 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
491 if(A_avail + B_avail + C_avail != 3){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
492 *mx = A[0] + B[0] + C[0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
493 *my = A[1] + B[1] + C[1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
494 if(A_avail + B_avail + C_avail == 2){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
495 *mx /= 2;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
496 *my /= 2;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
497 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
498 }else{
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
499 *mx = mid_pred(A[0], B[0], C[0]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
500 *my = mid_pred(A[1], B[1], C[1]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
501 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
502 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
503
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
504 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
505 * motion vector prediction for B-frames
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
506 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
507 static void rv34_pred_mv_b(RV34DecContext *r, int block_type, int dir)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
508 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
509 MpegEncContext *s = &r->s;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
510 int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
511 int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
512 int A[2], B[2], C[2];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
513 int has_A = 0, has_B = 0, has_C = 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
514 int mx, my;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
515 int i, j;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
516 Picture *cur_pic = s->current_picture_ptr;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
517 const int mask = dir ? MB_TYPE_L1 : MB_TYPE_L0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
518 int type = cur_pic->mb_type[mb_pos];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
519
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
520 memset(A, 0, sizeof(A));
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
521 memset(B, 0, sizeof(B));
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
522 memset(C, 0, sizeof(C));
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
523 if((r->avail_cache[5-1] & type) & mask){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
524 A[0] = cur_pic->motion_val[dir][mv_pos - 1][0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
525 A[1] = cur_pic->motion_val[dir][mv_pos - 1][1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
526 has_A = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
527 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
528 if((r->avail_cache[5-4] & type) & mask){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
529 B[0] = cur_pic->motion_val[dir][mv_pos - s->b8_stride][0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
530 B[1] = cur_pic->motion_val[dir][mv_pos - s->b8_stride][1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
531 has_B = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
532 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
533 if((r->avail_cache[5-2] & type) & mask){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
534 C[0] = cur_pic->motion_val[dir][mv_pos - s->b8_stride + 2][0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
535 C[1] = cur_pic->motion_val[dir][mv_pos - s->b8_stride + 2][1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
536 has_C = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
537 }else if((s->mb_x+1) == s->mb_width && (r->avail_cache[5-5] & type) & mask){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
538 C[0] = cur_pic->motion_val[dir][mv_pos - s->b8_stride - 1][0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
539 C[1] = cur_pic->motion_val[dir][mv_pos - s->b8_stride - 1][1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
540 has_C = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
541 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
542
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
543 rv34_pred_b_vector(A, B, C, has_A, has_B, has_C, &mx, &my);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
544
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
545 mx += r->dmv[dir][0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
546 my += r->dmv[dir][1];
6096
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
547
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
548 if(block_type == RV34_MB_B_DIRECT){
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
549 mx += calc_add_mv(s, dir, 0);
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
550 my += calc_add_mv(s, dir, 1);
89140b93ae09 Direct blocks should use motion vectors from the second reference frame
kostya
parents: 6036
diff changeset
551 }
6026
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
552 for(j = 0; j < 2; j++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
553 for(i = 0; i < 2; i++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
554 cur_pic->motion_val[dir][mv_pos + i + j*s->b8_stride][0] = mx;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
555 cur_pic->motion_val[dir][mv_pos + i + j*s->b8_stride][1] = my;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
556 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
557 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
558 if(block_type == RV34_MB_B_BACKWARD || block_type == RV34_MB_B_FORWARD)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
559 fill_rectangle(cur_pic->motion_val[!dir][mv_pos], 2, 2, s->b8_stride, 0, 4);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
560 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
561
6106
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
562 static const int chroma_coeffs[3] = { 8, 5, 3 };
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
563
6026
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
564 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
565 * generic motion compensation function
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
566 *
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
567 * @param r decoder context
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
568 * @param block_type type of the current block
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
569 * @param xoff horizontal offset from the start of the current block
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
570 * @param yoff vertical offset from the start of the current block
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
571 * @param mv_off offset to the motion vector information
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
572 * @param width width of the current partition in 8x8 blocks
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
573 * @param height height of the current partition in 8x8 blocks
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
574 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
575 static inline void rv34_mc(RV34DecContext *r, const int block_type,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
576 const int xoff, const int yoff, int mv_off,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
577 const int width, const int height, int dir,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
578 const int thirdpel,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
579 qpel_mc_func (*qpel_mc)[16],
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
580 h264_chroma_mc_func (*chroma_mc))
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
581 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
582 MpegEncContext *s = &r->s;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
583 uint8_t *Y, *U, *V, *srcY, *srcU, *srcV;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
584 int dxy, mx, my, uvmx, uvmy, src_x, src_y, uvsrc_x, uvsrc_y;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
585 int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride + mv_off;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
586 int is16x16 = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
587
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
588 if(thirdpel){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
589 int lx, ly;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
590
6106
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
591 mx = (s->current_picture_ptr->motion_val[dir][mv_pos][0] + (3 << 24)) / 3 - (1 << 24);
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
592 my = (s->current_picture_ptr->motion_val[dir][mv_pos][1] + (3 << 24)) / 3 - (1 << 24);
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
593 lx = (s->current_picture_ptr->motion_val[dir][mv_pos][0] + (3 << 24)) % 3;
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
594 ly = (s->current_picture_ptr->motion_val[dir][mv_pos][1] + (3 << 24)) % 3;
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
595 dxy = ly*4 + lx;
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
596 uvmx = chroma_coeffs[(3*(mx&1) + lx) >> 1];
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
597 uvmy = chroma_coeffs[(3*(my&1) + ly) >> 1];
6026
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
598 }else{
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
599 mx = s->current_picture_ptr->motion_val[dir][mv_pos][0] >> 2;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
600 my = s->current_picture_ptr->motion_val[dir][mv_pos][1] >> 2;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
601 dxy = ((my & 3) << 2) | (mx & 3);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
602 uvmx = mx & 6;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
603 uvmy = my & 6;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
604 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
605 srcY = dir ? s->next_picture_ptr->data[0] : s->last_picture_ptr->data[0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
606 srcU = dir ? s->next_picture_ptr->data[1] : s->last_picture_ptr->data[1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
607 srcV = dir ? s->next_picture_ptr->data[2] : s->last_picture_ptr->data[2];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
608 src_x = s->mb_x * 16 + xoff + mx;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
609 src_y = s->mb_y * 16 + yoff + my;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
610 uvsrc_x = s->mb_x * 8 + (xoff >> 1) + (mx >> 1);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
611 uvsrc_y = s->mb_y * 8 + (yoff >> 1) + (my >> 1);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
612 srcY += src_y * s->linesize + src_x;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
613 srcU += uvsrc_y * s->uvlinesize + uvsrc_x;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
614 srcV += uvsrc_y * s->uvlinesize + uvsrc_x;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
615 if( (unsigned)(src_x - !!(mx&3)*2) > s->h_edge_pos - !!(mx&3)*2 - (width <<3) - 3
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
616 || (unsigned)(src_y - !!(my&3)*2) > s->v_edge_pos - !!(my&3)*2 - (height<<3) - 3){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
617 uint8_t *uvbuf= s->edge_emu_buffer + 20 * s->linesize;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
618
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
619 srcY -= 2 + 2*s->linesize;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
620 ff_emulated_edge_mc(s->edge_emu_buffer, srcY, s->linesize, (width<<3)+4, (height<<3)+4,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
621 src_x - 2, src_y - 2, s->h_edge_pos, s->v_edge_pos);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
622 srcY = s->edge_emu_buffer + 2 + 2*s->linesize;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
623 ff_emulated_edge_mc(uvbuf , srcU, s->uvlinesize, (width<<2)+1, (height<<2)+1,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
624 uvsrc_x, uvsrc_y, s->h_edge_pos >> 1, s->v_edge_pos >> 1);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
625 ff_emulated_edge_mc(uvbuf + 16, srcV, s->uvlinesize, (width<<2)+1, (height<<2)+1,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
626 uvsrc_x, uvsrc_y, s->h_edge_pos >> 1, s->v_edge_pos >> 1);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
627 srcU = uvbuf;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
628 srcV = uvbuf + 16;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
629 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
630 Y = s->dest[0] + xoff + yoff *s->linesize;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
631 U = s->dest[1] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
632 V = s->dest[2] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
633
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
634 if(block_type == RV34_MB_P_16x8){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
635 qpel_mc[1][dxy](Y, srcY, s->linesize);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
636 Y += 8;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
637 srcY += 8;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
638 }else if(block_type == RV34_MB_P_8x16){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
639 qpel_mc[1][dxy](Y, srcY, s->linesize);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
640 Y += 8 * s->linesize;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
641 srcY += 8 * s->linesize;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
642 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
643 is16x16 = (block_type != RV34_MB_P_8x8) && (block_type != RV34_MB_P_16x8) && (block_type != RV34_MB_P_8x16);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
644 qpel_mc[!is16x16][dxy](Y, srcY, s->linesize);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
645 chroma_mc[2-width] (U, srcU, s->uvlinesize, height*4, uvmx, uvmy);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
646 chroma_mc[2-width] (V, srcV, s->uvlinesize, height*4, uvmx, uvmy);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
647 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
648
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
649 static void rv34_mc_1mv(RV34DecContext *r, const int block_type,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
650 const int xoff, const int yoff, int mv_off,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
651 const int width, const int height, int dir)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
652 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
653 rv34_mc(r, block_type, xoff, yoff, mv_off, width, height, dir, r->rv30,
6106
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
654 r->rv30 ? r->s.dsp.put_rv30_tpel_pixels_tab
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
655 : r->s.dsp.put_h264_qpel_pixels_tab,
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
656 r->s.dsp.put_h264_chroma_pixels_tab);
6026
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
657 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
658
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
659 static void rv34_mc_2mv(RV34DecContext *r, const int block_type)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
660 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
661 rv34_mc(r, block_type, 0, 0, 0, 2, 2, 0, r->rv30,
6106
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
662 r->rv30 ? r->s.dsp.put_rv30_tpel_pixels_tab
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
663 : r->s.dsp.put_h264_qpel_pixels_tab,
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
664 r->s.dsp.put_h264_chroma_pixels_tab);
6026
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
665 rv34_mc(r, block_type, 0, 0, 0, 2, 2, 1, r->rv30,
6106
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
666 r->rv30 ? r->s.dsp.avg_rv30_tpel_pixels_tab
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
667 : r->s.dsp.avg_h264_qpel_pixels_tab,
7185e3bb0614 RV30 thirdpel motion compensation support
kostya
parents: 6099
diff changeset
668 r->s.dsp.avg_h264_chroma_pixels_tab);
6026
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
669 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
670
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
671 /** number of motion vectors in each macroblock type */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
672 static const int num_mvs[RV34_MB_TYPES] = { 0, 0, 1, 4, 1, 1, 0, 0, 2, 2, 2, 1 };
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
673
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
674 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
675 * Decode motion vector differences
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
676 * and perform motion vector reconstruction and motion compensation.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
677 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
678 static int rv34_decode_mv(RV34DecContext *r, int block_type)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
679 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
680 MpegEncContext *s = &r->s;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
681 GetBitContext *gb = &s->gb;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
682 int i;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
683
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
684 memset(r->dmv, 0, sizeof(r->dmv));
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
685 for(i = 0; i < num_mvs[block_type]; i++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
686 r->dmv[i][0] = svq3_get_se_golomb(gb);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
687 r->dmv[i][1] = svq3_get_se_golomb(gb);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
688 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
689 switch(block_type){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
690 case RV34_MB_TYPE_INTRA:
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
691 case RV34_MB_TYPE_INTRA16x16:
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
692 fill_rectangle(s->current_picture_ptr->motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], 2, 2, s->b8_stride, 0, 4);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
693 return 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
694 case RV34_MB_SKIP:
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
695 if(s->pict_type == P_TYPE){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
696 fill_rectangle(s->current_picture_ptr->motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], 2, 2, s->b8_stride, 0, 4);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
697 rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, 0);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
698 break;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
699 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
700 case RV34_MB_B_DIRECT:
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
701 rv34_pred_mv_b (r, RV34_MB_B_DIRECT, 0);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
702 rv34_pred_mv_b (r, RV34_MB_B_DIRECT, 1);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
703 rv34_mc_2mv (r, RV34_MB_B_DIRECT);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
704 break;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
705 case RV34_MB_P_16x16:
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
706 case RV34_MB_P_MIX16x16:
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
707 rv34_pred_mv(r, block_type, 0, 0);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
708 rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, 0);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
709 break;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
710 case RV34_MB_B_FORWARD:
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
711 case RV34_MB_B_BACKWARD:
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
712 r->dmv[1][0] = r->dmv[0][0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
713 r->dmv[1][1] = r->dmv[0][1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
714 rv34_pred_mv_b (r, block_type, block_type == RV34_MB_B_BACKWARD);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
715 rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, block_type == RV34_MB_B_BACKWARD);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
716 break;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
717 case RV34_MB_P_16x8:
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
718 case RV34_MB_P_8x16:
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
719 rv34_pred_mv(r, block_type, 0, 0);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
720 rv34_pred_mv(r, block_type, 1 + (block_type == RV34_MB_P_16x8), 1);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
721 if(block_type == RV34_MB_P_16x8){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
722 rv34_mc_1mv(r, block_type, 0, 0, 0, 2, 1, 0);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
723 rv34_mc_1mv(r, block_type, 0, 8, s->b8_stride, 2, 1, 0);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
724 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
725 if(block_type == RV34_MB_P_8x16){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
726 rv34_mc_1mv(r, block_type, 0, 0, 0, 1, 2, 0);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
727 rv34_mc_1mv(r, block_type, 8, 0, 1, 1, 2, 0);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
728 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
729 break;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
730 case RV34_MB_B_BIDIR:
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
731 rv34_pred_mv_b (r, block_type, 0);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
732 rv34_pred_mv_b (r, block_type, 1);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
733 rv34_mc_2mv (r, block_type);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
734 break;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
735 case RV34_MB_P_8x8:
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
736 for(i=0;i< 4;i++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
737 rv34_pred_mv(r, block_type, i, i);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
738 rv34_mc_1mv (r, block_type, (i&1)<<3, (i&2)<<2, (i&1)+(i>>1)*s->b8_stride, 1, 1, 0);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
739 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
740 break;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
741 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
742
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
743 return 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
744 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
745 /** @} */ // mv group
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
746
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
747 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
748 * @defgroup recons Macroblock reconstruction functions
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
749 * @{
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
750 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
751 /** mapping of RV30/40 intra prediction types to standard H.264 types */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
752 static const int ittrans[9] = {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
753 DC_PRED, VERT_PRED, HOR_PRED, DIAG_DOWN_RIGHT_PRED, DIAG_DOWN_LEFT_PRED,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
754 VERT_RIGHT_PRED, VERT_LEFT_PRED, HOR_UP_PRED, HOR_DOWN_PRED,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
755 };
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
756
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
757 /** mapping of RV30/40 intra 16x16 prediction types to standard H.264 types */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
758 static const int ittrans16[4] = {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
759 DC_PRED8x8, VERT_PRED8x8, HOR_PRED8x8, PLANE_PRED8x8,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
760 };
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
761
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
762 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
763 * Perform 4x4 intra prediction.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
764 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
765 static void rv34_pred_4x4_block(RV34DecContext *r, uint8_t *dst, int stride, int itype, int up, int left, int down, int right)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
766 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
767 uint8_t *prev = dst - stride + 4;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
768 uint32_t topleft;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
769
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
770 if(!up && !left)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
771 itype = DC_128_PRED;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
772 else if(!up){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
773 if(itype == VERT_PRED) itype = HOR_PRED;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
774 if(itype == DC_PRED) itype = LEFT_DC_PRED;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
775 }else if(!left){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
776 if(itype == HOR_PRED) itype = VERT_PRED;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
777 if(itype == DC_PRED) itype = TOP_DC_PRED;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
778 if(itype == DIAG_DOWN_LEFT_PRED) itype = DIAG_DOWN_LEFT_PRED_RV40_NODOWN;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
779 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
780 if(!down){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
781 if(itype == DIAG_DOWN_LEFT_PRED) itype = DIAG_DOWN_LEFT_PRED_RV40_NODOWN;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
782 if(itype == HOR_UP_PRED) itype = HOR_UP_PRED_RV40_NODOWN;
6036
ce3b68242317 Correct spatial prediction mode in RV30/40 for vertical left direction
kostya
parents: 6026
diff changeset
783 if(itype == VERT_LEFT_PRED) itype = VERT_LEFT_PRED_RV40_NODOWN;
6026
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
784 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
785 if(!right && up){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
786 topleft = dst[-stride + 3] * 0x01010101;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
787 prev = &topleft;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
788 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
789 r->h.pred4x4[itype](dst, prev, stride);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
790 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
791
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
792 /** add_pixels_clamped for 4x4 block */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
793 static void rv34_add_4x4_block(uint8_t *dst, int stride, DCTELEM block[64], int off)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
794 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
795 int x, y;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
796 for(y = 0; y < 4; y++)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
797 for(x = 0; x < 4; x++)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
798 dst[x + y*stride] = av_clip_uint8(dst[x + y*stride] + block[off + x+y*8]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
799 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
800
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
801 static inline int adjust_pred16(int itype, int up, int left)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
802 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
803 if(!up && !left)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
804 itype = DC_128_PRED8x8;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
805 else if(!up){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
806 if(itype == PLANE_PRED8x8)itype = HOR_PRED8x8;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
807 if(itype == VERT_PRED8x8) itype = HOR_PRED8x8;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
808 if(itype == DC_PRED8x8) itype = LEFT_DC_PRED8x8;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
809 }else if(!left){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
810 if(itype == PLANE_PRED8x8)itype = VERT_PRED8x8;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
811 if(itype == HOR_PRED8x8) itype = VERT_PRED8x8;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
812 if(itype == DC_PRED8x8) itype = TOP_DC_PRED8x8;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
813 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
814 return itype;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
815 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
816
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
817 static void rv34_output_macroblock(RV34DecContext *r, int8_t *intra_types, int cbp, int is16)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
818 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
819 MpegEncContext *s = &r->s;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
820 DSPContext *dsp = &s->dsp;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
821 int i, j;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
822 uint8_t *Y, *U, *V;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
823 int itype;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
824 int avail[6*8] = {0};
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
825 int idx;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
826
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
827 // Set neighbour information.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
828 if(r->avail_cache[0])
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
829 avail[0] = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
830 if(r->avail_cache[1])
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
831 avail[1] = avail[2] = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
832 if(r->avail_cache[2])
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
833 avail[3] = avail[4] = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
834 if(r->avail_cache[3])
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
835 avail[5] = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
836 if(r->avail_cache[4])
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
837 avail[8] = avail[16] = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
838 if(r->avail_cache[8])
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
839 avail[24] = avail[32] = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
840
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
841 Y = s->dest[0];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
842 U = s->dest[1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
843 V = s->dest[2];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
844 if(!is16){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
845 for(j = 0; j < 4; j++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
846 idx = 9 + j*8;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
847 for(i = 0; i < 4; i++, cbp >>= 1, Y += 4, idx++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
848 rv34_pred_4x4_block(r, Y, s->linesize, ittrans[intra_types[i]], avail[idx-8], avail[idx-1], avail[idx+7], avail[idx-7]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
849 avail[idx] = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
850 if(cbp & 1)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
851 rv34_add_4x4_block(Y, s->linesize, s->block[(i>>1)+(j&2)], (i&1)*4+(j&1)*32);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
852 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
853 Y += s->linesize * 4 - 4*4;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
854 intra_types += s->b4_stride;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
855 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
856 intra_types -= s->b4_stride * 4;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
857 fill_rectangle(r->avail_cache + 5, 2, 2, 4, 0, 4);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
858 for(j = 0; j < 2; j++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
859 idx = 5 + j*4;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
860 for(i = 0; i < 2; i++, cbp >>= 1, idx++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
861 rv34_pred_4x4_block(r, U + i*4 + j*4*s->uvlinesize, s->uvlinesize, ittrans[intra_types[i*2+j*2*s->b4_stride]], r->avail_cache[idx-4], r->avail_cache[idx-1], !i && !j, r->avail_cache[idx-3]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
862 rv34_pred_4x4_block(r, V + i*4 + j*4*s->uvlinesize, s->uvlinesize, ittrans[intra_types[i*2+j*2*s->b4_stride]], r->avail_cache[idx-4], r->avail_cache[idx-1], !i && !j, r->avail_cache[idx-3]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
863 r->avail_cache[idx] = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
864 if(cbp & 0x01)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
865 rv34_add_4x4_block(U + i*4 + j*4*s->uvlinesize, s->uvlinesize, s->block[4], i*4+j*32);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
866 if(cbp & 0x10)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
867 rv34_add_4x4_block(V + i*4 + j*4*s->uvlinesize, s->uvlinesize, s->block[5], i*4+j*32);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
868 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
869 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
870 }else{
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
871 itype = ittrans16[intra_types[0]];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
872 itype = adjust_pred16(itype, r->avail_cache[5-4], r->avail_cache[5-1]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
873 r->h.pred16x16[itype](Y, s->linesize);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
874 dsp->add_pixels_clamped(s->block[0], Y, s->current_picture.linesize[0]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
875 dsp->add_pixels_clamped(s->block[1], Y + 8, s->current_picture.linesize[0]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
876 Y += s->current_picture.linesize[0] * 8;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
877 dsp->add_pixels_clamped(s->block[2], Y, s->current_picture.linesize[0]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
878 dsp->add_pixels_clamped(s->block[3], Y + 8, s->current_picture.linesize[0]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
879
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
880 itype = ittrans16[intra_types[0]];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
881 if(itype == PLANE_PRED8x8) itype = DC_PRED8x8;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
882 itype = adjust_pred16(itype, r->avail_cache[5-4], r->avail_cache[5-1]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
883 r->h.pred8x8[itype](U, s->uvlinesize);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
884 dsp->add_pixels_clamped(s->block[4], U, s->uvlinesize);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
885 r->h.pred8x8[itype](V, s->uvlinesize);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
886 dsp->add_pixels_clamped(s->block[5], V, s->uvlinesize);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
887 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
888 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
889
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
890 /** @} */ // recons group
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
891
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
892 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
893 * @addtogroup bitstream
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
894 * Decode macroblock header and return CBP in case of success, -1 otherwise.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
895 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
896 static int rv34_decode_mb_header(RV34DecContext *r, int8_t *intra_types)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
897 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
898 MpegEncContext *s = &r->s;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
899 GetBitContext *gb = &s->gb;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
900 int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
901 int i, t;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
902
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
903 if(!r->si.type){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
904 r->is16 = get_bits1(gb);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
905 if(!r->is16 && !r->rv30){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
906 if(!get_bits1(gb))
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
907 av_log(s->avctx, AV_LOG_ERROR, "Need DQUANT\n");
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
908 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
909 s->current_picture_ptr->mb_type[mb_pos] = r->is16 ? MB_TYPE_INTRA16x16 : MB_TYPE_INTRA;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
910 r->block_type = r->is16 ? RV34_MB_TYPE_INTRA16x16 : RV34_MB_TYPE_INTRA;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
911 }else{
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
912 r->block_type = r->decode_mb_info(r);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
913 if(r->block_type == -1)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
914 return -1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
915 s->current_picture_ptr->mb_type[mb_pos] = rv34_mb_type_to_lavc[r->block_type];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
916 r->mb_type[mb_pos] = r->block_type;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
917 if(r->block_type == RV34_MB_SKIP){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
918 if(s->pict_type == P_TYPE)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
919 r->mb_type[mb_pos] = RV34_MB_P_16x16;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
920 if(s->pict_type == B_TYPE)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
921 r->mb_type[mb_pos] = RV34_MB_B_DIRECT;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
922 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
923 r->is16 = !!IS_INTRA16x16(s->current_picture_ptr->mb_type[mb_pos]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
924 rv34_decode_mv(r, r->block_type);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
925 if(r->block_type == RV34_MB_SKIP){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
926 fill_rectangle(intra_types, 4, 4, s->b4_stride, 0, sizeof(intra_types[0]));
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
927 return 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
928 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
929 r->chroma_vlc = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
930 r->luma_vlc = 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
931 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
932 if(IS_INTRA(s->current_picture_ptr->mb_type[mb_pos])){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
933 if(r->is16){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
934 t = get_bits(gb, 2);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
935 fill_rectangle(intra_types, 4, 4, s->b4_stride, t, sizeof(intra_types[0]));
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
936 r->luma_vlc = 2;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
937 }else{
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
938 if(r->decode_intra_types(r, gb, intra_types) < 0)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
939 return -1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
940 r->luma_vlc = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
941 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
942 r->chroma_vlc = 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
943 r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 0);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
944 }else{
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
945 for(i = 0; i < 16; i++)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
946 intra_types[(i & 3) + (i>>2) * s->b4_stride] = 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
947 r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 1);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
948 if(r->mb_type[mb_pos] == RV34_MB_P_MIX16x16){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
949 r->is16 = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
950 r->chroma_vlc = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
951 r->luma_vlc = 2;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
952 r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 0);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
953 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
954 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
955
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
956 return rv34_decode_cbp(gb, r->cur_vlcs, r->is16);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
957 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
958
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
959 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
960 * @addtogroup recons
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
961 * @{
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
962 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
963 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
964 * mask for retrieving all bits in coded block pattern
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
965 * corresponding to one 8x8 block
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
966 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
967 #define LUMA_CBP_BLOCK_MASK 0x303
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
968
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
969 #define U_CBP_MASK 0x0F0000
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
970 #define V_CBP_MASK 0xF00000
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
971
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
972
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
973 static void rv34_apply_differences(RV34DecContext *r, int cbp)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
974 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
975 static const int shifts[4] = { 0, 2, 8, 10 };
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
976 MpegEncContext *s = &r->s;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
977 int i;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
978
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
979 for(i = 0; i < 4; i++)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
980 if(cbp & (LUMA_CBP_BLOCK_MASK << shifts[i]))
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
981 s->dsp.add_pixels_clamped(s->block[i], s->dest[0] + (i & 1)*8 + (i&2)*4*s->linesize, s->linesize);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
982 if(cbp & U_CBP_MASK)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
983 s->dsp.add_pixels_clamped(s->block[4], s->dest[1], s->uvlinesize);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
984 if(cbp & V_CBP_MASK)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
985 s->dsp.add_pixels_clamped(s->block[5], s->dest[2], s->uvlinesize);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
986 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
987
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
988 static int rv34_decode_macroblock(RV34DecContext *r, int8_t *intra_types)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
989 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
990 MpegEncContext *s = &r->s;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
991 GetBitContext *gb = &s->gb;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
992 int cbp, cbp2;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
993 int i, blknum, blkoff;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
994 DCTELEM block16[64];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
995 int luma_dc_quant;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
996 int dist;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
997 int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
998
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
999 // Calculate which neighbours are available. Maybe it's worth optimizing too.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1000 memset(r->avail_cache, 0, sizeof(r->avail_cache));
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1001 fill_rectangle(r->avail_cache + 5, 2, 2, 4, 1, 4);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1002 dist = (s->mb_x - s->resync_mb_x) + (s->mb_y - s->resync_mb_y) * s->mb_width;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1003 if(s->mb_x && dist)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1004 r->avail_cache[4] =
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1005 r->avail_cache[8] = s->current_picture_ptr->mb_type[mb_pos - 1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1006 if(dist >= s->mb_width)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1007 r->avail_cache[1] =
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1008 r->avail_cache[2] = s->current_picture_ptr->mb_type[mb_pos - s->mb_stride];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1009 if(((s->mb_x+1) < s->mb_width) && dist >= s->mb_width - 1)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1010 r->avail_cache[3] = s->current_picture_ptr->mb_type[mb_pos - s->mb_stride + 1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1011 if(s->mb_x && dist > s->mb_width)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1012 r->avail_cache[0] = s->current_picture_ptr->mb_type[mb_pos - s->mb_stride - 1];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1013
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1014 s->qscale = r->si.quant;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1015 cbp = cbp2 = rv34_decode_mb_header(r, intra_types);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1016
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1017 if(cbp == -1)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1018 return -1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1019
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1020 luma_dc_quant = r->si.type ? r->luma_dc_quant_p[s->qscale] : r->luma_dc_quant_i[s->qscale];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1021 if(r->is16){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1022 memset(block16, 0, sizeof(block16));
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1023 rv34_decode_block(block16, gb, r->cur_vlcs, 3, 0);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1024 rv34_dequant4x4_16x16(block16, rv34_qscale_tab[luma_dc_quant],rv34_qscale_tab[s->qscale]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1025 rv34_inv_transform_noround(block16);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1026 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1027
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1028 for(i = 0; i < 16; i++, cbp >>= 1){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1029 if(!r->is16 && !(cbp & 1)) continue;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1030 blknum = ((i & 2) >> 1) + ((i & 8) >> 2);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1031 blkoff = ((i & 1) << 2) + ((i & 4) << 3);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1032 if(cbp & 1)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1033 rv34_decode_block(s->block[blknum] + blkoff, gb, r->cur_vlcs, r->luma_vlc, 0);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1034 rv34_dequant4x4(s->block[blknum] + blkoff, rv34_qscale_tab[luma_dc_quant],rv34_qscale_tab[s->qscale]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1035 if(r->is16) //FIXME: optimize
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1036 s->block[blknum][blkoff] = block16[(i & 3) | ((i & 0xC) << 1)];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1037 rv34_inv_transform(s->block[blknum] + blkoff);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1038 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1039 if(r->block_type == RV34_MB_P_MIX16x16)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1040 r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 1);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1041 for(; i < 24; i++, cbp >>= 1){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1042 if(!(cbp & 1)) continue;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1043 blknum = ((i & 4) >> 2) + 4;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1044 blkoff = ((i & 1) << 2) + ((i & 2) << 4);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1045 rv34_decode_block(s->block[blknum] + blkoff, gb, r->cur_vlcs, r->chroma_vlc, 1);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1046 rv34_dequant4x4(s->block[blknum] + blkoff, rv34_qscale_tab[rv34_chroma_quant[1][s->qscale]],rv34_qscale_tab[rv34_chroma_quant[0][s->qscale]]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1047 rv34_inv_transform(s->block[blknum] + blkoff);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1048 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1049 if(IS_INTRA(s->current_picture_ptr->mb_type[s->mb_x + s->mb_y*s->mb_stride]))
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1050 rv34_output_macroblock(r, intra_types, cbp2, r->is16);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1051 else
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1052 rv34_apply_differences(r, cbp2);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1053
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1054 return 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1055 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1056
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1057 static int check_slice_end(RV34DecContext *r, MpegEncContext *s)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1058 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1059 int bits;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1060 if(s->mb_y >= s->mb_height)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1061 return 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1062 if(!s->mb_num_left)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1063 return 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1064 if(r->s.mb_skip_run > 1)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1065 return 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1066 bits = r->bits - get_bits_count(&s->gb);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1067 if(bits < 0 || (bits < 8 && !show_bits(&s->gb, bits)))
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1068 return 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1069 return 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1070 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1071
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1072 static inline int slice_compare(SliceInfo *si1, SliceInfo *si2)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1073 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1074 return si1->type != si2->type ||
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1075 si1->start >= si2->start ||
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1076 si1->width != si2->width ||
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1077 si1->height != si2->height;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1078 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1079
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1080 static int rv34_decode_slice(RV34DecContext *r, int end, uint8_t* buf, int buf_size)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1081 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1082 MpegEncContext *s = &r->s;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1083 GetBitContext *gb = &s->gb;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1084 int mb_pos;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1085 int res;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1086
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1087 init_get_bits(&r->s.gb, buf, buf_size*8);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1088 res = r->parse_slice_header(r, gb, &r->si);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1089 if(res < 0){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1090 av_log(s->avctx, AV_LOG_ERROR, "Incorrect or unknown slice header\n");
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1091 return -1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1092 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1093
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1094 if ((s->mb_x == 0 && s->mb_y == 0) || s->current_picture_ptr==NULL) {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1095 if(s->width != r->si.width || s->height != r->si.height){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1096 av_log(s->avctx, AV_LOG_DEBUG, "Changing dimensions to %dx%d\n", r->si.width,r->si.height);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1097 MPV_common_end(s);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1098 s->width = r->si.width;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1099 s->height = r->si.height;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1100 if(MPV_common_init(s) < 0)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1101 return -1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1102 r->intra_types_hist = av_realloc(r->intra_types_hist, s->b4_stride * 4 * 2 * sizeof(*r->intra_types_hist));
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1103 r->intra_types = r->intra_types_hist + s->b4_stride * 4;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1104 r->mb_type = av_realloc(r->mb_type, r->s.mb_stride * r->s.mb_height * sizeof(*r->mb_type));
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1105 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1106 s->pict_type = r->si.type ? r->si.type : I_TYPE;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1107 if(MPV_frame_start(s, s->avctx) < 0)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1108 return -1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1109 ff_er_frame_start(s);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1110 s->current_picture_ptr = &s->current_picture;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1111 s->mb_x = s->mb_y = 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1112 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1113
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1114 r->si.end = end;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1115 s->qscale = r->si.quant;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1116 r->bits = buf_size*8;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1117 s->mb_num_left = r->si.end - r->si.start;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1118 r->s.mb_skip_run = 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1119
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1120 mb_pos = s->mb_x + s->mb_y * s->mb_width;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1121 if(r->si.start != mb_pos){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1122 av_log(s->avctx, AV_LOG_ERROR, "Slice indicates MB offset %d, got %d\n", r->si.start, mb_pos);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1123 s->mb_x = r->si.start % s->mb_width;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1124 s->mb_y = r->si.start / s->mb_width;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1125 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1126 memset(r->intra_types_hist, -1, s->b4_stride * 4 * 2 * sizeof(*r->intra_types_hist));
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1127 s->first_slice_line = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1128 s->resync_mb_x= s->mb_x;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1129 s->resync_mb_y= s->mb_y;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1130
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1131 ff_init_block_index(s);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1132 while(!check_slice_end(r, s)) {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1133 ff_update_block_index(s);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1134 s->dsp.clear_blocks(s->block[0]);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1135
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1136 if(rv34_decode_macroblock(r, r->intra_types + s->mb_x * 4 + 1) < 0){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1137 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, AC_ERROR|DC_ERROR|MV_ERROR);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1138 return -1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1139 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1140 if (++s->mb_x == s->mb_width) {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1141 s->mb_x = 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1142 s->mb_y++;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1143 ff_init_block_index(s);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1144
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1145 memmove(r->intra_types_hist, r->intra_types, s->b4_stride * 4 * sizeof(*r->intra_types_hist));
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1146 memset(r->intra_types, -1, s->b4_stride * 4 * sizeof(*r->intra_types_hist));
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1147 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1148 if(s->mb_x == s->resync_mb_x)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1149 s->first_slice_line=0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1150 s->mb_num_left--;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1151 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1152 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, AC_END|DC_END|MV_END);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1153
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1154 return (s->mb_y == s->mb_height);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1155 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1156
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1157 /** @} */ // recons group end
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1158
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1159 /**
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1160 * Initialize decoder.
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1161 */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1162 int ff_rv34_decode_init(AVCodecContext *avctx)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1163 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1164 RV34DecContext *r = avctx->priv_data;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1165 MpegEncContext *s = &r->s;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1166
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1167 MPV_decode_defaults(s);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1168 s->avctx= avctx;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1169 s->out_format = FMT_H263;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1170 s->codec_id= avctx->codec_id;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1171
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1172 s->width = avctx->width;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1173 s->height = avctx->height;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1174
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1175 r->s.avctx = avctx;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1176 avctx->flags |= CODEC_FLAG_EMU_EDGE;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1177 r->s.flags |= CODEC_FLAG_EMU_EDGE;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1178 avctx->pix_fmt = PIX_FMT_YUV420P;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1179 avctx->has_b_frames = 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1180 s->low_delay = 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1181
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1182 if (MPV_common_init(s) < 0)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1183 return -1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1184
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1185 ff_h264_pred_init(&r->h, CODEC_ID_RV40);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1186
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1187 r->intra_types_hist = av_malloc(s->b4_stride * 4 * 2 * sizeof(*r->intra_types_hist));
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1188 r->intra_types = r->intra_types_hist + s->b4_stride * 4;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1189
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1190 r->mb_type = av_mallocz(r->s.mb_stride * r->s.mb_height * sizeof(*r->mb_type));
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1191
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1192 if(!intra_vlcs[0].cbppattern[0].bits)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1193 rv34_init_tables();
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1194
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1195 return 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1196 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1197
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1198 static int get_slice_offset(AVCodecContext *avctx, uint8_t *buf, int n)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1199 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1200 if(avctx->slice_count) return avctx->slice_offset[n];
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1201 else return AV_RL32(buf + n*8 - 4) == 1 ? AV_RL32(buf + n*8) : AV_RB32(buf + n*8);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1202 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1203
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1204 int ff_rv34_decode_frame(AVCodecContext *avctx,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1205 void *data, int *data_size,
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1206 uint8_t *buf, int buf_size)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1207 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1208 RV34DecContext *r = avctx->priv_data;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1209 MpegEncContext *s = &r->s;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1210 AVFrame *pict = data;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1211 SliceInfo si;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1212 int i;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1213 int slice_count;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1214 uint8_t *slices_hdr = NULL;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1215 int last = 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1216
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1217 /* no supplementary picture */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1218 if (buf_size == 0) {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1219 /* special case for last picture */
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1220 if (s->low_delay==0 && s->next_picture_ptr) {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1221 *pict= *(AVFrame*)s->next_picture_ptr;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1222 s->next_picture_ptr= NULL;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1223
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1224 *data_size = sizeof(AVFrame);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1225 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1226 return 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1227 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1228
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1229 if(!avctx->slice_count){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1230 slice_count = (*buf++) + 1;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1231 slices_hdr = buf + 4;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1232 buf += 8 * slice_count;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1233 }else
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1234 slice_count = avctx->slice_count;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1235
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1236 for(i=0; i<slice_count; i++){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1237 int offset= get_slice_offset(avctx, slices_hdr, i);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1238 int size;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1239 if(i+1 == slice_count)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1240 size= buf_size - offset;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1241 else
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1242 size= get_slice_offset(avctx, slices_hdr, i+1) - offset;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1243
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1244 r->si.end = s->mb_width * s->mb_height;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1245 if(i+1 < slice_count){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1246 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);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1247 if(r->parse_slice_header(r, &r->s.gb, &si) < 0){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1248 if(i+2 < slice_count)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1249 size = get_slice_offset(avctx, slices_hdr, i+2) - offset;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1250 else
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1251 size = buf_size - offset;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1252 }else
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1253 r->si.end = si.start;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1254 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1255 last = rv34_decode_slice(r, r->si.end, buf + offset, size);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1256 s->mb_num_left = r->s.mb_x + r->s.mb_y*r->s.mb_width - r->si.start;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1257 if(last)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1258 break;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1259 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1260
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1261 if(last){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1262 if(r->loop_filter)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1263 r->loop_filter(r);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1264 ff_er_frame_end(s);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1265 MPV_frame_end(s);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1266 if (s->pict_type == B_TYPE || s->low_delay) {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1267 *pict= *(AVFrame*)s->current_picture_ptr;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1268 } else if (s->last_picture_ptr != NULL) {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1269 *pict= *(AVFrame*)s->last_picture_ptr;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1270 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1271
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1272 if(s->last_picture_ptr || s->low_delay){
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1273 *data_size = sizeof(AVFrame);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1274 ff_print_debug_info(s, pict);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1275 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1276 s->current_picture_ptr= NULL; //so we can detect if frame_end wasnt called (find some nicer solution...)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1277 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1278 return buf_size;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1279 }
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1280
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1281 int ff_rv34_decode_end(AVCodecContext *avctx)
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1282 {
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1283 RV34DecContext *r = avctx->priv_data;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1284
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1285 MPV_common_end(&r->s);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1286
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1287 av_freep(&r->intra_types_hist);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1288 r->intra_types = NULL;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1289 av_freep(&r->mb_type);
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1290
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1291 return 0;
49c086b24908 RV30/40 decoding core
kostya
parents:
diff changeset
1292 }