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