Mercurial > libavcodec.hg
annotate vp3.c @ 11195:d464f498e19f libavcodec
Use LOCAL_ALIGNED macro for local arrays
| author | mru |
|---|---|
| date | Wed, 17 Feb 2010 20:36:20 +0000 |
| parents | c11bcf7e3e6b |
| children | 5811a86f55f1 |
| rev | line source |
|---|---|
| 1224 | 1 /* |
|
1867
7f7aa6ac3723
cut over to using new VP3 DSP functions and remove the old ones; bring
melanson
parents:
1864
diff
changeset
|
2 * Copyright (C) 2003-2004 the ffmpeg project |
| 1224 | 3 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3940
diff
changeset
|
4 * This file is part of FFmpeg. |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3940
diff
changeset
|
5 * |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3940
diff
changeset
|
6 * FFmpeg is free software; you can redistribute it and/or |
| 1224 | 7 * modify it under the terms of the GNU Lesser General Public |
| 8 * License as published by the Free Software Foundation; either | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3940
diff
changeset
|
9 * version 2.1 of the License, or (at your option) any later version. |
| 1224 | 10 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3940
diff
changeset
|
11 * FFmpeg is distributed in the hope that it will be useful, |
| 1224 | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 14 * Lesser General Public License for more details. | |
| 15 * | |
| 16 * You should have received a copy of the GNU Lesser General Public | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3940
diff
changeset
|
17 * License along with FFmpeg; if not, write to the Free Software |
|
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2979
diff
changeset
|
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 1224 | 19 */ |
| 20 | |
| 21 /** | |
|
8718
e9d9d946f213
Use full internal pathname in doxygen @file directives.
diego
parents:
8590
diff
changeset
|
22 * @file libavcodec/vp3.c |
| 1224 | 23 * On2 VP3 Video Decoder |
|
2702
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
24 * |
|
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
25 * VP3 Video Decoder by Mike Melanson (mike at multimedia.cx) |
|
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
26 * For more information about the VP3 coding process, visit: |
|
6747
b9a57d71425d
Add complete multimedia Wiki URL, patch by Sisir Koppaka.
diego
parents:
6710
diff
changeset
|
27 * http://wiki.multimedia.cx/index.php?title=On2_VP3 |
|
2702
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
28 * |
|
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
29 * Theora decoder by Alex Beregszaszi |
| 1224 | 30 */ |
| 31 | |
| 32 #include <stdio.h> | |
| 33 #include <stdlib.h> | |
| 34 #include <string.h> | |
| 35 | |
| 36 #include "avcodec.h" | |
| 37 #include "dsputil.h" | |
| 9428 | 38 #include "get_bits.h" |
| 1224 | 39 |
| 40 #include "vp3data.h" | |
|
4723
b62a3a46856c
use generic xiph header spliting func to split theora headers
aurel
parents:
4594
diff
changeset
|
41 #include "xiph.h" |
| 1224 | 42 |
| 43 #define FRAGMENT_PIXELS 8 | |
| 44 | |
| 10258 | 45 static av_cold int vp3_decode_end(AVCodecContext *avctx); |
| 46 | |
|
2714
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
47 typedef struct Coeff { |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
48 struct Coeff *next; |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
49 DCTELEM coeff; |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
50 uint8_t index; |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
51 } Coeff; |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
52 |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
53 //FIXME split things out into their own arrays |
| 1224 | 54 typedef struct Vp3Fragment { |
|
2714
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
55 Coeff *next_coeff; |
| 2706 | 56 uint8_t coding_method; |
| 57 int8_t motion_x; | |
| 58 int8_t motion_y; | |
| 9731 | 59 uint8_t qpi; |
| 1224 | 60 } Vp3Fragment; |
| 61 | |
| 62 #define SB_NOT_CODED 0 | |
| 63 #define SB_PARTIALLY_CODED 1 | |
| 64 #define SB_FULLY_CODED 2 | |
| 65 | |
| 66 #define MODE_INTER_NO_MV 0 | |
| 67 #define MODE_INTRA 1 | |
| 68 #define MODE_INTER_PLUS_MV 2 | |
| 69 #define MODE_INTER_LAST_MV 3 | |
| 70 #define MODE_INTER_PRIOR_LAST 4 | |
| 71 #define MODE_USING_GOLDEN 5 | |
| 72 #define MODE_GOLDEN_MV 6 | |
| 73 #define MODE_INTER_FOURMV 7 | |
| 74 #define CODING_MODE_COUNT 8 | |
| 75 | |
| 76 /* special internal mode */ | |
| 77 #define MODE_COPY 8 | |
| 78 | |
| 79 /* There are 6 preset schemes, plus a free-form scheme */ | |
|
7139
03fe3194eff7
make ModeAlphabet read-only and use a custom mode alphabet
stefang
parents:
7040
diff
changeset
|
80 static const int ModeAlphabet[6][CODING_MODE_COUNT] = |
| 1224 | 81 { |
| 82 /* scheme 1: Last motion vector dominates */ | |
| 2967 | 83 { MODE_INTER_LAST_MV, MODE_INTER_PRIOR_LAST, |
| 1224 | 84 MODE_INTER_PLUS_MV, MODE_INTER_NO_MV, |
| 2967 | 85 MODE_INTRA, MODE_USING_GOLDEN, |
| 1224 | 86 MODE_GOLDEN_MV, MODE_INTER_FOURMV }, |
| 87 | |
| 88 /* scheme 2 */ | |
| 2967 | 89 { MODE_INTER_LAST_MV, MODE_INTER_PRIOR_LAST, |
| 1224 | 90 MODE_INTER_NO_MV, MODE_INTER_PLUS_MV, |
| 2967 | 91 MODE_INTRA, MODE_USING_GOLDEN, |
| 1224 | 92 MODE_GOLDEN_MV, MODE_INTER_FOURMV }, |
| 93 | |
| 94 /* scheme 3 */ | |
| 2967 | 95 { MODE_INTER_LAST_MV, MODE_INTER_PLUS_MV, |
| 1224 | 96 MODE_INTER_PRIOR_LAST, MODE_INTER_NO_MV, |
| 2967 | 97 MODE_INTRA, MODE_USING_GOLDEN, |
| 1224 | 98 MODE_GOLDEN_MV, MODE_INTER_FOURMV }, |
| 99 | |
| 100 /* scheme 4 */ | |
| 2967 | 101 { MODE_INTER_LAST_MV, MODE_INTER_PLUS_MV, |
| 1224 | 102 MODE_INTER_NO_MV, MODE_INTER_PRIOR_LAST, |
| 2967 | 103 MODE_INTRA, MODE_USING_GOLDEN, |
| 1224 | 104 MODE_GOLDEN_MV, MODE_INTER_FOURMV }, |
| 105 | |
| 106 /* scheme 5: No motion vector dominates */ | |
| 2967 | 107 { MODE_INTER_NO_MV, MODE_INTER_LAST_MV, |
| 1224 | 108 MODE_INTER_PRIOR_LAST, MODE_INTER_PLUS_MV, |
| 2967 | 109 MODE_INTRA, MODE_USING_GOLDEN, |
| 1224 | 110 MODE_GOLDEN_MV, MODE_INTER_FOURMV }, |
| 111 | |
| 112 /* scheme 6 */ | |
| 2967 | 113 { MODE_INTER_NO_MV, MODE_USING_GOLDEN, |
| 1224 | 114 MODE_INTER_LAST_MV, MODE_INTER_PRIOR_LAST, |
| 2967 | 115 MODE_INTER_PLUS_MV, MODE_INTRA, |
| 1224 | 116 MODE_GOLDEN_MV, MODE_INTER_FOURMV }, |
| 117 | |
| 118 }; | |
| 119 | |
| 120 #define MIN_DEQUANT_VAL 2 | |
| 121 | |
| 122 typedef struct Vp3DecodeContext { | |
| 123 AVCodecContext *avctx; | |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
124 int theora, theora_tables; |
| 1664 | 125 int version; |
| 1224 | 126 int width, height; |
| 127 AVFrame golden_frame; | |
| 128 AVFrame last_frame; | |
| 129 AVFrame current_frame; | |
| 130 int keyframe; | |
| 131 DSPContext dsp; | |
|
1626
f74ae637ffa9
finally working with old theora bitstream (flipped image), the only sample I have is decoded successfully (theora.ogg)
alex
parents:
1598
diff
changeset
|
132 int flipped_image; |
|
11132
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
133 int last_slice_end; |
| 1224 | 134 |
| 9731 | 135 int qps[3]; |
| 136 int nqps; | |
| 137 int last_qps[3]; | |
| 1224 | 138 |
| 139 int superblock_count; | |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
140 int y_superblock_width; |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
141 int y_superblock_height; |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
142 int c_superblock_width; |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
143 int c_superblock_height; |
| 1224 | 144 int u_superblock_start; |
| 145 int v_superblock_start; | |
| 146 unsigned char *superblock_coding; | |
| 147 | |
| 148 int macroblock_count; | |
| 149 int macroblock_width; | |
| 150 int macroblock_height; | |
| 151 | |
| 152 int fragment_count; | |
| 153 int fragment_width; | |
| 154 int fragment_height; | |
| 155 | |
| 156 Vp3Fragment *all_fragments; | |
|
7037
480faa9f79dd
Almost-cosmetics: split out coeff_count from all_fragments struct into
reimar
parents:
6903
diff
changeset
|
157 uint8_t *coeff_counts; |
|
2714
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
158 Coeff *coeffs; |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
159 Coeff *next_coeff; |
| 3498 | 160 int fragment_start[3]; |
| 11133 | 161 int data_offset[3]; |
| 2967 | 162 |
| 2694 | 163 ScanTable scantable; |
| 2967 | 164 |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
165 /* tables */ |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
166 uint16_t coded_dc_scale_factor[64]; |
|
1867
7f7aa6ac3723
cut over to using new VP3 DSP functions and remove the old ones; bring
melanson
parents:
1864
diff
changeset
|
167 uint32_t coded_ac_scale_factor[64]; |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
168 uint8_t base_matrix[384][64]; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
169 uint8_t qr_count[2][3]; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
170 uint8_t qr_size [2][3][64]; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
171 uint16_t qr_base[2][3][64]; |
| 1224 | 172 |
| 6903 | 173 /* this is a list of indexes into the all_fragments array indicating |
| 1224 | 174 * which of the fragments are coded */ |
| 175 int *coded_fragment_list; | |
| 176 int coded_fragment_list_index; | |
| 177 | |
|
10619
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
178 /* track which fragments have already been decoded; called 'fast' |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
179 * because this data structure avoids having to iterate through every |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
180 * fragment in coded_fragment_list; once a fragment has been fully |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
181 * decoded, it is removed from this list */ |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
182 int *fast_fragment_list; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
183 int fragment_list_y_head; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
184 int fragment_list_c_head; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
185 |
| 1224 | 186 VLC dc_vlc[16]; |
| 187 VLC ac_vlc_1[16]; | |
| 188 VLC ac_vlc_2[16]; | |
| 189 VLC ac_vlc_3[16]; | |
| 190 VLC ac_vlc_4[16]; | |
| 191 | |
|
2702
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
192 VLC superblock_run_length_vlc; |
|
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
193 VLC fragment_run_length_vlc; |
|
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
194 VLC mode_code_vlc; |
|
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
195 VLC motion_vector_vlc; |
|
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
196 |
| 1972 | 197 /* these arrays need to be on 16-byte boundaries since SSE2 operations |
| 198 * index into them */ | |
|
10961
34a65026fa06
Move array specifiers outside DECLARE_ALIGNED() invocations
mru
parents:
10697
diff
changeset
|
199 DECLARE_ALIGNED_16(int16_t, qmat)[3][2][3][64]; //<qmat[qpi][is_inter][plane] |
| 1224 | 200 |
| 201 /* This table contains superblock_count * 16 entries. Each set of 16 | |
| 6903 | 202 * numbers corresponds to the fragment indexes 0..15 of the superblock. |
| 1224 | 203 * An entry will be -1 to indicate that no entry corresponds to that |
| 204 * index. */ | |
| 205 int *superblock_fragments; | |
| 206 | |
| 2967 | 207 /* This is an array that indicates how a particular macroblock |
|
1244
a02df1ba6c7f
fix image buffer leak on keyframes, add more error condition checks
tmmm
parents:
1240
diff
changeset
|
208 * is coded. */ |
|
1240
c95ff60bc1a1
fix motion vector decoding bug and reinstate interframes
tmmm
parents:
1239
diff
changeset
|
209 unsigned char *macroblock_coding; |
| 1224 | 210 |
|
1236
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
211 int first_coded_y_fragment; |
|
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
212 int first_coded_c_fragment; |
|
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
213 int last_coded_y_fragment; |
|
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
214 int last_coded_c_fragment; |
|
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
215 |
| 1406 | 216 uint8_t edge_emu_buffer[9*2048]; //FIXME dynamic alloc |
| 3776 | 217 int8_t qscale_table[2048]; //FIXME dynamic alloc (width+15)/16 |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
218 |
|
2723
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
219 /* Huffman decode */ |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
220 int hti; |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
221 unsigned int hbits; |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
222 int entries; |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
223 int huff_code_size; |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
224 uint16_t huffman_table[80][32][2]; |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
225 |
|
7966
14a49e087126
filter_limit_values only needs 7 bits, make its tables smaller
conrad
parents:
7961
diff
changeset
|
226 uint8_t filter_limit_values[64]; |
|
10961
34a65026fa06
Move array specifiers outside DECLARE_ALIGNED() invocations
mru
parents:
10697
diff
changeset
|
227 DECLARE_ALIGNED_8(int, bounding_values_array)[256+2]; |
| 1224 | 228 } Vp3DecodeContext; |
| 229 | |
| 230 /************************************************************************ | |
| 231 * VP3 specific functions | |
| 232 ************************************************************************/ | |
| 233 | |
| 234 /* | |
| 235 * This function sets up all of the various blocks mappings: | |
| 236 * superblocks <-> fragments, macroblocks <-> fragments, | |
| 237 * superblocks <-> macroblocks | |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
238 * |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
239 * Returns 0 is successful; returns 1 if *anything* went wrong. |
| 1224 | 240 */ |
| 2967 | 241 static int init_block_mapping(Vp3DecodeContext *s) |
| 1224 | 242 { |
| 243 int i, j; | |
| 244 signed int hilbert_walk_mb[4]; | |
| 245 | |
| 246 int current_fragment = 0; | |
| 247 int current_width = 0; | |
| 248 int current_height = 0; | |
| 249 int right_edge = 0; | |
| 250 int bottom_edge = 0; | |
| 251 int superblock_row_inc = 0; | |
| 252 int mapping_index = 0; | |
| 253 | |
| 254 int current_macroblock; | |
| 255 int c_fragment; | |
| 256 | |
| 10133 | 257 static const signed char travel_width[16] = { |
| 2967 | 258 1, 1, 0, -1, |
| 1224 | 259 0, 0, 1, 0, |
| 260 1, 0, 1, 0, | |
| 261 0, -1, 0, 1 | |
| 262 }; | |
| 263 | |
| 10133 | 264 static const signed char travel_height[16] = { |
| 1224 | 265 0, 0, 1, 0, |
| 266 1, 1, 0, -1, | |
| 267 0, 1, 0, -1, | |
| 268 -1, 0, -1, 0 | |
| 269 }; | |
| 270 | |
| 271 hilbert_walk_mb[0] = 1; | |
| 272 hilbert_walk_mb[1] = s->macroblock_width; | |
| 273 hilbert_walk_mb[2] = 1; | |
| 274 hilbert_walk_mb[3] = -s->macroblock_width; | |
| 275 | |
| 276 /* iterate through each superblock (all planes) and map the fragments */ | |
| 277 for (i = 0; i < s->superblock_count; i++) { | |
| 278 /* time to re-assign the limits? */ | |
| 279 if (i == 0) { | |
| 280 | |
| 281 /* start of Y superblocks */ | |
| 282 right_edge = s->fragment_width; | |
| 283 bottom_edge = s->fragment_height; | |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
284 current_width = -1; |
| 1224 | 285 current_height = 0; |
| 2967 | 286 superblock_row_inc = 3 * s->fragment_width - |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
287 (s->y_superblock_width * 4 - s->fragment_width); |
| 1224 | 288 |
| 289 /* the first operation for this variable is to advance by 1 */ | |
| 290 current_fragment = -1; | |
| 291 | |
| 292 } else if (i == s->u_superblock_start) { | |
| 293 | |
| 294 /* start of U superblocks */ | |
| 295 right_edge = s->fragment_width / 2; | |
| 296 bottom_edge = s->fragment_height / 2; | |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
297 current_width = -1; |
| 1224 | 298 current_height = 0; |
| 2967 | 299 superblock_row_inc = 3 * (s->fragment_width / 2) - |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
300 (s->c_superblock_width * 4 - s->fragment_width / 2); |
| 1224 | 301 |
| 302 /* the first operation for this variable is to advance by 1 */ | |
| 3498 | 303 current_fragment = s->fragment_start[1] - 1; |
| 1224 | 304 |
| 305 } else if (i == s->v_superblock_start) { | |
| 306 | |
| 307 /* start of V superblocks */ | |
| 308 right_edge = s->fragment_width / 2; | |
| 309 bottom_edge = s->fragment_height / 2; | |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
310 current_width = -1; |
| 1224 | 311 current_height = 0; |
| 2967 | 312 superblock_row_inc = 3 * (s->fragment_width / 2) - |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
313 (s->c_superblock_width * 4 - s->fragment_width / 2); |
| 1224 | 314 |
| 315 /* the first operation for this variable is to advance by 1 */ | |
| 3498 | 316 current_fragment = s->fragment_start[2] - 1; |
| 1224 | 317 |
| 318 } | |
| 319 | |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
320 if (current_width >= right_edge - 1) { |
| 1224 | 321 /* reset width and move to next superblock row */ |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
322 current_width = -1; |
| 1224 | 323 current_height += 4; |
| 324 | |
| 325 /* fragment is now at the start of a new superblock row */ | |
| 326 current_fragment += superblock_row_inc; | |
| 327 } | |
| 328 | |
| 329 /* iterate through all 16 fragments in a superblock */ | |
| 330 for (j = 0; j < 16; j++) { | |
| 3502 | 331 current_fragment += travel_width[j] + right_edge * travel_height[j]; |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
332 current_width += travel_width[j]; |
| 1224 | 333 current_height += travel_height[j]; |
| 334 | |
| 335 /* check if the fragment is in bounds */ | |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
336 if ((current_width < right_edge) && |
| 1224 | 337 (current_height < bottom_edge)) { |
| 338 s->superblock_fragments[mapping_index] = current_fragment; | |
| 339 } else { | |
| 340 s->superblock_fragments[mapping_index] = -1; | |
| 341 } | |
| 342 | |
| 343 mapping_index++; | |
| 344 } | |
| 345 } | |
| 346 | |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
347 return 0; /* successful path out */ |
| 1224 | 348 } |
| 349 | |
| 350 /* | |
| 351 * This function wipes out all of the fragment data. | |
| 352 */ | |
| 353 static void init_frame(Vp3DecodeContext *s, GetBitContext *gb) | |
| 354 { | |
| 355 int i; | |
| 356 | |
| 357 /* zero out all of the fragment information */ | |
| 358 s->coded_fragment_list_index = 0; | |
| 359 for (i = 0; i < s->fragment_count; i++) { | |
|
7037
480faa9f79dd
Almost-cosmetics: split out coeff_count from all_fragments struct into
reimar
parents:
6903
diff
changeset
|
360 s->coeff_counts[i] = 0; |
| 2721 | 361 s->all_fragments[i].motion_x = 127; |
| 362 s->all_fragments[i].motion_y = 127; | |
| 363 s->all_fragments[i].next_coeff= NULL; | |
| 9731 | 364 s->all_fragments[i].qpi = 0; |
|
2714
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
365 s->coeffs[i].index= |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
366 s->coeffs[i].coeff=0; |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
367 s->coeffs[i].next= NULL; |
| 1224 | 368 } |
| 369 } | |
| 370 | |
| 371 /* | |
|
2723
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
372 * This function sets up the dequantization tables used for a particular |
| 1224 | 373 * frame. |
| 374 */ | |
| 9731 | 375 static void init_dequantizer(Vp3DecodeContext *s, int qpi) |
| 1224 | 376 { |
| 9731 | 377 int ac_scale_factor = s->coded_ac_scale_factor[s->qps[qpi]]; |
| 378 int dc_scale_factor = s->coded_dc_scale_factor[s->qps[qpi]]; | |
|
3920
3a151ccc6ed7
Remove unused variables and the corresponding warnings along with them.
diego
parents:
3776
diff
changeset
|
379 int i, plane, inter, qri, bmi, bmj, qistart; |
| 1224 | 380 |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
381 for(inter=0; inter<2; inter++){ |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
382 for(plane=0; plane<3; plane++){ |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
383 int sum=0; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
384 for(qri=0; qri<s->qr_count[inter][plane]; qri++){ |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
385 sum+= s->qr_size[inter][plane][qri]; |
| 9731 | 386 if(s->qps[qpi] <= sum) |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
387 break; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
388 } |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
389 qistart= sum - s->qr_size[inter][plane][qri]; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
390 bmi= s->qr_base[inter][plane][qri ]; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
391 bmj= s->qr_base[inter][plane][qri+1]; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
392 for(i=0; i<64; i++){ |
| 9731 | 393 int coeff= ( 2*(sum -s->qps[qpi])*s->base_matrix[bmi][i] |
| 394 - 2*(qistart-s->qps[qpi])*s->base_matrix[bmj][i] | |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
395 + s->qr_size[inter][plane][qri]) |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
396 / (2*s->qr_size[inter][plane][qri]); |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
397 |
| 3491 | 398 int qmin= 8<<(inter + !i); |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
399 int qscale= i ? ac_scale_factor : dc_scale_factor; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
400 |
| 9731 | 401 s->qmat[qpi][inter][plane][s->dsp.idct_permutation[i]]= av_clip((qscale * coeff)/100 * 4, qmin, 4096); |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
402 } |
| 9731 | 403 // all DC coefficients use the same quant so as not to interfere with DC prediction |
| 404 s->qmat[qpi][inter][plane][0] = s->qmat[0][inter][plane][0]; | |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
405 } |
| 1224 | 406 } |
| 2967 | 407 |
| 9731 | 408 memset(s->qscale_table, (FFMAX(s->qmat[0][0][0][1], s->qmat[0][0][1][1])+8)/16, 512); //FIXME finetune |
| 1224 | 409 } |
| 410 | |
| 411 /* | |
|
2723
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
412 * This function initializes the loop filter boundary limits if the frame's |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
413 * quality index is different from the previous frame's. |
|
9921
f42402d1778b
Extend init_loop_filter to work for filter limit values up to 127 instead
reimar
parents:
9811
diff
changeset
|
414 * |
|
f42402d1778b
Extend init_loop_filter to work for filter limit values up to 127 instead
reimar
parents:
9811
diff
changeset
|
415 * The filter_limit_values may not be larger than 127. |
|
2723
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
416 */ |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
417 static void init_loop_filter(Vp3DecodeContext *s) |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
418 { |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
419 int *bounding_values= s->bounding_values_array+127; |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
420 int filter_limit; |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
421 int x; |
|
9921
f42402d1778b
Extend init_loop_filter to work for filter limit values up to 127 instead
reimar
parents:
9811
diff
changeset
|
422 int value; |
|
2723
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
423 |
| 9731 | 424 filter_limit = s->filter_limit_values[s->qps[0]]; |
|
2723
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
425 |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
426 /* set up the bounding values */ |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
427 memset(s->bounding_values_array, 0, 256 * sizeof(int)); |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
428 for (x = 0; x < filter_limit; x++) { |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
429 bounding_values[-x] = -x; |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
430 bounding_values[x] = x; |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
431 } |
|
9921
f42402d1778b
Extend init_loop_filter to work for filter limit values up to 127 instead
reimar
parents:
9811
diff
changeset
|
432 for (x = value = filter_limit; x < 128 && value; x++, value--) { |
|
f42402d1778b
Extend init_loop_filter to work for filter limit values up to 127 instead
reimar
parents:
9811
diff
changeset
|
433 bounding_values[ x] = value; |
|
f42402d1778b
Extend init_loop_filter to work for filter limit values up to 127 instead
reimar
parents:
9811
diff
changeset
|
434 bounding_values[-x] = -value; |
|
f42402d1778b
Extend init_loop_filter to work for filter limit values up to 127 instead
reimar
parents:
9811
diff
changeset
|
435 } |
|
f42402d1778b
Extend init_loop_filter to work for filter limit values up to 127 instead
reimar
parents:
9811
diff
changeset
|
436 if (value) |
|
f42402d1778b
Extend init_loop_filter to work for filter limit values up to 127 instead
reimar
parents:
9811
diff
changeset
|
437 bounding_values[128] = value; |
| 8032 | 438 bounding_values[129] = bounding_values[130] = filter_limit * 0x02020202; |
|
2723
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
439 } |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
440 |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
441 /* |
| 2967 | 442 * This function unpacks all of the superblock/macroblock/fragment coding |
| 1224 | 443 * information from the bitstream. |
| 444 */ | |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
445 static int unpack_superblocks(Vp3DecodeContext *s, GetBitContext *gb) |
| 1224 | 446 { |
| 447 int bit = 0; | |
| 448 int current_superblock = 0; | |
| 449 int current_run = 0; | |
| 450 int decode_fully_flags = 0; | |
| 451 int decode_partial_blocks = 0; | |
|
1272
777d4145cdfb
fix subtle logic problem in block unpacker that leads to incorrect token
tmmm
parents:
1244
diff
changeset
|
452 int first_c_fragment_seen; |
| 1224 | 453 |
| 454 int i, j; | |
| 455 int current_fragment; | |
| 456 | |
| 457 if (s->keyframe) { | |
| 458 memset(s->superblock_coding, SB_FULLY_CODED, s->superblock_count); | |
| 459 | |
| 460 } else { | |
| 461 | |
| 462 /* unpack the list of partially-coded superblocks */ | |
| 5513 | 463 bit = get_bits1(gb); |
| 2967 | 464 /* toggle the bit because as soon as the first run length is |
| 1224 | 465 * fetched the bit will be toggled again */ |
| 466 bit ^= 1; | |
| 467 while (current_superblock < s->superblock_count) { | |
| 2705 | 468 if (current_run-- == 0) { |
| 1224 | 469 bit ^= 1; |
| 2967 | 470 current_run = get_vlc2(gb, |
| 2705 | 471 s->superblock_run_length_vlc.table, 6, 2); |
| 472 if (current_run == 33) | |
|
2703
3817945001ce
replace get_superblock_run_length() with a VLC table
melanson
parents:
2702
diff
changeset
|
473 current_run += get_bits(gb, 12); |
| 1224 | 474 |
| 475 /* if any of the superblocks are not partially coded, flag | |
| 476 * a boolean to decode the list of fully-coded superblocks */ | |
|
1292
f7b3fa4bb7ae
revising and fixing motion vectors, squished block unpacking bug that
tmmm
parents:
1282
diff
changeset
|
477 if (bit == 0) { |
| 1224 | 478 decode_fully_flags = 1; |
|
1292
f7b3fa4bb7ae
revising and fixing motion vectors, squished block unpacking bug that
tmmm
parents:
1282
diff
changeset
|
479 } else { |
|
f7b3fa4bb7ae
revising and fixing motion vectors, squished block unpacking bug that
tmmm
parents:
1282
diff
changeset
|
480 |
|
f7b3fa4bb7ae
revising and fixing motion vectors, squished block unpacking bug that
tmmm
parents:
1282
diff
changeset
|
481 /* make a note of the fact that there are partially coded |
|
f7b3fa4bb7ae
revising and fixing motion vectors, squished block unpacking bug that
tmmm
parents:
1282
diff
changeset
|
482 * superblocks */ |
|
f7b3fa4bb7ae
revising and fixing motion vectors, squished block unpacking bug that
tmmm
parents:
1282
diff
changeset
|
483 decode_partial_blocks = 1; |
|
f7b3fa4bb7ae
revising and fixing motion vectors, squished block unpacking bug that
tmmm
parents:
1282
diff
changeset
|
484 } |
| 1224 | 485 } |
| 2705 | 486 s->superblock_coding[current_superblock++] = bit; |
| 1224 | 487 } |
| 488 | |
| 489 /* unpack the list of fully coded superblocks if any of the blocks were | |
| 490 * not marked as partially coded in the previous step */ | |
| 491 if (decode_fully_flags) { | |
| 492 | |
| 493 current_superblock = 0; | |
| 494 current_run = 0; | |
| 5513 | 495 bit = get_bits1(gb); |
| 2967 | 496 /* toggle the bit because as soon as the first run length is |
| 1224 | 497 * fetched the bit will be toggled again */ |
| 498 bit ^= 1; | |
| 499 while (current_superblock < s->superblock_count) { | |
| 500 | |
| 501 /* skip any superblocks already marked as partially coded */ | |
| 502 if (s->superblock_coding[current_superblock] == SB_NOT_CODED) { | |
| 503 | |
| 2705 | 504 if (current_run-- == 0) { |
| 1224 | 505 bit ^= 1; |
| 2967 | 506 current_run = get_vlc2(gb, |
| 2705 | 507 s->superblock_run_length_vlc.table, 6, 2); |
| 508 if (current_run == 33) | |
|
2703
3817945001ce
replace get_superblock_run_length() with a VLC table
melanson
parents:
2702
diff
changeset
|
509 current_run += get_bits(gb, 12); |
| 1224 | 510 } |
| 2705 | 511 s->superblock_coding[current_superblock] = 2*bit; |
| 1224 | 512 } |
| 513 current_superblock++; | |
| 514 } | |
| 515 } | |
| 516 | |
| 517 /* if there were partial blocks, initialize bitstream for | |
| 518 * unpacking fragment codings */ | |
| 519 if (decode_partial_blocks) { | |
| 520 | |
| 521 current_run = 0; | |
| 5513 | 522 bit = get_bits1(gb); |
| 2967 | 523 /* toggle the bit because as soon as the first run length is |
| 1224 | 524 * fetched the bit will be toggled again */ |
| 525 bit ^= 1; | |
| 526 } | |
| 527 } | |
| 528 | |
| 529 /* figure out which fragments are coded; iterate through each | |
| 530 * superblock (all planes) */ | |
| 531 s->coded_fragment_list_index = 0; | |
|
2714
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
532 s->next_coeff= s->coeffs + s->fragment_count; |
|
1236
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
533 s->first_coded_y_fragment = s->first_coded_c_fragment = 0; |
|
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
534 s->last_coded_y_fragment = s->last_coded_c_fragment = -1; |
|
1272
777d4145cdfb
fix subtle logic problem in block unpacker that leads to incorrect token
tmmm
parents:
1244
diff
changeset
|
535 first_c_fragment_seen = 0; |
|
1240
c95ff60bc1a1
fix motion vector decoding bug and reinstate interframes
tmmm
parents:
1239
diff
changeset
|
536 memset(s->macroblock_coding, MODE_COPY, s->macroblock_count); |
| 1224 | 537 for (i = 0; i < s->superblock_count; i++) { |
| 538 | |
| 539 /* iterate through all 16 fragments in a superblock */ | |
| 540 for (j = 0; j < 16; j++) { | |
| 541 | |
| 542 /* if the fragment is in bounds, check its coding status */ | |
| 543 current_fragment = s->superblock_fragments[i * 16 + j]; | |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
544 if (current_fragment >= s->fragment_count) { |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1518
diff
changeset
|
545 av_log(s->avctx, AV_LOG_ERROR, " vp3:unpack_superblocks(): bad fragment number (%d >= %d)\n", |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
546 current_fragment, s->fragment_count); |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
547 return 1; |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
548 } |
| 1224 | 549 if (current_fragment != -1) { |
| 550 if (s->superblock_coding[i] == SB_NOT_CODED) { | |
| 551 | |
| 552 /* copy all the fragments from the prior frame */ | |
| 2967 | 553 s->all_fragments[current_fragment].coding_method = |
| 1224 | 554 MODE_COPY; |
| 555 | |
| 556 } else if (s->superblock_coding[i] == SB_PARTIALLY_CODED) { | |
| 557 | |
| 558 /* fragment may or may not be coded; this is the case | |
| 559 * that cares about the fragment coding runs */ | |
| 2705 | 560 if (current_run-- == 0) { |
| 1224 | 561 bit ^= 1; |
| 2967 | 562 current_run = get_vlc2(gb, |
| 2705 | 563 s->fragment_run_length_vlc.table, 5, 2); |
| 1224 | 564 } |
| 565 | |
| 566 if (bit) { | |
| 2967 | 567 /* default mode; actual mode will be decoded in |
|
1272
777d4145cdfb
fix subtle logic problem in block unpacker that leads to incorrect token
tmmm
parents:
1244
diff
changeset
|
568 * the next phase */ |
| 2967 | 569 s->all_fragments[current_fragment].coding_method = |
| 1224 | 570 MODE_INTER_NO_MV; |
|
2714
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
571 s->all_fragments[current_fragment].next_coeff= s->coeffs + current_fragment; |
| 2967 | 572 s->coded_fragment_list[s->coded_fragment_list_index] = |
| 1224 | 573 current_fragment; |
| 3498 | 574 if ((current_fragment >= s->fragment_start[1]) && |
|
1272
777d4145cdfb
fix subtle logic problem in block unpacker that leads to incorrect token
tmmm
parents:
1244
diff
changeset
|
575 (s->last_coded_y_fragment == -1) && |
|
777d4145cdfb
fix subtle logic problem in block unpacker that leads to incorrect token
tmmm
parents:
1244
diff
changeset
|
576 (!first_c_fragment_seen)) { |
|
1236
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
577 s->first_coded_c_fragment = s->coded_fragment_list_index; |
|
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
578 s->last_coded_y_fragment = s->first_coded_c_fragment - 1; |
|
1272
777d4145cdfb
fix subtle logic problem in block unpacker that leads to incorrect token
tmmm
parents:
1244
diff
changeset
|
579 first_c_fragment_seen = 1; |
|
1236
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
580 } |
|
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
581 s->coded_fragment_list_index++; |
| 1224 | 582 } else { |
| 583 /* not coded; copy this fragment from the prior frame */ | |
| 584 s->all_fragments[current_fragment].coding_method = | |
| 585 MODE_COPY; | |
| 586 } | |
| 587 | |
| 588 } else { | |
| 589 | |
| 590 /* fragments are fully coded in this superblock; actual | |
| 591 * coding will be determined in next step */ | |
| 2967 | 592 s->all_fragments[current_fragment].coding_method = |
| 1224 | 593 MODE_INTER_NO_MV; |
|
2714
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
594 s->all_fragments[current_fragment].next_coeff= s->coeffs + current_fragment; |
| 2967 | 595 s->coded_fragment_list[s->coded_fragment_list_index] = |
| 1224 | 596 current_fragment; |
| 3498 | 597 if ((current_fragment >= s->fragment_start[1]) && |
|
1272
777d4145cdfb
fix subtle logic problem in block unpacker that leads to incorrect token
tmmm
parents:
1244
diff
changeset
|
598 (s->last_coded_y_fragment == -1) && |
|
777d4145cdfb
fix subtle logic problem in block unpacker that leads to incorrect token
tmmm
parents:
1244
diff
changeset
|
599 (!first_c_fragment_seen)) { |
|
1236
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
600 s->first_coded_c_fragment = s->coded_fragment_list_index; |
|
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
601 s->last_coded_y_fragment = s->first_coded_c_fragment - 1; |
|
1272
777d4145cdfb
fix subtle logic problem in block unpacker that leads to incorrect token
tmmm
parents:
1244
diff
changeset
|
602 first_c_fragment_seen = 1; |
|
1236
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
603 } |
|
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
604 s->coded_fragment_list_index++; |
| 1224 | 605 } |
| 606 } | |
| 607 } | |
| 608 } | |
|
1236
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
609 |
|
1272
777d4145cdfb
fix subtle logic problem in block unpacker that leads to incorrect token
tmmm
parents:
1244
diff
changeset
|
610 if (!first_c_fragment_seen) |
|
777d4145cdfb
fix subtle logic problem in block unpacker that leads to incorrect token
tmmm
parents:
1244
diff
changeset
|
611 /* only Y fragments coded in this frame */ |
|
1236
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
612 s->last_coded_y_fragment = s->coded_fragment_list_index - 1; |
| 2967 | 613 else |
|
1292
f7b3fa4bb7ae
revising and fixing motion vectors, squished block unpacking bug that
tmmm
parents:
1282
diff
changeset
|
614 /* end the list of coded C fragments */ |
|
1236
d6e4784ffc16
dump the shady binary search logic (the part that binary searches
tmmm
parents:
1233
diff
changeset
|
615 s->last_coded_c_fragment = s->coded_fragment_list_index - 1; |
|
1272
777d4145cdfb
fix subtle logic problem in block unpacker that leads to incorrect token
tmmm
parents:
1244
diff
changeset
|
616 |
|
10619
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
617 for (i = 0; i < s->fragment_count - 1; i++) { |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
618 s->fast_fragment_list[i] = i + 1; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
619 } |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
620 s->fast_fragment_list[s->fragment_count - 1] = -1; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
621 |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
622 if (s->last_coded_y_fragment == -1) |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
623 s->fragment_list_y_head = -1; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
624 else { |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
625 s->fragment_list_y_head = s->first_coded_y_fragment; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
626 s->fast_fragment_list[s->last_coded_y_fragment] = -1; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
627 } |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
628 |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
629 if (s->last_coded_c_fragment == -1) |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
630 s->fragment_list_c_head = -1; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
631 else { |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
632 s->fragment_list_c_head = s->first_coded_c_fragment; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
633 s->fast_fragment_list[s->last_coded_c_fragment] = -1; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
634 } |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
635 |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
636 return 0; |
| 1224 | 637 } |
| 638 | |
| 639 /* | |
| 640 * This function unpacks all the coding mode data for individual macroblocks | |
| 641 * from the bitstream. | |
| 642 */ | |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
643 static int unpack_modes(Vp3DecodeContext *s, GetBitContext *gb) |
| 1224 | 644 { |
| 11149 | 645 int i, j, k, sb_x, sb_y; |
| 1224 | 646 int scheme; |
| 647 int current_macroblock; | |
| 648 int current_fragment; | |
| 649 int coding_mode; | |
|
7139
03fe3194eff7
make ModeAlphabet read-only and use a custom mode alphabet
stefang
parents:
7040
diff
changeset
|
650 int custom_mode_alphabet[CODING_MODE_COUNT]; |
| 11153 | 651 const int *alphabet; |
| 1224 | 652 |
| 653 if (s->keyframe) { | |
| 654 for (i = 0; i < s->fragment_count; i++) | |
| 655 s->all_fragments[i].coding_method = MODE_INTRA; | |
| 656 | |
| 657 } else { | |
| 658 | |
| 659 /* fetch the mode coding scheme for this frame */ | |
| 660 scheme = get_bits(gb, 3); | |
| 661 | |
| 662 /* is it a custom coding scheme? */ | |
| 663 if (scheme == 0) { | |
| 664 for (i = 0; i < 8; i++) | |
|
8736
f973fff63599
VP3: Prevent stack corruption from an unset custom coding method.
alexc
parents:
8718
diff
changeset
|
665 custom_mode_alphabet[i] = MODE_INTER_NO_MV; |
|
f973fff63599
VP3: Prevent stack corruption from an unset custom coding method.
alexc
parents:
8718
diff
changeset
|
666 for (i = 0; i < 8; i++) |
|
7139
03fe3194eff7
make ModeAlphabet read-only and use a custom mode alphabet
stefang
parents:
7040
diff
changeset
|
667 custom_mode_alphabet[get_bits(gb, 3)] = i; |
| 11153 | 668 alphabet = custom_mode_alphabet; |
| 669 } else | |
| 670 alphabet = ModeAlphabet[scheme-1]; | |
| 1224 | 671 |
| 672 /* iterate through all of the macroblocks that contain 1 or more | |
| 673 * coded fragments */ | |
| 11149 | 674 for (sb_y = 0; sb_y < s->y_superblock_height; sb_y++) { |
| 675 for (sb_x = 0; sb_x < s->y_superblock_width; sb_x++) { | |
| 1224 | 676 |
| 677 for (j = 0; j < 4; j++) { | |
| 11149 | 678 int mb_x = 2*sb_x + (j>>1); |
| 679 int mb_y = 2*sb_y + (((j>>1)+j)&1); | |
| 11151 | 680 int frags_coded = 0; |
| 11149 | 681 current_macroblock = mb_y * s->macroblock_width + mb_x; |
| 682 | |
| 11151 | 683 if (mb_x >= s->macroblock_width || mb_y >= s->macroblock_height) |
| 1224 | 684 continue; |
| 685 | |
| 11150 | 686 #define BLOCK_X (2*mb_x + (k&1)) |
| 687 #define BLOCK_Y (2*mb_y + (k>>1)) | |
| 11151 | 688 /* coding modes are only stored if the macroblock has at least one |
| 689 * luma block coded, otherwise it must be INTER_NO_MV */ | |
| 690 for (k = 0; k < 4; k++) { | |
| 691 current_fragment = BLOCK_Y*s->fragment_width + BLOCK_X; | |
| 692 if (s->all_fragments[current_fragment].coding_method != MODE_COPY) | |
| 693 break; | |
| 694 } | |
| 695 if (k == 4) { | |
| 696 s->macroblock_coding[current_macroblock] = MODE_INTER_NO_MV; | |
| 697 continue; | |
| 698 } | |
| 11150 | 699 |
| 1224 | 700 /* mode 7 means get 3 bits for each coding mode */ |
| 701 if (scheme == 7) | |
| 702 coding_mode = get_bits(gb, 3); | |
| 703 else | |
| 11153 | 704 coding_mode = alphabet |
|
2702
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
705 [get_vlc2(gb, s->mode_code_vlc.table, 3, 3)]; |
| 1224 | 706 |
|
1240
c95ff60bc1a1
fix motion vector decoding bug and reinstate interframes
tmmm
parents:
1239
diff
changeset
|
707 s->macroblock_coding[current_macroblock] = coding_mode; |
| 11150 | 708 for (k = 0; k < 4; k++) { |
| 2967 | 709 current_fragment = |
| 11150 | 710 BLOCK_Y*s->fragment_width + BLOCK_X; |
| 711 if (s->all_fragments[current_fragment].coding_method != | |
| 712 MODE_COPY) | |
| 713 s->all_fragments[current_fragment].coding_method = | |
| 714 coding_mode; | |
| 715 } | |
| 716 for (k = 0; k < 2; k++) { | |
| 717 current_fragment = s->fragment_start[k+1] + | |
| 718 mb_y*(s->fragment_width>>1) + mb_x; | |
| 2967 | 719 if (s->all_fragments[current_fragment].coding_method != |
| 1224 | 720 MODE_COPY) |
| 721 s->all_fragments[current_fragment].coding_method = | |
| 722 coding_mode; | |
| 723 } | |
| 724 } | |
| 11149 | 725 } |
| 1224 | 726 } |
| 727 } | |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
728 |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
729 return 0; |
|
1229
cefec170ee46
fixed buffer allocation logic (hopefully) so that decoder does not crash
tmmm
parents:
1227
diff
changeset
|
730 } |
|
cefec170ee46
fixed buffer allocation logic (hopefully) so that decoder does not crash
tmmm
parents:
1227
diff
changeset
|
731 |
|
cefec170ee46
fixed buffer allocation logic (hopefully) so that decoder does not crash
tmmm
parents:
1227
diff
changeset
|
732 /* |
| 1224 | 733 * This function unpacks all the motion vectors for the individual |
| 734 * macroblocks from the bitstream. | |
| 735 */ | |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
736 static int unpack_vectors(Vp3DecodeContext *s, GetBitContext *gb) |
| 1224 | 737 { |
|
11152
b3ff7fcfffc4
Directly check whether a fragment is coded for 4MV mode instead of iterating
conrad
parents:
11151
diff
changeset
|
738 int j, k, sb_x, sb_y; |
| 1224 | 739 int coding_mode; |
| 740 int motion_x[6]; | |
| 741 int motion_y[6]; | |
| 742 int last_motion_x = 0; | |
| 743 int last_motion_y = 0; | |
| 744 int prior_last_motion_x = 0; | |
| 745 int prior_last_motion_y = 0; | |
| 746 int current_macroblock; | |
| 747 int current_fragment; | |
| 748 | |
| 7970 | 749 if (s->keyframe) |
| 7969 | 750 return 0; |
| 7971 | 751 |
| 7972 | 752 memset(motion_x, 0, 6 * sizeof(int)); |
| 753 memset(motion_y, 0, 6 * sizeof(int)); | |
| 1224 | 754 |
| 7972 | 755 /* coding mode 0 is the VLC scheme; 1 is the fixed code scheme */ |
| 756 coding_mode = get_bits1(gb); | |
| 1224 | 757 |
| 7972 | 758 /* iterate through all of the macroblocks that contain 1 or more |
| 759 * coded fragments */ | |
| 11149 | 760 for (sb_y = 0; sb_y < s->y_superblock_height; sb_y++) { |
| 761 for (sb_x = 0; sb_x < s->y_superblock_width; sb_x++) { | |
| 1224 | 762 |
| 7972 | 763 for (j = 0; j < 4; j++) { |
| 11149 | 764 int mb_x = 2*sb_x + (j>>1); |
| 765 int mb_y = 2*sb_y + (((j>>1)+j)&1); | |
| 766 current_macroblock = mb_y * s->macroblock_width + mb_x; | |
| 767 | |
| 768 if (mb_x >= s->macroblock_width || mb_y >= s->macroblock_height || | |
| 7972 | 769 (s->macroblock_coding[current_macroblock] == MODE_COPY)) |
| 770 continue; | |
| 771 | |
| 772 switch (s->macroblock_coding[current_macroblock]) { | |
| 773 | |
| 774 case MODE_INTER_PLUS_MV: | |
| 775 case MODE_GOLDEN_MV: | |
| 776 /* all 6 fragments use the same motion vector */ | |
| 777 if (coding_mode == 0) { | |
| 778 motion_x[0] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)]; | |
| 779 motion_y[0] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)]; | |
| 780 } else { | |
| 781 motion_x[0] = fixed_motion_vector_table[get_bits(gb, 6)]; | |
| 782 motion_y[0] = fixed_motion_vector_table[get_bits(gb, 6)]; | |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
783 } |
| 1224 | 784 |
| 7972 | 785 /* vector maintenance, only on MODE_INTER_PLUS_MV */ |
| 786 if (s->macroblock_coding[current_macroblock] == | |
| 787 MODE_INTER_PLUS_MV) { | |
| 1224 | 788 prior_last_motion_x = last_motion_x; |
| 789 prior_last_motion_y = last_motion_y; | |
| 790 last_motion_x = motion_x[0]; | |
| 791 last_motion_y = motion_y[0]; | |
| 7972 | 792 } |
| 793 break; | |
| 794 | |
| 795 case MODE_INTER_FOURMV: | |
| 796 /* vector maintenance */ | |
| 797 prior_last_motion_x = last_motion_x; | |
| 798 prior_last_motion_y = last_motion_y; | |
|
1229
cefec170ee46
fixed buffer allocation logic (hopefully) so that decoder does not crash
tmmm
parents:
1227
diff
changeset
|
799 |
| 7972 | 800 /* fetch 4 vectors from the bitstream, one for each |
| 801 * Y fragment, then average for the C fragment vectors */ | |
| 802 motion_x[4] = motion_y[4] = 0; | |
| 803 for (k = 0; k < 4; k++) { | |
| 11150 | 804 current_fragment = BLOCK_Y*s->fragment_width + BLOCK_X; |
|
11152
b3ff7fcfffc4
Directly check whether a fragment is coded for 4MV mode instead of iterating
conrad
parents:
11151
diff
changeset
|
805 if (s->all_fragments[current_fragment].coding_method != MODE_COPY) { |
| 7972 | 806 if (coding_mode == 0) { |
| 807 motion_x[k] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)]; | |
| 808 motion_y[k] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)]; | |
| 809 } else { | |
| 810 motion_x[k] = fixed_motion_vector_table[get_bits(gb, 6)]; | |
| 811 motion_y[k] = fixed_motion_vector_table[get_bits(gb, 6)]; | |
| 812 } | |
| 813 last_motion_x = motion_x[k]; | |
| 814 last_motion_y = motion_y[k]; | |
| 815 } else { | |
| 816 motion_x[k] = 0; | |
| 817 motion_y[k] = 0; | |
| 818 } | |
| 819 motion_x[4] += motion_x[k]; | |
| 820 motion_y[4] += motion_y[k]; | |
| 1224 | 821 } |
| 822 | |
| 7972 | 823 motion_x[5]= |
| 824 motion_x[4]= RSHIFT(motion_x[4], 2); | |
| 825 motion_y[5]= | |
| 826 motion_y[4]= RSHIFT(motion_y[4], 2); | |
| 827 break; | |
| 828 | |
| 829 case MODE_INTER_LAST_MV: | |
| 830 /* all 6 fragments use the last motion vector */ | |
| 831 motion_x[0] = last_motion_x; | |
| 832 motion_y[0] = last_motion_y; | |
| 833 | |
| 834 /* no vector maintenance (last vector remains the | |
| 835 * last vector) */ | |
| 836 break; | |
| 837 | |
| 838 case MODE_INTER_PRIOR_LAST: | |
| 839 /* all 6 fragments use the motion vector prior to the | |
| 840 * last motion vector */ | |
| 841 motion_x[0] = prior_last_motion_x; | |
| 842 motion_y[0] = prior_last_motion_y; | |
| 843 | |
| 844 /* vector maintenance */ | |
| 845 prior_last_motion_x = last_motion_x; | |
| 846 prior_last_motion_y = last_motion_y; | |
| 847 last_motion_x = motion_x[0]; | |
| 848 last_motion_y = motion_y[0]; | |
| 849 break; | |
| 850 | |
| 851 default: | |
| 852 /* covers intra, inter without MV, golden without MV */ | |
|
10696
a80851eebd2e
Optimize unpack_vectors() by not shuffling around redundant vectors.
melanson
parents:
10652
diff
changeset
|
853 motion_x[0] = 0; |
|
a80851eebd2e
Optimize unpack_vectors() by not shuffling around redundant vectors.
melanson
parents:
10652
diff
changeset
|
854 motion_y[0] = 0; |
| 7972 | 855 |
| 856 /* no vector maintenance */ | |
| 857 break; | |
| 858 } | |
| 859 | |
| 860 /* assign the motion vectors to the correct fragments */ | |
| 11150 | 861 for (k = 0; k < 4; k++) { |
| 7972 | 862 current_fragment = |
| 11150 | 863 BLOCK_Y*s->fragment_width + BLOCK_X; |
|
10696
a80851eebd2e
Optimize unpack_vectors() by not shuffling around redundant vectors.
melanson
parents:
10652
diff
changeset
|
864 if (s->macroblock_coding[current_macroblock] == MODE_INTER_FOURMV) { |
| 10697 | 865 s->all_fragments[current_fragment].motion_x = motion_x[k]; |
| 866 s->all_fragments[current_fragment].motion_y = motion_y[k]; | |
|
10696
a80851eebd2e
Optimize unpack_vectors() by not shuffling around redundant vectors.
melanson
parents:
10652
diff
changeset
|
867 } else { |
|
a80851eebd2e
Optimize unpack_vectors() by not shuffling around redundant vectors.
melanson
parents:
10652
diff
changeset
|
868 s->all_fragments[current_fragment].motion_x = motion_x[0]; |
|
a80851eebd2e
Optimize unpack_vectors() by not shuffling around redundant vectors.
melanson
parents:
10652
diff
changeset
|
869 s->all_fragments[current_fragment].motion_y = motion_y[0]; |
|
a80851eebd2e
Optimize unpack_vectors() by not shuffling around redundant vectors.
melanson
parents:
10652
diff
changeset
|
870 } |
| 1224 | 871 } |
| 11150 | 872 for (k = 0; k < 2; k++) { |
| 873 current_fragment = s->fragment_start[k+1] + | |
| 874 mb_y*(s->fragment_width>>1) + mb_x; | |
| 875 if (s->macroblock_coding[current_macroblock] == MODE_INTER_FOURMV) { | |
| 876 s->all_fragments[current_fragment].motion_x = motion_x[k+4]; | |
| 877 s->all_fragments[current_fragment].motion_y = motion_y[k+4]; | |
| 878 } else { | |
| 879 s->all_fragments[current_fragment].motion_x = motion_x[0]; | |
| 880 s->all_fragments[current_fragment].motion_y = motion_y[0]; | |
| 881 } | |
| 882 } | |
| 1224 | 883 } |
| 11149 | 884 } |
| 7972 | 885 } |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
886 |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
887 return 0; |
| 1224 | 888 } |
| 889 | |
| 9731 | 890 static int unpack_block_qpis(Vp3DecodeContext *s, GetBitContext *gb) |
| 891 { | |
| 892 int qpi, i, j, bit, run_length, blocks_decoded, num_blocks_at_qpi; | |
| 893 int num_blocks = s->coded_fragment_list_index; | |
| 894 | |
| 895 for (qpi = 0; qpi < s->nqps-1 && num_blocks > 0; qpi++) { | |
| 896 i = blocks_decoded = num_blocks_at_qpi = 0; | |
| 897 | |
| 898 bit = get_bits1(gb); | |
| 899 | |
| 900 do { | |
| 901 run_length = get_vlc2(gb, s->superblock_run_length_vlc.table, 6, 2) + 1; | |
| 902 if (run_length == 34) | |
| 903 run_length += get_bits(gb, 12); | |
| 904 blocks_decoded += run_length; | |
| 905 | |
| 906 if (!bit) | |
| 907 num_blocks_at_qpi += run_length; | |
| 908 | |
| 909 for (j = 0; j < run_length; i++) { | |
| 10249 | 910 if (i >= s->coded_fragment_list_index) |
| 9731 | 911 return -1; |
| 912 | |
| 913 if (s->all_fragments[s->coded_fragment_list[i]].qpi == qpi) { | |
| 914 s->all_fragments[s->coded_fragment_list[i]].qpi += bit; | |
| 915 j++; | |
| 916 } | |
| 917 } | |
| 918 | |
| 919 if (run_length == 4129) | |
| 920 bit = get_bits1(gb); | |
| 921 else | |
| 922 bit ^= 1; | |
| 923 } while (blocks_decoded < num_blocks); | |
| 924 | |
| 925 num_blocks -= num_blocks_at_qpi; | |
| 926 } | |
| 927 | |
| 928 return 0; | |
| 929 } | |
| 930 | |
| 2967 | 931 /* |
| 1224 | 932 * This function is called by unpack_dct_coeffs() to extract the VLCs from |
| 933 * the bitstream. The VLCs encode tokens which are used to unpack DCT | |
| 934 * data. This function unpacks all the VLCs for either the Y plane or both | |
| 935 * C planes, and is called for DC coefficients or different AC coefficient | |
| 936 * levels (since different coefficient types require different VLC tables. | |
| 937 * | |
| 938 * This function returns a residual eob run. E.g, if a particular token gave | |
| 939 * instructions to EOB the next 5 fragments and there were only 2 fragments | |
| 940 * left in the current fragment range, 3 would be returned so that it could | |
| 941 * be passed into the next call to this same function. | |
| 942 */ | |
| 943 static int unpack_vlcs(Vp3DecodeContext *s, GetBitContext *gb, | |
| 944 VLC *table, int coeff_index, | |
|
10619
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
945 int y_plane, |
| 1224 | 946 int eob_run) |
| 947 { | |
| 948 int i; | |
| 949 int token; | |
|
2712
9c1a436dac6b
replace unpack_token() with a series of lookup tables
melanson
parents:
2709
diff
changeset
|
950 int zero_run = 0; |
|
9c1a436dac6b
replace unpack_token() with a series of lookup tables
melanson
parents:
2709
diff
changeset
|
951 DCTELEM coeff = 0; |
| 1224 | 952 Vp3Fragment *fragment; |
|
10202
d0456fd306d2
Modify unpack_vlcs() so that there are fewer dereferences through the
melanson
parents:
10140
diff
changeset
|
953 int bits_to_get; |
|
10619
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
954 int next_fragment; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
955 int previous_fragment; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
956 int fragment_num; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
957 int *list_head; |
|
10202
d0456fd306d2
Modify unpack_vlcs() so that there are fewer dereferences through the
melanson
parents:
10140
diff
changeset
|
958 |
|
d0456fd306d2
Modify unpack_vlcs() so that there are fewer dereferences through the
melanson
parents:
10140
diff
changeset
|
959 /* local references to structure members to avoid repeated deferences */ |
| 2694 | 960 uint8_t *perm= s->scantable.permutated; |
|
10202
d0456fd306d2
Modify unpack_vlcs() so that there are fewer dereferences through the
melanson
parents:
10140
diff
changeset
|
961 int *coded_fragment_list = s->coded_fragment_list; |
|
d0456fd306d2
Modify unpack_vlcs() so that there are fewer dereferences through the
melanson
parents:
10140
diff
changeset
|
962 Vp3Fragment *all_fragments = s->all_fragments; |
|
d0456fd306d2
Modify unpack_vlcs() so that there are fewer dereferences through the
melanson
parents:
10140
diff
changeset
|
963 uint8_t *coeff_counts = s->coeff_counts; |
|
d0456fd306d2
Modify unpack_vlcs() so that there are fewer dereferences through the
melanson
parents:
10140
diff
changeset
|
964 VLC_TYPE (*vlc_table)[2] = table->table; |
|
10619
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
965 int *fast_fragment_list = s->fast_fragment_list; |
|
1244
a02df1ba6c7f
fix image buffer leak on keyframes, add more error condition checks
tmmm
parents:
1240
diff
changeset
|
966 |
|
10619
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
967 if (y_plane) { |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
968 next_fragment = s->fragment_list_y_head; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
969 list_head = &s->fragment_list_y_head; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
970 } else { |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
971 next_fragment = s->fragment_list_c_head; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
972 list_head = &s->fragment_list_c_head; |
|
1244
a02df1ba6c7f
fix image buffer leak on keyframes, add more error condition checks
tmmm
parents:
1240
diff
changeset
|
973 } |
|
a02df1ba6c7f
fix image buffer leak on keyframes, add more error condition checks
tmmm
parents:
1240
diff
changeset
|
974 |
|
10619
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
975 i = next_fragment; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
976 previous_fragment = -1; /* this indicates that the previous fragment is actually the list head */ |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
977 while (i != -1) { |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
978 fragment_num = coded_fragment_list[i]; |
|
7037
480faa9f79dd
Almost-cosmetics: split out coeff_count from all_fragments struct into
reimar
parents:
6903
diff
changeset
|
979 |
|
10619
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
980 if (coeff_counts[fragment_num] > coeff_index) { |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
981 previous_fragment = i; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
982 i = fast_fragment_list[i]; |
| 1224 | 983 continue; |
|
10619
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
984 } |
|
10202
d0456fd306d2
Modify unpack_vlcs() so that there are fewer dereferences through the
melanson
parents:
10140
diff
changeset
|
985 fragment = &all_fragments[fragment_num]; |
| 1224 | 986 |
| 987 if (!eob_run) { | |
| 988 /* decode a VLC into a token */ | |
|
10202
d0456fd306d2
Modify unpack_vlcs() so that there are fewer dereferences through the
melanson
parents:
10140
diff
changeset
|
989 token = get_vlc2(gb, vlc_table, 5, 3); |
| 1224 | 990 /* use the token to get a zero run, a coefficient, and an eob run */ |
|
2712
9c1a436dac6b
replace unpack_token() with a series of lookup tables
melanson
parents:
2709
diff
changeset
|
991 if (token <= 6) { |
|
9c1a436dac6b
replace unpack_token() with a series of lookup tables
melanson
parents:
2709
diff
changeset
|
992 eob_run = eob_run_base[token]; |
|
9c1a436dac6b
replace unpack_token() with a series of lookup tables
melanson
parents:
2709
diff
changeset
|
993 if (eob_run_get_bits[token]) |
|
9c1a436dac6b
replace unpack_token() with a series of lookup tables
melanson
parents:
2709
diff
changeset
|
994 eob_run += get_bits(gb, eob_run_get_bits[token]); |
|
9c1a436dac6b
replace unpack_token() with a series of lookup tables
melanson
parents:
2709
diff
changeset
|
995 coeff = zero_run = 0; |
|
9c1a436dac6b
replace unpack_token() with a series of lookup tables
melanson
parents:
2709
diff
changeset
|
996 } else { |
|
9c1a436dac6b
replace unpack_token() with a series of lookup tables
melanson
parents:
2709
diff
changeset
|
997 bits_to_get = coeff_get_bits[token]; |
|
10230
afaf58d1e894
Another micro-optimization for unpack_vlcs(): Eliminate a possible
melanson
parents:
10223
diff
changeset
|
998 if (bits_to_get) |
|
afaf58d1e894
Another micro-optimization for unpack_vlcs(): Eliminate a possible
melanson
parents:
10223
diff
changeset
|
999 bits_to_get = get_bits(gb, bits_to_get); |
|
afaf58d1e894
Another micro-optimization for unpack_vlcs(): Eliminate a possible
melanson
parents:
10223
diff
changeset
|
1000 coeff = coeff_tables[token][bits_to_get]; |
|
2712
9c1a436dac6b
replace unpack_token() with a series of lookup tables
melanson
parents:
2709
diff
changeset
|
1001 |
|
9c1a436dac6b
replace unpack_token() with a series of lookup tables
melanson
parents:
2709
diff
changeset
|
1002 zero_run = zero_run_base[token]; |
|
9c1a436dac6b
replace unpack_token() with a series of lookup tables
melanson
parents:
2709
diff
changeset
|
1003 if (zero_run_get_bits[token]) |
|
9c1a436dac6b
replace unpack_token() with a series of lookup tables
melanson
parents:
2709
diff
changeset
|
1004 zero_run += get_bits(gb, zero_run_get_bits[token]); |
|
9c1a436dac6b
replace unpack_token() with a series of lookup tables
melanson
parents:
2709
diff
changeset
|
1005 } |
| 1224 | 1006 } |
| 1007 | |
| 1008 if (!eob_run) { | |
|
10202
d0456fd306d2
Modify unpack_vlcs() so that there are fewer dereferences through the
melanson
parents:
10140
diff
changeset
|
1009 coeff_counts[fragment_num] += zero_run; |
|
d0456fd306d2
Modify unpack_vlcs() so that there are fewer dereferences through the
melanson
parents:
10140
diff
changeset
|
1010 if (coeff_counts[fragment_num] < 64){ |
|
2714
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1011 fragment->next_coeff->coeff= coeff; |
|
10202
d0456fd306d2
Modify unpack_vlcs() so that there are fewer dereferences through the
melanson
parents:
10140
diff
changeset
|
1012 fragment->next_coeff->index= perm[coeff_counts[fragment_num]++]; //FIXME perm here already? |
|
2714
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1013 fragment->next_coeff->next= s->next_coeff; |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1014 s->next_coeff->next=NULL; |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1015 fragment->next_coeff= s->next_coeff++; |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1016 } |
|
10619
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
1017 /* previous fragment is now this fragment */ |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
1018 previous_fragment = i; |
| 1224 | 1019 } else { |
|
10202
d0456fd306d2
Modify unpack_vlcs() so that there are fewer dereferences through the
melanson
parents:
10140
diff
changeset
|
1020 coeff_counts[fragment_num] |= 128; |
| 1224 | 1021 eob_run--; |
|
10619
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
1022 /* remove this fragment from the list */ |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
1023 if (previous_fragment != -1) |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
1024 fast_fragment_list[previous_fragment] = fast_fragment_list[i]; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
1025 else |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
1026 *list_head = fast_fragment_list[i]; |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
1027 /* previous fragment remains unchanged */ |
| 1224 | 1028 } |
|
10619
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
1029 |
|
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
1030 i = fast_fragment_list[i]; |
| 1224 | 1031 } |
| 1032 | |
| 1033 return eob_run; | |
| 1034 } | |
| 1035 | |
|
10223
b08865f6d4e3
Perform the DC prediction reversal immediately after decoding all of
melanson
parents:
10202
diff
changeset
|
1036 static void reverse_dc_prediction(Vp3DecodeContext *s, |
|
b08865f6d4e3
Perform the DC prediction reversal immediately after decoding all of
melanson
parents:
10202
diff
changeset
|
1037 int first_fragment, |
|
b08865f6d4e3
Perform the DC prediction reversal immediately after decoding all of
melanson
parents:
10202
diff
changeset
|
1038 int fragment_width, |
|
b08865f6d4e3
Perform the DC prediction reversal immediately after decoding all of
melanson
parents:
10202
diff
changeset
|
1039 int fragment_height); |
| 1224 | 1040 /* |
| 1041 * This function unpacks all of the DCT coefficient data from the | |
| 1042 * bitstream. | |
| 1043 */ | |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1044 static int unpack_dct_coeffs(Vp3DecodeContext *s, GetBitContext *gb) |
| 1224 | 1045 { |
| 1046 int i; | |
| 1047 int dc_y_table; | |
| 1048 int dc_c_table; | |
| 1049 int ac_y_table; | |
| 1050 int ac_c_table; | |
| 1051 int residual_eob_run = 0; | |
|
10620
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1052 VLC *y_tables[64]; |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1053 VLC *c_tables[64]; |
| 1224 | 1054 |
| 6903 | 1055 /* fetch the DC table indexes */ |
| 1224 | 1056 dc_y_table = get_bits(gb, 4); |
| 1057 dc_c_table = get_bits(gb, 4); | |
| 1058 | |
| 1059 /* unpack the Y plane DC coefficients */ | |
| 2967 | 1060 residual_eob_run = unpack_vlcs(s, gb, &s->dc_vlc[dc_y_table], 0, |
|
10619
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
1061 1, residual_eob_run); |
| 1224 | 1062 |
|
10223
b08865f6d4e3
Perform the DC prediction reversal immediately after decoding all of
melanson
parents:
10202
diff
changeset
|
1063 /* reverse prediction of the Y-plane DC coefficients */ |
|
b08865f6d4e3
Perform the DC prediction reversal immediately after decoding all of
melanson
parents:
10202
diff
changeset
|
1064 reverse_dc_prediction(s, 0, s->fragment_width, s->fragment_height); |
|
b08865f6d4e3
Perform the DC prediction reversal immediately after decoding all of
melanson
parents:
10202
diff
changeset
|
1065 |
| 1224 | 1066 /* unpack the C plane DC coefficients */ |
| 1067 residual_eob_run = unpack_vlcs(s, gb, &s->dc_vlc[dc_c_table], 0, | |
|
10619
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
1068 0, residual_eob_run); |
| 1224 | 1069 |
|
10223
b08865f6d4e3
Perform the DC prediction reversal immediately after decoding all of
melanson
parents:
10202
diff
changeset
|
1070 /* reverse prediction of the C-plane DC coefficients */ |
|
b08865f6d4e3
Perform the DC prediction reversal immediately after decoding all of
melanson
parents:
10202
diff
changeset
|
1071 if (!(s->avctx->flags & CODEC_FLAG_GRAY)) |
|
b08865f6d4e3
Perform the DC prediction reversal immediately after decoding all of
melanson
parents:
10202
diff
changeset
|
1072 { |
|
b08865f6d4e3
Perform the DC prediction reversal immediately after decoding all of
melanson
parents:
10202
diff
changeset
|
1073 reverse_dc_prediction(s, s->fragment_start[1], |
|
b08865f6d4e3
Perform the DC prediction reversal immediately after decoding all of
melanson
parents:
10202
diff
changeset
|
1074 s->fragment_width / 2, s->fragment_height / 2); |
|
b08865f6d4e3
Perform the DC prediction reversal immediately after decoding all of
melanson
parents:
10202
diff
changeset
|
1075 reverse_dc_prediction(s, s->fragment_start[2], |
|
b08865f6d4e3
Perform the DC prediction reversal immediately after decoding all of
melanson
parents:
10202
diff
changeset
|
1076 s->fragment_width / 2, s->fragment_height / 2); |
|
b08865f6d4e3
Perform the DC prediction reversal immediately after decoding all of
melanson
parents:
10202
diff
changeset
|
1077 } |
|
b08865f6d4e3
Perform the DC prediction reversal immediately after decoding all of
melanson
parents:
10202
diff
changeset
|
1078 |
| 6903 | 1079 /* fetch the AC table indexes */ |
| 1224 | 1080 ac_y_table = get_bits(gb, 4); |
| 1081 ac_c_table = get_bits(gb, 4); | |
| 1082 | |
|
10620
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1083 /* build tables of AC VLC tables */ |
| 1224 | 1084 for (i = 1; i <= 5; i++) { |
|
10620
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1085 y_tables[i] = &s->ac_vlc_1[ac_y_table]; |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1086 c_tables[i] = &s->ac_vlc_1[ac_c_table]; |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1087 } |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1088 for (i = 6; i <= 14; i++) { |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1089 y_tables[i] = &s->ac_vlc_2[ac_y_table]; |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1090 c_tables[i] = &s->ac_vlc_2[ac_c_table]; |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1091 } |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1092 for (i = 15; i <= 27; i++) { |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1093 y_tables[i] = &s->ac_vlc_3[ac_y_table]; |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1094 c_tables[i] = &s->ac_vlc_3[ac_c_table]; |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1095 } |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1096 for (i = 28; i <= 63; i++) { |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1097 y_tables[i] = &s->ac_vlc_4[ac_y_table]; |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1098 c_tables[i] = &s->ac_vlc_4[ac_c_table]; |
| 1224 | 1099 } |
| 1100 | |
|
10620
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1101 /* decode all AC coefficents */ |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1102 for (i = 1; i <= 63; i++) { |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1103 if (s->fragment_list_y_head != -1) |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1104 residual_eob_run = unpack_vlcs(s, gb, y_tables[i], i, |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1105 1, residual_eob_run); |
| 1224 | 1106 |
|
10620
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1107 if (s->fragment_list_c_head != -1) |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1108 residual_eob_run = unpack_vlcs(s, gb, c_tables[i], i, |
|
972b17631531
Small refactoring: Instead of 4 loops for decoding AC coefficients based
melanson
parents:
10619
diff
changeset
|
1109 0, residual_eob_run); |
| 1224 | 1110 } |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1111 |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1112 return 0; |
| 1224 | 1113 } |
| 1114 | |
| 1115 /* | |
| 1116 * This function reverses the DC prediction for each coded fragment in | |
| 2967 | 1117 * the frame. Much of this function is adapted directly from the original |
| 1224 | 1118 * VP3 source code. |
| 1119 */ | |
| 1120 #define COMPATIBLE_FRAME(x) \ | |
| 1121 (compatible_frame[s->all_fragments[x].coding_method] == current_frame_type) | |
|
2714
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1122 #define DC_COEFF(u) (s->coeffs[u].index ? 0 : s->coeffs[u].coeff) //FIXME do somethin to simplify this |
| 1224 | 1123 |
| 1124 static void reverse_dc_prediction(Vp3DecodeContext *s, | |
| 1125 int first_fragment, | |
| 1126 int fragment_width, | |
| 2967 | 1127 int fragment_height) |
| 1224 | 1128 { |
| 1129 | |
| 1130 #define PUL 8 | |
| 1131 #define PU 4 | |
| 1132 #define PUR 2 | |
| 1133 #define PL 1 | |
| 1134 | |
| 1135 int x, y; | |
| 1136 int i = first_fragment; | |
| 1137 | |
| 3940 | 1138 int predicted_dc; |
| 1224 | 1139 |
| 1140 /* DC values for the left, up-left, up, and up-right fragments */ | |
| 1141 int vl, vul, vu, vur; | |
| 1142 | |
| 6903 | 1143 /* indexes for the left, up-left, up, and up-right fragments */ |
| 1224 | 1144 int l, ul, u, ur; |
| 1145 | |
| 2967 | 1146 /* |
| 1224 | 1147 * The 6 fields mean: |
| 1148 * 0: up-left multiplier | |
| 1149 * 1: up multiplier | |
| 1150 * 2: up-right multiplier | |
| 1151 * 3: left multiplier | |
| 1152 */ | |
| 10133 | 1153 static const int predictor_transform[16][4] = { |
| 3501 | 1154 { 0, 0, 0, 0}, |
| 1155 { 0, 0, 0,128}, // PL | |
| 1156 { 0, 0,128, 0}, // PUR | |
| 1157 { 0, 0, 53, 75}, // PUR|PL | |
| 1158 { 0,128, 0, 0}, // PU | |
| 1159 { 0, 64, 0, 64}, // PU|PL | |
| 1160 { 0,128, 0, 0}, // PU|PUR | |
| 1161 { 0, 0, 53, 75}, // PU|PUR|PL | |
| 1162 {128, 0, 0, 0}, // PUL | |
| 1163 { 0, 0, 0,128}, // PUL|PL | |
| 1164 { 64, 0, 64, 0}, // PUL|PUR | |
| 1165 { 0, 0, 53, 75}, // PUL|PUR|PL | |
| 1166 { 0,128, 0, 0}, // PUL|PU | |
| 1167 {-104,116, 0,116}, // PUL|PU|PL | |
| 1168 { 24, 80, 24, 0}, // PUL|PU|PUR | |
| 1169 {-104,116, 0,116} // PUL|PU|PUR|PL | |
| 1224 | 1170 }; |
| 1171 | |
| 1172 /* This table shows which types of blocks can use other blocks for | |
| 1173 * prediction. For example, INTRA is the only mode in this table to | |
| 1174 * have a frame number of 0. That means INTRA blocks can only predict | |
| 2967 | 1175 * from other INTRA blocks. There are 2 golden frame coding types; |
| 1224 | 1176 * blocks encoding in these modes can only predict from other blocks |
| 1177 * that were encoded with these 1 of these 2 modes. */ | |
| 10650 | 1178 static const unsigned char compatible_frame[9] = { |
| 1224 | 1179 1, /* MODE_INTER_NO_MV */ |
| 1180 0, /* MODE_INTRA */ | |
| 1181 1, /* MODE_INTER_PLUS_MV */ | |
| 1182 1, /* MODE_INTER_LAST_MV */ | |
| 1183 1, /* MODE_INTER_PRIOR_MV */ | |
| 1184 2, /* MODE_USING_GOLDEN */ | |
| 1185 2, /* MODE_GOLDEN_MV */ | |
| 10650 | 1186 1, /* MODE_INTER_FOUR_MV */ |
| 1187 3 /* MODE_COPY */ | |
| 1224 | 1188 }; |
| 1189 int current_frame_type; | |
| 1190 | |
| 1191 /* there is a last DC predictor for each of the 3 frame types */ | |
| 1192 short last_dc[3]; | |
| 1193 | |
| 1194 int transform = 0; | |
| 1195 | |
| 1196 vul = vu = vur = vl = 0; | |
| 1197 last_dc[0] = last_dc[1] = last_dc[2] = 0; | |
| 1198 | |
| 1199 /* for each fragment row... */ | |
| 1200 for (y = 0; y < fragment_height; y++) { | |
| 1201 | |
| 1202 /* for each fragment in a row... */ | |
| 1203 for (x = 0; x < fragment_width; x++, i++) { | |
| 1204 | |
| 1205 /* reverse prediction if this block was coded */ | |
| 1206 if (s->all_fragments[i].coding_method != MODE_COPY) { | |
| 1207 | |
| 2967 | 1208 current_frame_type = |
| 1224 | 1209 compatible_frame[s->all_fragments[i].coding_method]; |
| 3500 | 1210 |
| 1211 transform= 0; | |
| 1212 if(x){ | |
| 1213 l= i-1; | |
|
2714
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1214 vl = DC_COEFF(l); |
| 10650 | 1215 if(COMPATIBLE_FRAME(l)) |
| 3501 | 1216 transform |= PL; |
| 3500 | 1217 } |
| 1218 if(y){ | |
| 1219 u= i-fragment_width; | |
|
2714
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1220 vu = DC_COEFF(u); |
| 10650 | 1221 if(COMPATIBLE_FRAME(u)) |
| 3501 | 1222 transform |= PU; |
| 3500 | 1223 if(x){ |
| 1224 ul= i-fragment_width-1; | |
| 1225 vul = DC_COEFF(ul); | |
| 10650 | 1226 if(COMPATIBLE_FRAME(ul)) |
| 3501 | 1227 transform |= PUL; |
| 3500 | 1228 } |
| 1229 if(x + 1 < fragment_width){ | |
| 1230 ur= i-fragment_width+1; | |
| 1231 vur = DC_COEFF(ur); | |
| 10650 | 1232 if(COMPATIBLE_FRAME(ur)) |
| 3501 | 1233 transform |= PUR; |
| 3500 | 1234 } |
| 1224 | 1235 } |
| 1236 | |
| 1237 if (transform == 0) { | |
| 1238 | |
| 1239 /* if there were no fragments to predict from, use last | |
| 1240 * DC saved */ | |
|
2714
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1241 predicted_dc = last_dc[current_frame_type]; |
| 1224 | 1242 } else { |
| 1243 | |
| 1244 /* apply the appropriate predictor transform */ | |
| 1245 predicted_dc = | |
| 1246 (predictor_transform[transform][0] * vul) + | |
| 1247 (predictor_transform[transform][1] * vu) + | |
| 1248 (predictor_transform[transform][2] * vur) + | |
| 1249 (predictor_transform[transform][3] * vl); | |
| 1250 | |
| 3502 | 1251 predicted_dc /= 128; |
| 1224 | 1252 |
| 1253 /* check for outranging on the [ul u l] and | |
| 1254 * [ul u ur l] predictors */ | |
|
10649
a34d38ec5a0b
Check transform==15 first, since it's more common than 13.
cehoyos
parents:
10648
diff
changeset
|
1255 if ((transform == 15) || (transform == 13)) { |
| 4001 | 1256 if (FFABS(predicted_dc - vu) > 128) |
| 1224 | 1257 predicted_dc = vu; |
| 4001 | 1258 else if (FFABS(predicted_dc - vl) > 128) |
| 1224 | 1259 predicted_dc = vl; |
| 4001 | 1260 else if (FFABS(predicted_dc - vul) > 128) |
| 1224 | 1261 predicted_dc = vul; |
| 1262 } | |
| 1263 } | |
| 1264 | |
|
2714
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1265 /* at long last, apply the predictor */ |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1266 if(s->coeffs[i].index){ |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1267 *s->next_coeff= s->coeffs[i]; |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1268 s->coeffs[i].index=0; |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1269 s->coeffs[i].coeff=0; |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1270 s->coeffs[i].next= s->next_coeff++; |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1271 } |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1272 s->coeffs[i].coeff += predicted_dc; |
| 1224 | 1273 /* save the DC */ |
|
2714
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1274 last_dc[current_frame_type] = DC_COEFF(i); |
|
7037
480faa9f79dd
Almost-cosmetics: split out coeff_count from all_fragments struct into
reimar
parents:
6903
diff
changeset
|
1275 if(DC_COEFF(i) && !(s->coeff_counts[i]&127)){ |
|
480faa9f79dd
Almost-cosmetics: split out coeff_count from all_fragments struct into
reimar
parents:
6903
diff
changeset
|
1276 s->coeff_counts[i]= 129; |
|
2714
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1277 // s->all_fragments[i].next_coeff= s->next_coeff; |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1278 s->coeffs[i].next= s->next_coeff; |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1279 (s->next_coeff++)->next=NULL; |
|
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1280 } |
| 1224 | 1281 } |
| 1282 } | |
| 1283 } | |
| 1284 } | |
| 1285 | |
| 11130 | 1286 static void apply_loop_filter(Vp3DecodeContext *s, int plane, int ystart, int yend) |
|
11129
0bca1b2ac58d
Move apply_loop_filter above render_slice, it'll be used by the latter soon
conrad
parents:
11128
diff
changeset
|
1287 { |
|
0bca1b2ac58d
Move apply_loop_filter above render_slice, it'll be used by the latter soon
conrad
parents:
11128
diff
changeset
|
1288 int x, y; |
|
0bca1b2ac58d
Move apply_loop_filter above render_slice, it'll be used by the latter soon
conrad
parents:
11128
diff
changeset
|
1289 int *bounding_values= s->bounding_values_array+127; |
|
0bca1b2ac58d
Move apply_loop_filter above render_slice, it'll be used by the latter soon
conrad
parents:
11128
diff
changeset
|
1290 |
| 11131 | 1291 int width = s->fragment_width >> !!plane; |
| 1292 int height = s->fragment_height >> !!plane; | |
| 1293 int fragment = s->fragment_start [plane] + ystart * width; | |
| 1294 int stride = s->current_frame.linesize[plane]; | |
| 1295 uint8_t *plane_data = s->current_frame.data [plane]; | |
| 1296 if (!s->flipped_image) stride = -stride; | |
| 11133 | 1297 plane_data += s->data_offset[plane] + 8*ystart*stride; |
|
11129
0bca1b2ac58d
Move apply_loop_filter above render_slice, it'll be used by the latter soon
conrad
parents:
11128
diff
changeset
|
1298 |
| 11131 | 1299 for (y = ystart; y < yend; y++) { |
|
11129
0bca1b2ac58d
Move apply_loop_filter above render_slice, it'll be used by the latter soon
conrad
parents:
11128
diff
changeset
|
1300 |
| 11131 | 1301 for (x = 0; x < width; x++) { |
| 1302 /* This code basically just deblocks on the edges of coded blocks. | |
| 1303 * However, it has to be much more complicated because of the | |
| 1304 * braindamaged deblock ordering used in VP3/Theora. Order matters | |
| 1305 * because some pixels get filtered twice. */ | |
| 1306 if( s->all_fragments[fragment].coding_method != MODE_COPY ) | |
| 1307 { | |
| 1308 /* do not perform left edge filter for left columns frags */ | |
| 1309 if (x > 0) { | |
| 1310 s->dsp.vp3_h_loop_filter( | |
| 11133 | 1311 plane_data + 8*x, |
| 11131 | 1312 stride, bounding_values); |
|
11129
0bca1b2ac58d
Move apply_loop_filter above render_slice, it'll be used by the latter soon
conrad
parents:
11128
diff
changeset
|
1313 } |
|
0bca1b2ac58d
Move apply_loop_filter above render_slice, it'll be used by the latter soon
conrad
parents:
11128
diff
changeset
|
1314 |
| 11131 | 1315 /* do not perform top edge filter for top row fragments */ |
| 1316 if (y > 0) { | |
| 1317 s->dsp.vp3_v_loop_filter( | |
| 11133 | 1318 plane_data + 8*x, |
| 11131 | 1319 stride, bounding_values); |
| 1320 } | |
| 1321 | |
| 1322 /* do not perform right edge filter for right column | |
| 1323 * fragments or if right fragment neighbor is also coded | |
| 1324 * in this frame (it will be filtered in next iteration) */ | |
| 1325 if ((x < width - 1) && | |
| 1326 (s->all_fragments[fragment + 1].coding_method == MODE_COPY)) { | |
| 1327 s->dsp.vp3_h_loop_filter( | |
| 11133 | 1328 plane_data + 8*x + 8, |
| 11131 | 1329 stride, bounding_values); |
| 1330 } | |
| 1331 | |
| 1332 /* do not perform bottom edge filter for bottom row | |
| 1333 * fragments or if bottom fragment neighbor is also coded | |
| 1334 * in this frame (it will be filtered in the next row) */ | |
| 1335 if ((y < height - 1) && | |
| 1336 (s->all_fragments[fragment + width].coding_method == MODE_COPY)) { | |
| 1337 s->dsp.vp3_v_loop_filter( | |
| 11133 | 1338 plane_data + 8*x + 8*stride, |
| 11131 | 1339 stride, bounding_values); |
| 1340 } | |
|
11129
0bca1b2ac58d
Move apply_loop_filter above render_slice, it'll be used by the latter soon
conrad
parents:
11128
diff
changeset
|
1341 } |
| 11131 | 1342 |
| 1343 fragment++; | |
|
11129
0bca1b2ac58d
Move apply_loop_filter above render_slice, it'll be used by the latter soon
conrad
parents:
11128
diff
changeset
|
1344 } |
| 11133 | 1345 plane_data += 8*stride; |
| 11131 | 1346 } |
|
11129
0bca1b2ac58d
Move apply_loop_filter above render_slice, it'll be used by the latter soon
conrad
parents:
11128
diff
changeset
|
1347 } |
|
0bca1b2ac58d
Move apply_loop_filter above render_slice, it'll be used by the latter soon
conrad
parents:
11128
diff
changeset
|
1348 |
|
11132
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1349 /** |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1350 * called when all pixels up to row y are complete |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1351 */ |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1352 static void vp3_draw_horiz_band(Vp3DecodeContext *s, int y) |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1353 { |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1354 int h, cy; |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1355 int offset[4]; |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1356 |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1357 if(s->avctx->draw_horiz_band==NULL) |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1358 return; |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1359 |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1360 h= y - s->last_slice_end; |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1361 y -= h; |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1362 |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1363 if (!s->flipped_image) { |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1364 if (y == 0) |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1365 h -= s->height - s->avctx->height; // account for non-mod16 |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1366 y = s->height - y - h; |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1367 } |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1368 |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1369 cy = y >> 1; |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1370 offset[0] = s->current_frame.linesize[0]*y; |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1371 offset[1] = s->current_frame.linesize[1]*cy; |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1372 offset[2] = s->current_frame.linesize[2]*cy; |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1373 offset[3] = 0; |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1374 |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1375 emms_c(); |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1376 s->avctx->draw_horiz_band(s->avctx, &s->current_frame, offset, y, 3, h); |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1377 s->last_slice_end= y + h; |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1378 } |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1379 |
| 1224 | 1380 /* |
| 2722 | 1381 * Perform the final rendering for a particular slice of data. |
| 1382 * The slice number ranges from 0..(macroblock_height - 1). | |
| 1383 */ | |
| 1384 static void render_slice(Vp3DecodeContext *s, int slice) | |
| 1385 { | |
| 3498 | 1386 int x; |
| 2722 | 1387 int16_t *dequantizer; |
| 11195 | 1388 LOCAL_ALIGNED_16(DCTELEM, block, [64]); |
| 2722 | 1389 int motion_x = 0xdeadbeef, motion_y = 0xdeadbeef; |
| 1390 int motion_halfpel_index; | |
| 1391 uint8_t *motion_source; | |
| 1392 int plane; | |
| 1393 | |
| 1394 if (slice >= s->macroblock_height) | |
| 1395 return; | |
| 1396 | |
| 1397 for (plane = 0; plane < 3; plane++) { | |
| 11133 | 1398 uint8_t *output_plane = s->current_frame.data [plane] + s->data_offset[plane]; |
| 1399 uint8_t * last_plane = s-> last_frame.data [plane] + s->data_offset[plane]; | |
| 1400 uint8_t *golden_plane = s-> golden_frame.data [plane] + s->data_offset[plane]; | |
| 3498 | 1401 int stride = s->current_frame.linesize[plane]; |
| 1402 int plane_width = s->width >> !!plane; | |
| 1403 int plane_height = s->height >> !!plane; | |
| 1404 int y = slice * FRAGMENT_PIXELS << !plane ; | |
| 1405 int slice_height = y + (FRAGMENT_PIXELS << !plane); | |
| 11150 | 1406 int i = s->fragment_start[plane] + (y>>3)*(s->fragment_width>>!!plane); |
| 3498 | 1407 |
| 1408 if (!s->flipped_image) stride = -stride; | |
| 11154 | 1409 if (CONFIG_GRAY && plane && (s->avctx->flags & CODEC_FLAG_GRAY)) |
| 1410 continue; | |
| 3498 | 1411 |
| 2967 | 1412 |
| 4001 | 1413 if(FFABS(stride) > 2048) |
| 2722 | 1414 return; //various tables are fixed size |
| 1415 | |
| 1416 /* for each fragment row in the slice (both of them)... */ | |
| 1417 for (; y < slice_height; y += 8) { | |
| 1418 | |
| 1419 /* for each fragment in a row... */ | |
| 1420 for (x = 0; x < plane_width; x += 8, i++) { | |
| 11133 | 1421 int first_pixel = y*stride + x; |
| 2722 | 1422 |
| 1423 if ((i < 0) || (i >= s->fragment_count)) { | |
| 1424 av_log(s->avctx, AV_LOG_ERROR, " vp3:render_slice(): bad fragment number (%d)\n", i); | |
| 1425 return; | |
| 1426 } | |
| 1427 | |
| 1428 /* transform if this block was coded */ | |
| 11154 | 1429 if (s->all_fragments[i].coding_method != MODE_COPY) { |
| 2722 | 1430 |
| 1431 if ((s->all_fragments[i].coding_method == MODE_USING_GOLDEN) || | |
| 1432 (s->all_fragments[i].coding_method == MODE_GOLDEN_MV)) | |
| 1433 motion_source= golden_plane; | |
| 2967 | 1434 else |
| 2722 | 1435 motion_source= last_plane; |
| 1436 | |
| 11133 | 1437 motion_source += first_pixel; |
| 2722 | 1438 motion_halfpel_index = 0; |
| 1439 | |
| 1440 /* sort out the motion vector if this fragment is coded | |
| 1441 * using a motion vector method */ | |
| 1442 if ((s->all_fragments[i].coding_method > MODE_INTRA) && | |
| 1443 (s->all_fragments[i].coding_method != MODE_USING_GOLDEN)) { | |
| 1444 int src_x, src_y; | |
| 1445 motion_x = s->all_fragments[i].motion_x; | |
| 1446 motion_y = s->all_fragments[i].motion_y; | |
| 1447 if(plane){ | |
| 1448 motion_x= (motion_x>>1) | (motion_x&1); | |
| 1449 motion_y= (motion_y>>1) | (motion_y&1); | |
| 1450 } | |
| 1451 | |
| 1452 src_x= (motion_x>>1) + x; | |
| 1453 src_y= (motion_y>>1) + y; | |
| 1454 if ((motion_x == 127) || (motion_y == 127)) | |
| 1455 av_log(s->avctx, AV_LOG_ERROR, " help! got invalid motion vector! (%X, %X)\n", motion_x, motion_y); | |
| 1456 | |
| 1457 motion_halfpel_index = motion_x & 0x01; | |
| 1458 motion_source += (motion_x >> 1); | |
| 1459 | |
| 1460 motion_halfpel_index |= (motion_y & 0x01) << 1; | |
| 1461 motion_source += ((motion_y >> 1) * stride); | |
| 1462 | |
| 1463 if(src_x<0 || src_y<0 || src_x + 9 >= plane_width || src_y + 9 >= plane_height){ | |
| 1464 uint8_t *temp= s->edge_emu_buffer; | |
| 1465 if(stride<0) temp -= 9*stride; | |
| 1466 else temp += 9*stride; | |
| 1467 | |
| 1468 ff_emulated_edge_mc(temp, motion_source, stride, 9, 9, src_x, src_y, plane_width, plane_height); | |
| 1469 motion_source= temp; | |
| 1470 } | |
| 1471 } | |
| 2967 | 1472 |
| 2722 | 1473 |
| 1474 /* first, take care of copying a block from either the | |
| 1475 * previous or the golden frame */ | |
| 1476 if (s->all_fragments[i].coding_method != MODE_INTRA) { | |
| 2967 | 1477 /* Note, it is possible to implement all MC cases with |
| 1478 put_no_rnd_pixels_l2 which would look more like the | |
| 1479 VP3 source but this would be slower as | |
| 2722 | 1480 put_no_rnd_pixels_tab is better optimzed */ |
| 1481 if(motion_halfpel_index != 3){ | |
| 1482 s->dsp.put_no_rnd_pixels_tab[1][motion_halfpel_index]( | |
| 11133 | 1483 output_plane + first_pixel, |
| 2722 | 1484 motion_source, stride, 8); |
| 1485 }else{ | |
| 1486 int d= (motion_x ^ motion_y)>>31; // d is 0 if motion_x and _y have the same sign, else -1 | |
| 1487 s->dsp.put_no_rnd_pixels_l2[1]( | |
| 11133 | 1488 output_plane + first_pixel, |
| 2967 | 1489 motion_source - d, |
| 1490 motion_source + stride + 1 + d, | |
| 2722 | 1491 stride, 8); |
| 1492 } | |
| 9731 | 1493 dequantizer = s->qmat[s->all_fragments[i].qpi][1][plane]; |
| 2722 | 1494 }else{ |
| 9731 | 1495 dequantizer = s->qmat[s->all_fragments[i].qpi][0][plane]; |
| 2722 | 1496 } |
| 1497 | |
| 1498 /* dequantize the DCT coefficients */ | |
| 1499 if(s->avctx->idct_algo==FF_IDCT_VP3){ | |
| 1500 Coeff *coeff= s->coeffs + i; | |
| 8288 | 1501 s->dsp.clear_block(block); |
| 2722 | 1502 while(coeff->next){ |
| 1503 block[coeff->index]= coeff->coeff * dequantizer[coeff->index]; | |
| 1504 coeff= coeff->next; | |
| 1505 } | |
| 1506 }else{ | |
| 1507 Coeff *coeff= s->coeffs + i; | |
| 8288 | 1508 s->dsp.clear_block(block); |
| 2722 | 1509 while(coeff->next){ |
| 1510 block[coeff->index]= (coeff->coeff * dequantizer[coeff->index] + 2)>>2; | |
| 1511 coeff= coeff->next; | |
| 1512 } | |
| 1513 } | |
| 1514 | |
| 1515 /* invert DCT and place (or add) in final output */ | |
| 2967 | 1516 |
| 2722 | 1517 if (s->all_fragments[i].coding_method == MODE_INTRA) { |
| 1518 if(s->avctx->idct_algo!=FF_IDCT_VP3) | |
| 1519 block[0] += 128<<3; | |
| 1520 s->dsp.idct_put( | |
| 11133 | 1521 output_plane + first_pixel, |
| 2722 | 1522 stride, |
| 1523 block); | |
| 1524 } else { | |
| 1525 s->dsp.idct_add( | |
| 11133 | 1526 output_plane + first_pixel, |
| 2722 | 1527 stride, |
| 1528 block); | |
| 1529 } | |
| 1530 } else { | |
| 1531 | |
| 1532 /* copy directly from the previous frame */ | |
| 1533 s->dsp.put_pixels_tab[1][0]( | |
| 11133 | 1534 output_plane + first_pixel, |
| 1535 last_plane + first_pixel, | |
| 2722 | 1536 stride, 8); |
| 1537 | |
| 1538 } | |
| 1539 } | |
| 11130 | 1540 // Filter the previous block row. We can't filter the current row yet |
| 1541 // since it needs pixels from the next row | |
| 1542 if (y > 0) | |
| 1543 apply_loop_filter(s, plane, (y>>3)-1, (y>>3)); | |
| 2722 | 1544 } |
| 1545 } | |
| 1546 | |
| 1547 /* this looks like a good place for slice dispatch... */ | |
| 1548 /* algorithm: | |
|
2723
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
1549 * if (slice == s->macroblock_height - 1) |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
1550 * dispatch (both last slice & 2nd-to-last slice); |
|
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
1551 * else if (slice > 0) |
| 2722 | 1552 * dispatch (slice - 1); |
| 1553 */ | |
| 1554 | |
|
11132
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1555 // now that we've filtered the last rows, they're safe to display |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1556 if (slice) |
|
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1557 vp3_draw_horiz_band(s, 16*slice); |
| 2722 | 1558 } |
| 1559 | |
| 2967 | 1560 /* |
| 1224 | 1561 * This is the ffmpeg/libavcodec API init function. |
| 1562 */ | |
|
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6448
diff
changeset
|
1563 static av_cold int vp3_decode_init(AVCodecContext *avctx) |
| 1224 | 1564 { |
| 1565 Vp3DecodeContext *s = avctx->priv_data; | |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
1566 int i, inter, plane; |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1567 int c_width; |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1568 int c_height; |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1569 int y_superblock_count; |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1570 int c_superblock_count; |
| 1224 | 1571 |
| 1664 | 1572 if (avctx->codec_tag == MKTAG('V','P','3','0')) |
| 2979 | 1573 s->version = 0; |
| 1664 | 1574 else |
| 2979 | 1575 s->version = 1; |
| 1664 | 1576 |
| 1224 | 1577 s->avctx = avctx; |
|
9686
bc32976d6d9d
Move ALIGN macro to libavutil/common.h and use it in various places
conrad
parents:
9637
diff
changeset
|
1578 s->width = FFALIGN(avctx->width, 16); |
|
bc32976d6d9d
Move ALIGN macro to libavutil/common.h and use it in various places
conrad
parents:
9637
diff
changeset
|
1579 s->height = FFALIGN(avctx->height, 16); |
| 1224 | 1580 avctx->pix_fmt = PIX_FMT_YUV420P; |
|
9626
bd3e11b60ccd
Add a chroma_sample_location field to define positioning of chroma samples
conrad
parents:
9591
diff
changeset
|
1581 avctx->chroma_sample_location = AVCHROMA_LOC_CENTER; |
| 2693 | 1582 if(avctx->idct_algo==FF_IDCT_AUTO) |
| 1583 avctx->idct_algo=FF_IDCT_VP3; | |
| 1224 | 1584 dsputil_init(&s->dsp, avctx); |
| 2967 | 1585 |
| 2694 | 1586 ff_init_scantable(s->dsp.idct_permutation, &s->scantable, ff_zigzag_direct); |
| 1224 | 1587 |
| 1588 /* initialize to an impossible value which will force a recalculation | |
| 1589 * in the first frame decode */ | |
| 9731 | 1590 for (i = 0; i < 3; i++) |
| 1591 s->qps[i] = -1; | |
| 1224 | 1592 |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1593 s->y_superblock_width = (s->width + 31) / 32; |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1594 s->y_superblock_height = (s->height + 31) / 32; |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1595 y_superblock_count = s->y_superblock_width * s->y_superblock_height; |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1596 |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1597 /* work out the dimensions for the C planes */ |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1598 c_width = s->width / 2; |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1599 c_height = s->height / 2; |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1600 s->c_superblock_width = (c_width + 31) / 32; |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1601 s->c_superblock_height = (c_height + 31) / 32; |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1602 c_superblock_count = s->c_superblock_width * s->c_superblock_height; |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1603 |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1604 s->superblock_count = y_superblock_count + (c_superblock_count * 2); |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1605 s->u_superblock_start = y_superblock_count; |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1606 s->v_superblock_start = s->u_superblock_start + c_superblock_count; |
| 1224 | 1607 s->superblock_coding = av_malloc(s->superblock_count); |
| 1608 | |
| 1609 s->macroblock_width = (s->width + 15) / 16; | |
| 1610 s->macroblock_height = (s->height + 15) / 16; | |
| 1611 s->macroblock_count = s->macroblock_width * s->macroblock_height; | |
| 1612 | |
| 1613 s->fragment_width = s->width / FRAGMENT_PIXELS; | |
| 1614 s->fragment_height = s->height / FRAGMENT_PIXELS; | |
| 1615 | |
| 1616 /* fragment count covers all 8x8 blocks for all 3 planes */ | |
| 1617 s->fragment_count = s->fragment_width * s->fragment_height * 3 / 2; | |
| 3498 | 1618 s->fragment_start[1] = s->fragment_width * s->fragment_height; |
| 1619 s->fragment_start[2] = s->fragment_width * s->fragment_height * 5 / 4; | |
| 1224 | 1620 |
| 1621 s->all_fragments = av_malloc(s->fragment_count * sizeof(Vp3Fragment)); | |
|
7037
480faa9f79dd
Almost-cosmetics: split out coeff_count from all_fragments struct into
reimar
parents:
6903
diff
changeset
|
1622 s->coeff_counts = av_malloc(s->fragment_count * sizeof(*s->coeff_counts)); |
|
2714
b008c78467e6
use O(number of non zero coeffs) instead of O(number of coeffs) storage for the coefficient colleting/reordering
michael
parents:
2712
diff
changeset
|
1623 s->coeffs = av_malloc(s->fragment_count * sizeof(Coeff) * 65); |
| 1224 | 1624 s->coded_fragment_list = av_malloc(s->fragment_count * sizeof(int)); |
|
10619
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
1625 s->fast_fragment_list = av_malloc(s->fragment_count * sizeof(int)); |
| 10258 | 1626 if (!s->superblock_coding || !s->all_fragments || !s->coeff_counts || |
|
10619
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
1627 !s->coeffs || !s->coded_fragment_list || !s->fast_fragment_list) { |
| 10258 | 1628 vp3_decode_end(avctx); |
| 1629 return -1; | |
| 1630 } | |
| 1224 | 1631 |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
1632 if (!s->theora_tables) |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
1633 { |
| 3585 | 1634 for (i = 0; i < 64; i++) { |
| 2979 | 1635 s->coded_dc_scale_factor[i] = vp31_dc_scale_factor[i]; |
| 1636 s->coded_ac_scale_factor[i] = vp31_ac_scale_factor[i]; | |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
1637 s->base_matrix[0][i] = vp31_intra_y_dequant[i]; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
1638 s->base_matrix[1][i] = vp31_intra_c_dequant[i]; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
1639 s->base_matrix[2][i] = vp31_inter_dequant[i]; |
| 2979 | 1640 s->filter_limit_values[i] = vp31_filter_limit_values[i]; |
| 3585 | 1641 } |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1642 |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
1643 for(inter=0; inter<2; inter++){ |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
1644 for(plane=0; plane<3; plane++){ |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
1645 s->qr_count[inter][plane]= 1; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
1646 s->qr_size [inter][plane][0]= 63; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
1647 s->qr_base [inter][plane][0]= |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
1648 s->qr_base [inter][plane][1]= 2*inter + (!!plane)*!inter; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
1649 } |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
1650 } |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
1651 |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1652 /* init VLC tables */ |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1653 for (i = 0; i < 16; i++) { |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1654 |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1655 /* DC histograms */ |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1656 init_vlc(&s->dc_vlc[i], 5, 32, |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1657 &dc_bias[i][0][1], 4, 2, |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1658 &dc_bias[i][0][0], 4, 2, 0); |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1659 |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1660 /* group 1 AC histograms */ |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1661 init_vlc(&s->ac_vlc_1[i], 5, 32, |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1662 &ac_bias_0[i][0][1], 4, 2, |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1663 &ac_bias_0[i][0][0], 4, 2, 0); |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1664 |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1665 /* group 2 AC histograms */ |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1666 init_vlc(&s->ac_vlc_2[i], 5, 32, |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1667 &ac_bias_1[i][0][1], 4, 2, |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1668 &ac_bias_1[i][0][0], 4, 2, 0); |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1669 |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1670 /* group 3 AC histograms */ |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1671 init_vlc(&s->ac_vlc_3[i], 5, 32, |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1672 &ac_bias_2[i][0][1], 4, 2, |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1673 &ac_bias_2[i][0][0], 4, 2, 0); |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1674 |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1675 /* group 4 AC histograms */ |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1676 init_vlc(&s->ac_vlc_4[i], 5, 32, |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1677 &ac_bias_3[i][0][1], 4, 2, |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1678 &ac_bias_3[i][0][0], 4, 2, 0); |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1679 } |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1680 } else { |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1681 for (i = 0; i < 16; i++) { |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1682 |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1683 /* DC histograms */ |
|
9923
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1684 if (init_vlc(&s->dc_vlc[i], 5, 32, |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1685 &s->huffman_table[i][0][1], 4, 2, |
|
9923
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1686 &s->huffman_table[i][0][0], 4, 2, 0) < 0) |
|
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1687 goto vlc_fail; |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1688 |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1689 /* group 1 AC histograms */ |
|
9923
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1690 if (init_vlc(&s->ac_vlc_1[i], 5, 32, |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1691 &s->huffman_table[i+16][0][1], 4, 2, |
|
9923
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1692 &s->huffman_table[i+16][0][0], 4, 2, 0) < 0) |
|
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1693 goto vlc_fail; |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1694 |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1695 /* group 2 AC histograms */ |
|
9923
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1696 if (init_vlc(&s->ac_vlc_2[i], 5, 32, |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1697 &s->huffman_table[i+16*2][0][1], 4, 2, |
|
9923
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1698 &s->huffman_table[i+16*2][0][0], 4, 2, 0) < 0) |
|
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1699 goto vlc_fail; |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1700 |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1701 /* group 3 AC histograms */ |
|
9923
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1702 if (init_vlc(&s->ac_vlc_3[i], 5, 32, |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1703 &s->huffman_table[i+16*3][0][1], 4, 2, |
|
9923
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1704 &s->huffman_table[i+16*3][0][0], 4, 2, 0) < 0) |
|
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1705 goto vlc_fail; |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1706 |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1707 /* group 4 AC histograms */ |
|
9923
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1708 if (init_vlc(&s->ac_vlc_4[i], 5, 32, |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1709 &s->huffman_table[i+16*4][0][1], 4, 2, |
|
9923
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1710 &s->huffman_table[i+16*4][0][0], 4, 2, 0) < 0) |
|
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1711 goto vlc_fail; |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1712 } |
| 1224 | 1713 } |
| 1714 | |
|
2703
3817945001ce
replace get_superblock_run_length() with a VLC table
melanson
parents:
2702
diff
changeset
|
1715 init_vlc(&s->superblock_run_length_vlc, 6, 34, |
|
3817945001ce
replace get_superblock_run_length() with a VLC table
melanson
parents:
2702
diff
changeset
|
1716 &superblock_run_length_vlc_table[0][1], 4, 2, |
|
3817945001ce
replace get_superblock_run_length() with a VLC table
melanson
parents:
2702
diff
changeset
|
1717 &superblock_run_length_vlc_table[0][0], 4, 2, 0); |
|
3817945001ce
replace get_superblock_run_length() with a VLC table
melanson
parents:
2702
diff
changeset
|
1718 |
|
2942
868c48736d1c
fixed long standing off-by-one bug (fixes playback on ppc)
alex
parents:
2866
diff
changeset
|
1719 init_vlc(&s->fragment_run_length_vlc, 5, 30, |
|
2702
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
1720 &fragment_run_length_vlc_table[0][1], 4, 2, |
|
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
1721 &fragment_run_length_vlc_table[0][0], 4, 2, 0); |
|
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
1722 |
|
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
1723 init_vlc(&s->mode_code_vlc, 3, 8, |
|
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
1724 &mode_code_vlc_table[0][1], 2, 1, |
|
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
1725 &mode_code_vlc_table[0][0], 2, 1, 0); |
|
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
1726 |
|
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
1727 init_vlc(&s->motion_vector_vlc, 6, 63, |
|
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
1728 &motion_vector_vlc_table[0][1], 2, 1, |
|
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
1729 &motion_vector_vlc_table[0][0], 2, 1, 0); |
|
5a4e5225cbb6
use VLCs for in place of get_fragment_run_length(), get_mode_code(), and
melanson
parents:
2699
diff
changeset
|
1730 |
| 1224 | 1731 /* work out the block mapping tables */ |
| 1732 s->superblock_fragments = av_malloc(s->superblock_count * 16 * sizeof(int)); | |
|
1240
c95ff60bc1a1
fix motion vector decoding bug and reinstate interframes
tmmm
parents:
1239
diff
changeset
|
1733 s->macroblock_coding = av_malloc(s->macroblock_count + 1); |
| 11150 | 1734 if (!s->superblock_fragments || !s->macroblock_coding) { |
| 10258 | 1735 vp3_decode_end(avctx); |
| 1736 return -1; | |
| 1737 } | |
| 1224 | 1738 init_block_mapping(s); |
| 1739 | |
|
1229
cefec170ee46
fixed buffer allocation logic (hopefully) so that decoder does not crash
tmmm
parents:
1227
diff
changeset
|
1740 for (i = 0; i < 3; i++) { |
|
cefec170ee46
fixed buffer allocation logic (hopefully) so that decoder does not crash
tmmm
parents:
1227
diff
changeset
|
1741 s->current_frame.data[i] = NULL; |
|
cefec170ee46
fixed buffer allocation logic (hopefully) so that decoder does not crash
tmmm
parents:
1227
diff
changeset
|
1742 s->last_frame.data[i] = NULL; |
|
cefec170ee46
fixed buffer allocation logic (hopefully) so that decoder does not crash
tmmm
parents:
1227
diff
changeset
|
1743 s->golden_frame.data[i] = NULL; |
|
1227
184c480cefc3
fix decoder so that ffmpeg does not crash, at least not right away
tmmm
parents:
1224
diff
changeset
|
1744 } |
|
184c480cefc3
fix decoder so that ffmpeg does not crash, at least not right away
tmmm
parents:
1224
diff
changeset
|
1745 |
| 1224 | 1746 return 0; |
|
9923
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1747 |
|
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1748 vlc_fail: |
|
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1749 av_log(avctx, AV_LOG_FATAL, "Invalid huffman table\n"); |
|
ba58c3abf832
Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.
reimar
parents:
9922
diff
changeset
|
1750 return -1; |
| 1224 | 1751 } |
| 1752 | |
| 1753 /* | |
| 1754 * This is the ffmpeg/libavcodec API frame decode function. | |
| 1755 */ | |
| 2967 | 1756 static int vp3_decode_frame(AVCodecContext *avctx, |
| 1224 | 1757 void *data, int *data_size, |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9007
diff
changeset
|
1758 AVPacket *avpkt) |
| 1224 | 1759 { |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9007
diff
changeset
|
1760 const uint8_t *buf = avpkt->data; |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9007
diff
changeset
|
1761 int buf_size = avpkt->size; |
| 1224 | 1762 Vp3DecodeContext *s = avctx->priv_data; |
| 1763 GetBitContext gb; | |
| 1764 static int counter = 0; | |
| 2722 | 1765 int i; |
| 1224 | 1766 |
| 1767 init_get_bits(&gb, buf, buf_size * 8); | |
| 2967 | 1768 |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
1769 if (s->theora && get_bits1(&gb)) |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
1770 { |
| 2979 | 1771 av_log(avctx, AV_LOG_ERROR, "Header packet passed to frame decoder, skipping\n"); |
| 1772 return -1; | |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
1773 } |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
1774 |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
1775 s->keyframe = !get_bits1(&gb); |
| 1664 | 1776 if (!s->theora) |
| 2979 | 1777 skip_bits(&gb, 1); |
| 9731 | 1778 for (i = 0; i < 3; i++) |
| 1779 s->last_qps[i] = s->qps[i]; | |
|
3492
fa3794c46f21
parse all QIS values (we still ignore them though ...)
michael
parents:
3491
diff
changeset
|
1780 |
| 9731 | 1781 s->nqps=0; |
|
3492
fa3794c46f21
parse all QIS values (we still ignore them though ...)
michael
parents:
3491
diff
changeset
|
1782 do{ |
| 9731 | 1783 s->qps[s->nqps++]= get_bits(&gb, 6); |
| 1784 } while(s->theora >= 0x030200 && s->nqps<3 && get_bits1(&gb)); | |
| 1785 for (i = s->nqps; i < 3; i++) | |
| 1786 s->qps[i] = -1; | |
| 1224 | 1787 |
| 1667 | 1788 if (s->avctx->debug & FF_DEBUG_PICT_INFO) |
| 2979 | 1789 av_log(s->avctx, AV_LOG_INFO, " VP3 %sframe #%d: Q index = %d\n", |
| 9731 | 1790 s->keyframe?"key":"", counter, s->qps[0]); |
| 1224 | 1791 counter++; |
| 1792 | |
| 9731 | 1793 if (s->qps[0] != s->last_qps[0]) |
|
2723
5ae980827158
apply the loop filter to fragments as they are rendered into the final
melanson
parents:
2722
diff
changeset
|
1794 init_loop_filter(s); |
| 9731 | 1795 |
| 1796 for (i = 0; i < s->nqps; i++) | |
| 1797 // reinit all dequantizers if the first one changed, because | |
| 1798 // the DC of the first quantizer must be used for all matrices | |
| 1799 if (s->qps[i] != s->last_qps[i] || s->qps[0] != s->last_qps[0]) | |
| 1800 init_dequantizer(s, i); | |
|
1292
f7b3fa4bb7ae
revising and fixing motion vectors, squished block unpacking bug that
tmmm
parents:
1282
diff
changeset
|
1801 |
|
7938
66226ee647a4
Use skip_frame for keyframe-only decoding rather than #ifdef
conrad
parents:
7875
diff
changeset
|
1802 if (avctx->skip_frame >= AVDISCARD_NONKEY && !s->keyframe) |
|
66226ee647a4
Use skip_frame for keyframe-only decoding rather than #ifdef
conrad
parents:
7875
diff
changeset
|
1803 return buf_size; |
|
66226ee647a4
Use skip_frame for keyframe-only decoding rather than #ifdef
conrad
parents:
7875
diff
changeset
|
1804 |
| 1224 | 1805 if (s->keyframe) { |
| 2979 | 1806 if (!s->theora) |
| 1807 { | |
| 1808 skip_bits(&gb, 4); /* width code */ | |
| 1809 skip_bits(&gb, 4); /* height code */ | |
| 1810 if (s->version) | |
| 1811 { | |
| 1812 s->version = get_bits(&gb, 5); | |
| 1813 if (counter == 1) | |
| 1814 av_log(s->avctx, AV_LOG_DEBUG, "VP version: %d\n", s->version); | |
| 1815 } | |
| 1816 } | |
| 1817 if (s->version || s->theora) | |
| 1818 { | |
| 1819 if (get_bits1(&gb)) | |
| 1820 av_log(s->avctx, AV_LOG_ERROR, "Warning, unsupported keyframe coding type?!\n"); | |
| 1821 skip_bits(&gb, 2); /* reserved? */ | |
| 1822 } | |
| 1664 | 1823 |
|
1244
a02df1ba6c7f
fix image buffer leak on keyframes, add more error condition checks
tmmm
parents:
1240
diff
changeset
|
1824 if (s->last_frame.data[0] == s->golden_frame.data[0]) { |
|
a02df1ba6c7f
fix image buffer leak on keyframes, add more error condition checks
tmmm
parents:
1240
diff
changeset
|
1825 if (s->golden_frame.data[0]) |
|
a02df1ba6c7f
fix image buffer leak on keyframes, add more error condition checks
tmmm
parents:
1240
diff
changeset
|
1826 avctx->release_buffer(avctx, &s->golden_frame); |
|
1405
e69f99ade5b0
fix AVFrame.reference (the frames are used for decoding future frames so it should be !=0)
michaelni
parents:
1355
diff
changeset
|
1827 s->last_frame= s->golden_frame; /* ensure that we catch any access to this released frame */ |
|
1244
a02df1ba6c7f
fix image buffer leak on keyframes, add more error condition checks
tmmm
parents:
1240
diff
changeset
|
1828 } else { |
|
a02df1ba6c7f
fix image buffer leak on keyframes, add more error condition checks
tmmm
parents:
1240
diff
changeset
|
1829 if (s->golden_frame.data[0]) |
|
a02df1ba6c7f
fix image buffer leak on keyframes, add more error condition checks
tmmm
parents:
1240
diff
changeset
|
1830 avctx->release_buffer(avctx, &s->golden_frame); |
|
a02df1ba6c7f
fix image buffer leak on keyframes, add more error condition checks
tmmm
parents:
1240
diff
changeset
|
1831 if (s->last_frame.data[0]) |
|
a02df1ba6c7f
fix image buffer leak on keyframes, add more error condition checks
tmmm
parents:
1240
diff
changeset
|
1832 avctx->release_buffer(avctx, &s->last_frame); |
|
a02df1ba6c7f
fix image buffer leak on keyframes, add more error condition checks
tmmm
parents:
1240
diff
changeset
|
1833 } |
| 1224 | 1834 |
|
1405
e69f99ade5b0
fix AVFrame.reference (the frames are used for decoding future frames so it should be !=0)
michaelni
parents:
1355
diff
changeset
|
1835 s->golden_frame.reference = 3; |
| 1224 | 1836 if(avctx->get_buffer(avctx, &s->golden_frame) < 0) { |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1518
diff
changeset
|
1837 av_log(s->avctx, AV_LOG_ERROR, "vp3: get_buffer() failed\n"); |
| 1224 | 1838 return -1; |
| 1839 } | |
| 1840 | |
| 1841 /* golden frame is also the current frame */ | |
| 3486 | 1842 s->current_frame= s->golden_frame; |
| 1224 | 1843 } else { |
| 1844 /* allocate a new current frame */ | |
|
1405
e69f99ade5b0
fix AVFrame.reference (the frames are used for decoding future frames so it should be !=0)
michaelni
parents:
1355
diff
changeset
|
1845 s->current_frame.reference = 3; |
| 11133 | 1846 if (!s->golden_frame.data[0]) { |
|
3512
feace06d4184
Do not crash when the first frame is not a keyframe (and thus none of the
reimar
parents:
3502
diff
changeset
|
1847 av_log(s->avctx, AV_LOG_ERROR, "vp3: first frame not a keyframe\n"); |
|
feace06d4184
Do not crash when the first frame is not a keyframe (and thus none of the
reimar
parents:
3502
diff
changeset
|
1848 return -1; |
|
feace06d4184
Do not crash when the first frame is not a keyframe (and thus none of the
reimar
parents:
3502
diff
changeset
|
1849 } |
| 1224 | 1850 if(avctx->get_buffer(avctx, &s->current_frame) < 0) { |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1518
diff
changeset
|
1851 av_log(s->avctx, AV_LOG_ERROR, "vp3: get_buffer() failed\n"); |
| 1224 | 1852 return -1; |
| 1853 } | |
| 1854 } | |
| 1855 | |
| 1407 | 1856 s->current_frame.qscale_table= s->qscale_table; //FIXME allocate individual tables per AVFrame |
| 1857 s->current_frame.qstride= 0; | |
| 1858 | |
| 1224 | 1859 init_frame(s, &gb); |
| 1860 | |
| 2687 | 1861 if (unpack_superblocks(s, &gb)){ |
| 1862 av_log(s->avctx, AV_LOG_ERROR, "error in unpack_superblocks\n"); | |
| 1863 return -1; | |
| 1864 } | |
| 1865 if (unpack_modes(s, &gb)){ | |
| 1866 av_log(s->avctx, AV_LOG_ERROR, "error in unpack_modes\n"); | |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1867 return -1; |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1868 } |
| 2687 | 1869 if (unpack_vectors(s, &gb)){ |
| 1870 av_log(s->avctx, AV_LOG_ERROR, "error in unpack_vectors\n"); | |
| 1871 return -1; | |
| 1872 } | |
| 9731 | 1873 if (unpack_block_qpis(s, &gb)){ |
| 1874 av_log(s->avctx, AV_LOG_ERROR, "error in unpack_block_qpis\n"); | |
| 1875 return -1; | |
| 1876 } | |
| 2687 | 1877 if (unpack_dct_coeffs(s, &gb)){ |
| 1878 av_log(s->avctx, AV_LOG_ERROR, "error in unpack_dct_coeffs\n"); | |
| 1879 return -1; | |
| 1880 } | |
| 1224 | 1881 |
| 11133 | 1882 for (i = 0; i < 3; i++) { |
| 1883 if (s->flipped_image) | |
| 1884 s->data_offset[i] = 0; | |
| 1885 else | |
| 1886 s->data_offset[i] = ((s->height>>!!i)-1) * s->current_frame.linesize[i]; | |
| 1887 } | |
| 1888 | |
|
11132
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1889 s->last_slice_end = 0; |
| 2722 | 1890 for (i = 0; i < s->macroblock_height; i++) |
| 1891 render_slice(s, i); | |
|
7038
110080ab2391
Remove the START_TIMER/STOP_TIMER from vp3.c, they clutter the output and
reimar
parents:
7037
diff
changeset
|
1892 |
| 11130 | 1893 // filter the last row |
| 1894 for (i = 0; i < 3; i++) { | |
| 1895 int row = (s->height >> (3+!!i)) - 1; | |
| 1896 apply_loop_filter(s, i, row, row+1); | |
| 1897 } | |
|
11132
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
1898 vp3_draw_horiz_band(s, s->height); |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1899 |
| 1224 | 1900 *data_size=sizeof(AVFrame); |
| 1901 *(AVFrame*)data= s->current_frame; | |
| 1902 | |
|
1229
cefec170ee46
fixed buffer allocation logic (hopefully) so that decoder does not crash
tmmm
parents:
1227
diff
changeset
|
1903 /* release the last frame, if it is allocated and if it is not the |
|
cefec170ee46
fixed buffer allocation logic (hopefully) so that decoder does not crash
tmmm
parents:
1227
diff
changeset
|
1904 * golden frame */ |
|
cefec170ee46
fixed buffer allocation logic (hopefully) so that decoder does not crash
tmmm
parents:
1227
diff
changeset
|
1905 if ((s->last_frame.data[0]) && |
|
cefec170ee46
fixed buffer allocation logic (hopefully) so that decoder does not crash
tmmm
parents:
1227
diff
changeset
|
1906 (s->last_frame.data[0] != s->golden_frame.data[0])) |
|
cefec170ee46
fixed buffer allocation logic (hopefully) so that decoder does not crash
tmmm
parents:
1227
diff
changeset
|
1907 avctx->release_buffer(avctx, &s->last_frame); |
| 1224 | 1908 |
|
1227
184c480cefc3
fix decoder so that ffmpeg does not crash, at least not right away
tmmm
parents:
1224
diff
changeset
|
1909 /* shuffle frames (last = current) */ |
| 3486 | 1910 s->last_frame= s->current_frame; |
|
1405
e69f99ade5b0
fix AVFrame.reference (the frames are used for decoding future frames so it should be !=0)
michaelni
parents:
1355
diff
changeset
|
1911 s->current_frame.data[0]= NULL; /* ensure that we catch any access to this released frame */ |
| 1224 | 1912 |
| 1913 return buf_size; | |
| 1914 } | |
| 1915 | |
| 1916 /* | |
| 1917 * This is the ffmpeg/libavcodec API module cleanup function. | |
| 1918 */ | |
|
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6448
diff
changeset
|
1919 static av_cold int vp3_decode_end(AVCodecContext *avctx) |
| 1224 | 1920 { |
| 1921 Vp3DecodeContext *s = avctx->priv_data; | |
| 6393 | 1922 int i; |
| 1923 | |
| 1924 av_free(s->superblock_coding); | |
| 1224 | 1925 av_free(s->all_fragments); |
|
7037
480faa9f79dd
Almost-cosmetics: split out coeff_count from all_fragments struct into
reimar
parents:
6903
diff
changeset
|
1926 av_free(s->coeff_counts); |
|
2689
ed0ab6f82167
clear blocks after each idct instead of per picture
michael
parents:
2687
diff
changeset
|
1927 av_free(s->coeffs); |
| 1224 | 1928 av_free(s->coded_fragment_list); |
|
10619
d930f99edbf9
Use a list to track which fragments coded in this frame still have
melanson
parents:
10258
diff
changeset
|
1929 av_free(s->fast_fragment_list); |
| 1224 | 1930 av_free(s->superblock_fragments); |
|
1240
c95ff60bc1a1
fix motion vector decoding bug and reinstate interframes
tmmm
parents:
1239
diff
changeset
|
1931 av_free(s->macroblock_coding); |
| 2967 | 1932 |
| 6393 | 1933 for (i = 0; i < 16; i++) { |
| 1934 free_vlc(&s->dc_vlc[i]); | |
| 1935 free_vlc(&s->ac_vlc_1[i]); | |
| 1936 free_vlc(&s->ac_vlc_2[i]); | |
| 1937 free_vlc(&s->ac_vlc_3[i]); | |
| 1938 free_vlc(&s->ac_vlc_4[i]); | |
| 1939 } | |
| 1940 | |
| 1941 free_vlc(&s->superblock_run_length_vlc); | |
| 1942 free_vlc(&s->fragment_run_length_vlc); | |
| 1943 free_vlc(&s->mode_code_vlc); | |
| 1944 free_vlc(&s->motion_vector_vlc); | |
| 1945 | |
| 1224 | 1946 /* release all frames */ |
|
1405
e69f99ade5b0
fix AVFrame.reference (the frames are used for decoding future frames so it should be !=0)
michaelni
parents:
1355
diff
changeset
|
1947 if (s->golden_frame.data[0] && s->golden_frame.data[0] != s->last_frame.data[0]) |
|
1238
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1948 avctx->release_buffer(avctx, &s->golden_frame); |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1949 if (s->last_frame.data[0]) |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1950 avctx->release_buffer(avctx, &s->last_frame); |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1951 /* no need to release the current_frame since it will always be pointing |
|
6eab0df78d47
squashed a bunch of subtle array indexing bugs, fixed block mapping
tmmm
parents:
1236
diff
changeset
|
1952 * to the same frame as either the golden or last frame */ |
| 1224 | 1953 |
| 1954 return 0; | |
| 1955 } | |
| 1956 | |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1957 static int read_huffman_tree(AVCodecContext *avctx, GetBitContext *gb) |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1958 { |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1959 Vp3DecodeContext *s = avctx->priv_data; |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1960 |
| 5513 | 1961 if (get_bits1(gb)) { |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1962 int token; |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1963 if (s->entries >= 32) { /* overflow */ |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1964 av_log(avctx, AV_LOG_ERROR, "huffman tree overflow\n"); |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1965 return -1; |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1966 } |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1967 token = get_bits(gb, 5); |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1968 //av_log(avctx, AV_LOG_DEBUG, "hti %d hbits %x token %d entry : %d size %d\n", s->hti, s->hbits, token, s->entries, s->huff_code_size); |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1969 s->huffman_table[s->hti][token][0] = s->hbits; |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1970 s->huffman_table[s->hti][token][1] = s->huff_code_size; |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1971 s->entries++; |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1972 } |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1973 else { |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1974 if (s->huff_code_size >= 32) {/* overflow */ |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1975 av_log(avctx, AV_LOG_ERROR, "huffman tree overflow\n"); |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1976 return -1; |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1977 } |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1978 s->huff_code_size++; |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1979 s->hbits <<= 1; |
| 8770 | 1980 if (read_huffman_tree(avctx, gb)) |
| 1981 return -1; | |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1982 s->hbits |= 1; |
| 8770 | 1983 if (read_huffman_tree(avctx, gb)) |
| 1984 return -1; | |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1985 s->hbits >>= 1; |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1986 s->huff_code_size--; |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1987 } |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1988 return 0; |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1989 } |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
1990 |
| 8590 | 1991 #if CONFIG_THEORA_DECODER |
|
3484
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
1992 static int theora_decode_header(AVCodecContext *avctx, GetBitContext *gb) |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
1993 { |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
1994 Vp3DecodeContext *s = avctx->priv_data; |
| 11128 | 1995 int visible_width, visible_height, colorspace; |
| 3483 | 1996 |
|
3484
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
1997 s->theora = get_bits_long(gb, 24); |
|
6349
aed237dd11d8
Print Theora bitstream version at DEBUG, not at VERBOSE level.
diego
parents:
6282
diff
changeset
|
1998 av_log(avctx, AV_LOG_DEBUG, "Theora bitstream version %X\n", s->theora); |
|
1627
a80b15c0b9d5
theora alpha3 support (with maintaining backward compatibility, maybe we should remove all backward compatibility codes after final theora release?)
alex
parents:
1626
diff
changeset
|
1999 |
| 2678 | 2000 /* 3.2.0 aka alpha3 has the same frame orientation as original vp3 */ |
|
1626
f74ae637ffa9
finally working with old theora bitstream (flipped image), the only sample I have is decoded successfully (theora.ogg)
alex
parents:
1598
diff
changeset
|
2001 /* but previous versions have the image flipped relative to vp3 */ |
| 2678 | 2002 if (s->theora < 0x030200) |
|
1626
f74ae637ffa9
finally working with old theora bitstream (flipped image), the only sample I have is decoded successfully (theora.ogg)
alex
parents:
1598
diff
changeset
|
2003 { |
| 2979 | 2004 s->flipped_image = 1; |
|
1626
f74ae637ffa9
finally working with old theora bitstream (flipped image), the only sample I have is decoded successfully (theora.ogg)
alex
parents:
1598
diff
changeset
|
2005 av_log(avctx, AV_LOG_DEBUG, "Old (<alpha3) Theora bitstream, flipped image\n"); |
|
f74ae637ffa9
finally working with old theora bitstream (flipped image), the only sample I have is decoded successfully (theora.ogg)
alex
parents:
1598
diff
changeset
|
2006 } |
|
f74ae637ffa9
finally working with old theora bitstream (flipped image), the only sample I have is decoded successfully (theora.ogg)
alex
parents:
1598
diff
changeset
|
2007 |
|
7967
6ac2c8312a2b
Visible width/height fields were added in Theora 3.2
conrad
parents:
7966
diff
changeset
|
2008 visible_width = s->width = get_bits(gb, 16) << 4; |
|
6ac2c8312a2b
Visible width/height fields were added in Theora 3.2
conrad
parents:
7966
diff
changeset
|
2009 visible_height = s->height = get_bits(gb, 16) << 4; |
| 2967 | 2010 |
| 2422 | 2011 if(avcodec_check_dimensions(avctx, s->width, s->height)){ |
|
2943
6bf62c1cf1b6
Fixing theora _again_. DONT BOTHER BREAKING THIS AGAIN. Added support for Theora 3.4 and stream created by Elphel cameras are decodable.
alex
parents:
2942
diff
changeset
|
2012 av_log(avctx, AV_LOG_ERROR, "Invalid dimensions (%dx%d)\n", s->width, s->height); |
| 2422 | 2013 s->width= s->height= 0; |
| 2014 return -1; | |
| 2015 } | |
|
2943
6bf62c1cf1b6
Fixing theora _again_. DONT BOTHER BREAKING THIS AGAIN. Added support for Theora 3.4 and stream created by Elphel cameras are decodable.
alex
parents:
2942
diff
changeset
|
2016 |
|
7967
6ac2c8312a2b
Visible width/height fields were added in Theora 3.2
conrad
parents:
7966
diff
changeset
|
2017 if (s->theora >= 0x030200) { |
| 7968 | 2018 visible_width = get_bits_long(gb, 24); |
| 2019 visible_height = get_bits_long(gb, 24); | |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2020 |
| 4936 | 2021 skip_bits(gb, 8); /* offset x */ |
| 2022 skip_bits(gb, 8); /* offset y */ | |
| 2023 } | |
|
3484
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2024 |
|
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2025 skip_bits(gb, 32); /* fps numerator */ |
|
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2026 skip_bits(gb, 32); /* fps denumerator */ |
|
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2027 skip_bits(gb, 24); /* aspect numerator */ |
|
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2028 skip_bits(gb, 24); /* aspect denumerator */ |
| 2967 | 2029 |
| 2678 | 2030 if (s->theora < 0x030200) |
|
3484
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2031 skip_bits(gb, 5); /* keyframe frequency force */ |
| 11128 | 2032 colorspace = get_bits(gb, 8); |
|
3484
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2033 skip_bits(gb, 24); /* bitrate */ |
|
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2034 |
|
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2035 skip_bits(gb, 6); /* quality hint */ |
| 2967 | 2036 |
| 2678 | 2037 if (s->theora >= 0x030200) |
|
1627
a80b15c0b9d5
theora alpha3 support (with maintaining backward compatibility, maybe we should remove all backward compatibility codes after final theora release?)
alex
parents:
1626
diff
changeset
|
2038 { |
|
3484
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2039 skip_bits(gb, 5); /* keyframe frequency force */ |
|
11127
2f7baf2042a3
Theora 3.4 doesn't exist; these fields were misunderstandings of the spec
conrad
parents:
11126
diff
changeset
|
2040 skip_bits(gb, 2); /* pixel format: 420,res,422,444 */ |
|
2f7baf2042a3
Theora 3.4 doesn't exist; these fields were misunderstandings of the spec
conrad
parents:
11126
diff
changeset
|
2041 skip_bits(gb, 3); /* reserved */ |
|
1627
a80b15c0b9d5
theora alpha3 support (with maintaining backward compatibility, maybe we should remove all backward compatibility codes after final theora release?)
alex
parents:
1626
diff
changeset
|
2042 } |
| 2967 | 2043 |
|
3484
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2044 // align_get_bits(gb); |
| 2967 | 2045 |
|
4935
b34f448e1a12
fix display of theora videos with visible size smaller than encoded size
aurel
parents:
4826
diff
changeset
|
2046 if ( visible_width <= s->width && visible_width > s->width-16 |
|
b34f448e1a12
fix display of theora videos with visible size smaller than encoded size
aurel
parents:
4826
diff
changeset
|
2047 && visible_height <= s->height && visible_height > s->height-16) |
|
b34f448e1a12
fix display of theora videos with visible size smaller than encoded size
aurel
parents:
4826
diff
changeset
|
2048 avcodec_set_dimensions(avctx, visible_width, visible_height); |
|
b34f448e1a12
fix display of theora videos with visible size smaller than encoded size
aurel
parents:
4826
diff
changeset
|
2049 else |
|
b34f448e1a12
fix display of theora videos with visible size smaller than encoded size
aurel
parents:
4826
diff
changeset
|
2050 avcodec_set_dimensions(avctx, s->width, s->height); |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2051 |
| 11128 | 2052 if (colorspace == 1) { |
| 2053 avctx->color_primaries = AVCOL_PRI_BT470M; | |
| 2054 } else if (colorspace == 2) { | |
| 2055 avctx->color_primaries = AVCOL_PRI_BT470BG; | |
| 2056 } | |
| 2057 if (colorspace == 1 || colorspace == 2) { | |
| 2058 avctx->colorspace = AVCOL_SPC_BT470BG; | |
| 2059 avctx->color_trc = AVCOL_TRC_BT709; | |
| 2060 } | |
| 2061 | |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2062 return 0; |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2063 } |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2064 |
|
3484
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2065 static int theora_decode_tables(AVCodecContext *avctx, GetBitContext *gb) |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2066 { |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2067 Vp3DecodeContext *s = avctx->priv_data; |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2068 int i, n, matrices, inter, plane; |
| 2678 | 2069 |
| 2070 if (s->theora >= 0x030200) { | |
|
3484
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2071 n = get_bits(gb, 3); |
|
2731
0b4b57c4a8f5
read loop filter limit values from Theora header, courtesy of Matthieu
melanson
parents:
2726
diff
changeset
|
2072 /* loop filter limit values table */ |
|
9922
ffdd1d32c40c
Ensure that the filter limit values do not exceed the maximum allowed value of 127.
reimar
parents:
9921
diff
changeset
|
2073 for (i = 0; i < 64; i++) { |
|
3484
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2074 s->filter_limit_values[i] = get_bits(gb, n); |
|
9922
ffdd1d32c40c
Ensure that the filter limit values do not exceed the maximum allowed value of 127.
reimar
parents:
9921
diff
changeset
|
2075 if (s->filter_limit_values[i] > 127) { |
|
ffdd1d32c40c
Ensure that the filter limit values do not exceed the maximum allowed value of 127.
reimar
parents:
9921
diff
changeset
|
2076 av_log(avctx, AV_LOG_ERROR, "filter limit value too large (%i > 127), clamping\n", s->filter_limit_values[i]); |
|
ffdd1d32c40c
Ensure that the filter limit values do not exceed the maximum allowed value of 127.
reimar
parents:
9921
diff
changeset
|
2077 s->filter_limit_values[i] = 127; |
|
ffdd1d32c40c
Ensure that the filter limit values do not exceed the maximum allowed value of 127.
reimar
parents:
9921
diff
changeset
|
2078 } |
|
ffdd1d32c40c
Ensure that the filter limit values do not exceed the maximum allowed value of 127.
reimar
parents:
9921
diff
changeset
|
2079 } |
| 2678 | 2080 } |
| 2967 | 2081 |
| 2678 | 2082 if (s->theora >= 0x030200) |
|
3484
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2083 n = get_bits(gb, 4) + 1; |
| 2678 | 2084 else |
| 2085 n = 16; | |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2086 /* quality threshold table */ |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2087 for (i = 0; i < 64; i++) |
|
3484
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2088 s->coded_ac_scale_factor[i] = get_bits(gb, n); |
| 2678 | 2089 |
| 2090 if (s->theora >= 0x030200) | |
|
3484
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2091 n = get_bits(gb, 4) + 1; |
| 2678 | 2092 else |
| 2093 n = 16; | |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2094 /* dc scale factor table */ |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2095 for (i = 0; i < 64; i++) |
|
3484
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2096 s->coded_dc_scale_factor[i] = get_bits(gb, n); |
| 2678 | 2097 |
| 2098 if (s->theora >= 0x030200) | |
|
3484
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2099 matrices = get_bits(gb, 9) + 1; |
| 2678 | 2100 else |
|
2944
3785497656c9
Correctly skip unknown matrices (patch by Matthieu Castet) and disable comment reading
alex
parents:
2943
diff
changeset
|
2101 matrices = 3; |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2102 |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2103 if(matrices > 384){ |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2104 av_log(avctx, AV_LOG_ERROR, "invalid number of base matrixes\n"); |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2105 return -1; |
| 2678 | 2106 } |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2107 |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2108 for(n=0; n<matrices; n++){ |
| 2979 | 2109 for (i = 0; i < 64; i++) |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2110 s->base_matrix[n][i]= get_bits(gb, 8); |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2111 } |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2112 |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2113 for (inter = 0; inter <= 1; inter++) { |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2114 for (plane = 0; plane <= 2; plane++) { |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2115 int newqr= 1; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2116 if (inter || plane > 0) |
| 5513 | 2117 newqr = get_bits1(gb); |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
2118 if (!newqr) { |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2119 int qtj, plj; |
| 5513 | 2120 if(inter && get_bits1(gb)){ |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2121 qtj = 0; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2122 plj = plane; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2123 }else{ |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2124 qtj= (3*inter + plane - 1) / 3; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2125 plj= (plane + 2) % 3; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2126 } |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2127 s->qr_count[inter][plane]= s->qr_count[qtj][plj]; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2128 memcpy(s->qr_size[inter][plane], s->qr_size[qtj][plj], sizeof(s->qr_size[0][0])); |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2129 memcpy(s->qr_base[inter][plane], s->qr_base[qtj][plj], sizeof(s->qr_base[0][0])); |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2130 } else { |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2131 int qri= 0; |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
2132 int qi = 0; |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2133 |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2134 for(;;){ |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2135 i= get_bits(gb, av_log2(matrices-1)+1); |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2136 if(i>= matrices){ |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2137 av_log(avctx, AV_LOG_ERROR, "invalid base matrix index\n"); |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2138 return -1; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2139 } |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2140 s->qr_base[inter][plane][qri]= i; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2141 if(qi >= 63) |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2142 break; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2143 i = get_bits(gb, av_log2(63-qi)+1) + 1; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2144 s->qr_size[inter][plane][qri++]= i; |
|
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2145 qi += i; |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
2146 } |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2147 |
|
2944
3785497656c9
Correctly skip unknown matrices (patch by Matthieu Castet) and disable comment reading
alex
parents:
2943
diff
changeset
|
2148 if (qi > 63) { |
|
2943
6bf62c1cf1b6
Fixing theora _again_. DONT BOTHER BREAKING THIS AGAIN. Added support for Theora 3.4 and stream created by Elphel cameras are decodable.
alex
parents:
2942
diff
changeset
|
2149 av_log(avctx, AV_LOG_ERROR, "invalid qi %d > 63\n", qi); |
| 2979 | 2150 return -1; |
| 2151 } | |
|
3489
9aacd9410e57
attempt to implement xiphs useless and stupid quantization matrix mess
michael
parents:
3488
diff
changeset
|
2152 s->qr_count[inter][plane]= qri; |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
2153 } |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
2154 } |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
2155 } |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
2156 |
|
2944
3785497656c9
Correctly skip unknown matrices (patch by Matthieu Castet) and disable comment reading
alex
parents:
2943
diff
changeset
|
2157 /* Huffman tables */ |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
2158 for (s->hti = 0; s->hti < 80; s->hti++) { |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
2159 s->entries = 0; |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
2160 s->huff_code_size = 1; |
| 5513 | 2161 if (!get_bits1(gb)) { |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
2162 s->hbits = 0; |
| 8770 | 2163 if(read_huffman_tree(avctx, gb)) |
| 2164 return -1; | |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
2165 s->hbits = 1; |
| 8770 | 2166 if(read_huffman_tree(avctx, gb)) |
| 2167 return -1; | |
|
2718
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
2168 } |
|
158dc437c783
read Huffman tables from Theora header (patch courtesy of
melanson
parents:
2714
diff
changeset
|
2169 } |
| 2967 | 2170 |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2171 s->theora_tables = 1; |
| 2967 | 2172 |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2173 return 0; |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2174 } |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2175 |
|
9007
043574c5c153
Add missing av_cold in static init/close functions.
stefano
parents:
8770
diff
changeset
|
2176 static av_cold int theora_decode_init(AVCodecContext *avctx) |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2177 { |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2178 Vp3DecodeContext *s = avctx->priv_data; |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2179 GetBitContext gb; |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2180 int ptype; |
|
4723
b62a3a46856c
use generic xiph header spliting func to split theora headers
aurel
parents:
4594
diff
changeset
|
2181 uint8_t *header_start[3]; |
|
b62a3a46856c
use generic xiph header spliting func to split theora headers
aurel
parents:
4594
diff
changeset
|
2182 int header_len[3]; |
|
b62a3a46856c
use generic xiph header spliting func to split theora headers
aurel
parents:
4594
diff
changeset
|
2183 int i; |
| 2967 | 2184 |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2185 s->theora = 1; |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2186 |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2187 if (!avctx->extradata_size) |
|
2943
6bf62c1cf1b6
Fixing theora _again_. DONT BOTHER BREAKING THIS AGAIN. Added support for Theora 3.4 and stream created by Elphel cameras are decodable.
alex
parents:
2942
diff
changeset
|
2188 { |
|
6bf62c1cf1b6
Fixing theora _again_. DONT BOTHER BREAKING THIS AGAIN. Added support for Theora 3.4 and stream created by Elphel cameras are decodable.
alex
parents:
2942
diff
changeset
|
2189 av_log(avctx, AV_LOG_ERROR, "Missing extradata!\n"); |
| 2979 | 2190 return -1; |
|
2943
6bf62c1cf1b6
Fixing theora _again_. DONT BOTHER BREAKING THIS AGAIN. Added support for Theora 3.4 and stream created by Elphel cameras are decodable.
alex
parents:
2942
diff
changeset
|
2191 } |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2192 |
|
4723
b62a3a46856c
use generic xiph header spliting func to split theora headers
aurel
parents:
4594
diff
changeset
|
2193 if (ff_split_xiph_headers(avctx->extradata, avctx->extradata_size, |
|
b62a3a46856c
use generic xiph header spliting func to split theora headers
aurel
parents:
4594
diff
changeset
|
2194 42, header_start, header_len) < 0) { |
|
b62a3a46856c
use generic xiph header spliting func to split theora headers
aurel
parents:
4594
diff
changeset
|
2195 av_log(avctx, AV_LOG_ERROR, "Corrupt extradata\n"); |
|
b62a3a46856c
use generic xiph header spliting func to split theora headers
aurel
parents:
4594
diff
changeset
|
2196 return -1; |
|
b62a3a46856c
use generic xiph header spliting func to split theora headers
aurel
parents:
4594
diff
changeset
|
2197 } |
|
b62a3a46856c
use generic xiph header spliting func to split theora headers
aurel
parents:
4594
diff
changeset
|
2198 |
| 2533 | 2199 for(i=0;i<3;i++) { |
| 10247 | 2200 init_get_bits(&gb, header_start[i], header_len[i] * 8); |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2201 |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2202 ptype = get_bits(&gb, 8); |
| 2967 | 2203 |
|
2943
6bf62c1cf1b6
Fixing theora _again_. DONT BOTHER BREAKING THIS AGAIN. Added support for Theora 3.4 and stream created by Elphel cameras are decodable.
alex
parents:
2942
diff
changeset
|
2204 if (!(ptype & 0x80)) |
|
6bf62c1cf1b6
Fixing theora _again_. DONT BOTHER BREAKING THIS AGAIN. Added support for Theora 3.4 and stream created by Elphel cameras are decodable.
alex
parents:
2942
diff
changeset
|
2205 { |
|
6bf62c1cf1b6
Fixing theora _again_. DONT BOTHER BREAKING THIS AGAIN. Added support for Theora 3.4 and stream created by Elphel cameras are decodable.
alex
parents:
2942
diff
changeset
|
2206 av_log(avctx, AV_LOG_ERROR, "Invalid extradata!\n"); |
|
3484
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2207 // return -1; |
| 2967 | 2208 } |
|
2943
6bf62c1cf1b6
Fixing theora _again_. DONT BOTHER BREAKING THIS AGAIN. Added support for Theora 3.4 and stream created by Elphel cameras are decodable.
alex
parents:
2942
diff
changeset
|
2209 |
| 4561 | 2210 // FIXME: Check for this as well. |
| 9637 | 2211 skip_bits_long(&gb, 6*8); /* "theora" */ |
| 2967 | 2212 |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2213 switch(ptype) |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2214 { |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2215 case 0x80: |
|
3484
9a70c6d3c653
check how many bits are left after decoding extradata
michael
parents:
3483
diff
changeset
|
2216 theora_decode_header(avctx, &gb); |
| 2979 | 2217 break; |
| 2218 case 0x81: | |
|
2944
3785497656c9
Correctly skip unknown matrices (patch by Matthieu Castet) and disable comment reading
alex
parents:
2943
diff
changeset
|
2219 // FIXME: is this needed? it breaks sometimes |
| 2979 | 2220 // theora_decode_comments(avctx, gb); |
| 2221 break; | |
| 2222 case 0x82: | |
| 8770 | 2223 if (theora_decode_tables(avctx, &gb)) |
| 2224 return -1; | |
| 2979 | 2225 break; |
| 2226 default: | |
| 2227 av_log(avctx, AV_LOG_ERROR, "Unknown Theora config packet: %d\n", ptype&~0x80); | |
| 2228 break; | |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2229 } |
|
7943
3ff31e4454cd
Downgrade severity of leftover bits in header packets, and don't check for the comment header
conrad
parents:
7938
diff
changeset
|
2230 if(ptype != 0x81 && 8*header_len[i] != get_bits_count(&gb)) |
|
3ff31e4454cd
Downgrade severity of leftover bits in header packets, and don't check for the comment header
conrad
parents:
7938
diff
changeset
|
2231 av_log(avctx, AV_LOG_WARNING, "%d bits left in packet %X\n", 8*header_len[i] - get_bits_count(&gb), ptype); |
|
3490
b43d45362038
fix playback of theora.ogg on mphq patch by (matthieu castet %% castet dat matthieu ot free dat fr %%)
michael
parents:
3489
diff
changeset
|
2232 if (s->theora < 0x030200) |
|
b43d45362038
fix playback of theora.ogg on mphq patch by (matthieu castet %% castet dat matthieu ot free dat fr %%)
michael
parents:
3489
diff
changeset
|
2233 break; |
| 2533 | 2234 } |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2235 |
|
9925
2978d5f0ac0a
Remove useless ret variable added in last revision again.
reimar
parents:
9924
diff
changeset
|
2236 return vp3_decode_init(avctx); |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2237 } |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2238 |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2239 AVCodec theora_decoder = { |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2240 "theora", |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2241 CODEC_TYPE_VIDEO, |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2242 CODEC_ID_THEORA, |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2243 sizeof(Vp3DecodeContext), |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2244 theora_decode_init, |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2245 NULL, |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2246 vp3_decode_end, |
|
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2247 vp3_decode_frame, |
|
11132
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
2248 CODEC_CAP_DR1 | CODEC_CAP_DRAW_HORIZ_BAND, |
| 6710 | 2249 NULL, |
|
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
7038
diff
changeset
|
2250 .long_name = NULL_IF_CONFIG_SMALL("Theora"), |
|
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1463
diff
changeset
|
2251 }; |
|
4823
cff8c7ecac71
Fix compilation when Theora decoder is disabled, but VP3 is enabled.
diego
parents:
4801
diff
changeset
|
2252 #endif |
|
4825
3f32f0e5a77b
cosmetics: Move one code block to save an #ifdef in the next commit.
diego
parents:
4824
diff
changeset
|
2253 |
|
3f32f0e5a77b
cosmetics: Move one code block to save an #ifdef in the next commit.
diego
parents:
4824
diff
changeset
|
2254 AVCodec vp3_decoder = { |
|
3f32f0e5a77b
cosmetics: Move one code block to save an #ifdef in the next commit.
diego
parents:
4824
diff
changeset
|
2255 "vp3", |
|
3f32f0e5a77b
cosmetics: Move one code block to save an #ifdef in the next commit.
diego
parents:
4824
diff
changeset
|
2256 CODEC_TYPE_VIDEO, |
|
3f32f0e5a77b
cosmetics: Move one code block to save an #ifdef in the next commit.
diego
parents:
4824
diff
changeset
|
2257 CODEC_ID_VP3, |
|
3f32f0e5a77b
cosmetics: Move one code block to save an #ifdef in the next commit.
diego
parents:
4824
diff
changeset
|
2258 sizeof(Vp3DecodeContext), |
|
3f32f0e5a77b
cosmetics: Move one code block to save an #ifdef in the next commit.
diego
parents:
4824
diff
changeset
|
2259 vp3_decode_init, |
|
3f32f0e5a77b
cosmetics: Move one code block to save an #ifdef in the next commit.
diego
parents:
4824
diff
changeset
|
2260 NULL, |
|
3f32f0e5a77b
cosmetics: Move one code block to save an #ifdef in the next commit.
diego
parents:
4824
diff
changeset
|
2261 vp3_decode_end, |
|
3f32f0e5a77b
cosmetics: Move one code block to save an #ifdef in the next commit.
diego
parents:
4824
diff
changeset
|
2262 vp3_decode_frame, |
|
11132
449c12b6c3a0
Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder
conrad
parents:
11131
diff
changeset
|
2263 CODEC_CAP_DR1 | CODEC_CAP_DRAW_HORIZ_BAND, |
| 6710 | 2264 NULL, |
|
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
7038
diff
changeset
|
2265 .long_name = NULL_IF_CONFIG_SMALL("On2 VP3"), |
|
4825
3f32f0e5a77b
cosmetics: Move one code block to save an #ifdef in the next commit.
diego
parents:
4824
diff
changeset
|
2266 }; |
