Commit | Line | Data |
---|---|---|
0da71265 MN |
1 | /* |
2 | * H.26L/H.264/AVC/JVT/14496-10/... encoder/decoder | |
3 | * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at> | |
4 | * | |
5 | * This library is free software; you can redistribute it and/or | |
6 | * modify it under the terms of the GNU Lesser General Public | |
7 | * License as published by the Free Software Foundation; either | |
8 | * version 2 of the License, or (at your option) any later version. | |
9 | * | |
10 | * This library is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | * Lesser General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU Lesser General Public | |
16 | * License along with this library; if not, write to the Free Software | |
17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 | * | |
19 | */ | |
20 | ||
21 | /** | |
22 | * @file h264.c | |
23 | * H.264 / AVC / MPEG4 part10 codec. | |
24 | * @author Michael Niedermayer <michaelni@gmx.at> | |
25 | */ | |
26 | ||
27 | #include "common.h" | |
28 | #include "dsputil.h" | |
29 | #include "avcodec.h" | |
30 | #include "mpegvideo.h" | |
31 | #include "h264data.h" | |
32 | #include "golomb.h" | |
33 | ||
e5017ab8 LA |
34 | #include "cabac.h" |
35 | ||
0da71265 MN |
36 | #undef NDEBUG |
37 | #include <assert.h> | |
38 | ||
39 | #define interlaced_dct interlaced_dct_is_a_bad_name | |
40 | #define mb_intra mb_intra_isnt_initalized_see_mb_type | |
41 | ||
42 | #define LUMA_DC_BLOCK_INDEX 25 | |
43 | #define CHROMA_DC_BLOCK_INDEX 26 | |
44 | ||
45 | #define CHROMA_DC_COEFF_TOKEN_VLC_BITS 8 | |
46 | #define COEFF_TOKEN_VLC_BITS 8 | |
47 | #define TOTAL_ZEROS_VLC_BITS 9 | |
48 | #define CHROMA_DC_TOTAL_ZEROS_VLC_BITS 3 | |
49 | #define RUN_VLC_BITS 3 | |
50 | #define RUN7_VLC_BITS 6 | |
51 | ||
52 | #define MAX_SPS_COUNT 32 | |
53 | #define MAX_PPS_COUNT 256 | |
54 | ||
55 | #define MAX_MMCO_COUNT 66 | |
56 | ||
57 | /** | |
58 | * Sequence parameter set | |
59 | */ | |
60 | typedef struct SPS{ | |
61 | ||
62 | int profile_idc; | |
63 | int level_idc; | |
0da71265 MN |
64 | int log2_max_frame_num; ///< log2_max_frame_num_minus4 + 4 |
65 | int poc_type; ///< pic_order_cnt_type | |
66 | int log2_max_poc_lsb; ///< log2_max_pic_order_cnt_lsb_minus4 | |
67 | int delta_pic_order_always_zero_flag; | |
68 | int offset_for_non_ref_pic; | |
69 | int offset_for_top_to_bottom_field; | |
70 | int poc_cycle_length; ///< num_ref_frames_in_pic_order_cnt_cycle | |
71 | int ref_frame_count; ///< num_ref_frames | |
a15e68de | 72 | int gaps_in_frame_num_allowed_flag; |
0da71265 MN |
73 | int mb_width; ///< frame_width_in_mbs_minus1 + 1 |
74 | int mb_height; ///< frame_height_in_mbs_minus1 + 1 | |
75 | int frame_mbs_only_flag; | |
76 | int mb_aff; ///<mb_adaptive_frame_field_flag | |
77 | int direct_8x8_inference_flag; | |
a15e68de MN |
78 | int crop; ///< frame_cropping_flag |
79 | int crop_left; ///< frame_cropping_rect_left_offset | |
80 | int crop_right; ///< frame_cropping_rect_right_offset | |
81 | int crop_top; ///< frame_cropping_rect_top_offset | |
82 | int crop_bottom; ///< frame_cropping_rect_bottom_offset | |
0da71265 | 83 | int vui_parameters_present_flag; |
5ff85f1d | 84 | AVRational sar; |
ec587a50 MR |
85 | int timing_info_present_flag; |
86 | uint32_t num_units_in_tick; | |
87 | uint32_t time_scale; | |
88 | int fixed_frame_rate_flag; | |
0da71265 MN |
89 | short offset_for_ref_frame[256]; //FIXME dyn aloc? |
90 | }SPS; | |
91 | ||
92 | /** | |
93 | * Picture parameter set | |
94 | */ | |
95 | typedef struct PPS{ | |
96 | int sps_id; | |
97 | int cabac; ///< entropy_coding_mode_flag | |
98 | int pic_order_present; ///< pic_order_present_flag | |
99 | int slice_group_count; ///< num_slice_groups_minus1 + 1 | |
100 | int mb_slice_group_map_type; | |
101 | int ref_count[2]; ///< num_ref_idx_l0/1_active_minus1 + 1 | |
102 | int weighted_pred; ///< weighted_pred_flag | |
103 | int weighted_bipred_idc; | |
104 | int init_qp; ///< pic_init_qp_minus26 + 26 | |
105 | int init_qs; ///< pic_init_qs_minus26 + 26 | |
106 | int chroma_qp_index_offset; | |
107 | int deblocking_filter_parameters_present; ///< deblocking_filter_parameters_present_flag | |
108 | int constrained_intra_pred; ///< constrained_intra_pred_flag | |
109 | int redundant_pic_cnt_present; ///< redundant_pic_cnt_present_flag | |
0da71265 MN |
110 | }PPS; |
111 | ||
112 | /** | |
113 | * Memory management control operation opcode. | |
114 | */ | |
115 | typedef enum MMCOOpcode{ | |
116 | MMCO_END=0, | |
117 | MMCO_SHORT2UNUSED, | |
118 | MMCO_LONG2UNUSED, | |
119 | MMCO_SHORT2LONG, | |
120 | MMCO_SET_MAX_LONG, | |
121 | MMCO_RESET, | |
122 | MMCO_LONG, | |
123 | } MMCOOpcode; | |
124 | ||
125 | /** | |
126 | * Memory management control operation. | |
127 | */ | |
128 | typedef struct MMCO{ | |
129 | MMCOOpcode opcode; | |
130 | int short_frame_num; | |
131 | int long_index; | |
132 | } MMCO; | |
133 | ||
134 | /** | |
135 | * H264Context | |
136 | */ | |
137 | typedef struct H264Context{ | |
138 | MpegEncContext s; | |
139 | int nal_ref_idc; | |
140 | int nal_unit_type; | |
141 | #define NAL_SLICE 1 | |
142 | #define NAL_DPA 2 | |
143 | #define NAL_DPB 3 | |
144 | #define NAL_DPC 4 | |
145 | #define NAL_IDR_SLICE 5 | |
146 | #define NAL_SEI 6 | |
147 | #define NAL_SPS 7 | |
148 | #define NAL_PPS 8 | |
149 | #define NAL_PICTURE_DELIMITER 9 | |
150 | #define NAL_FILTER_DATA 10 | |
151 | uint8_t *rbsp_buffer; | |
152 | int rbsp_buffer_size; | |
153 | ||
4770b1b4 RT |
154 | /** |
155 | * Used to parse AVC variant of h264 | |
156 | */ | |
157 | int is_avc; ///< this flag is != 0 if codec is avc1 | |
158 | int got_avcC; ///< flag used to parse avcC data only once | |
159 | int nal_length_size; ///< Number of bytes used for nal length (1, 2 or 4) | |
160 | ||
0da71265 MN |
161 | int chroma_qp; //QPc |
162 | ||
163 | int prev_mb_skiped; //FIXME remove (IMHO not used) | |
164 | ||
165 | //prediction stuff | |
166 | int chroma_pred_mode; | |
167 | int intra16x16_pred_mode; | |
168 | ||
169 | int8_t intra4x4_pred_mode_cache[5*8]; | |
170 | int8_t (*intra4x4_pred_mode)[8]; | |
171 | void (*pred4x4 [9+3])(uint8_t *src, uint8_t *topright, int stride);//FIXME move to dsp? | |
172 | void (*pred8x8 [4+3])(uint8_t *src, int stride); | |
173 | void (*pred16x16[4+3])(uint8_t *src, int stride); | |
174 | unsigned int topleft_samples_available; | |
175 | unsigned int top_samples_available; | |
176 | unsigned int topright_samples_available; | |
177 | unsigned int left_samples_available; | |
53c05b1e MN |
178 | uint8_t (*top_border)[16+2*8]; |
179 | uint8_t left_border[17+2*9]; | |
0da71265 MN |
180 | |
181 | /** | |
182 | * non zero coeff count cache. | |
183 | * is 64 if not available. | |
184 | */ | |
185 | uint8_t non_zero_count_cache[6*8]; | |
53c05b1e | 186 | uint8_t (*non_zero_count)[16]; |
0da71265 MN |
187 | |
188 | /** | |
189 | * Motion vector cache. | |
190 | */ | |
191 | int16_t mv_cache[2][5*8][2]; | |
192 | int8_t ref_cache[2][5*8]; | |
193 | #define LIST_NOT_USED -1 //FIXME rename? | |
194 | #define PART_NOT_AVAILABLE -2 | |
195 | ||
196 | /** | |
197 | * is 1 if the specific list MV&references are set to 0,0,-2. | |
198 | */ | |
199 | int mv_cache_clean[2]; | |
200 | ||
201 | int block_offset[16+8]; | |
202 | int chroma_subblock_offset[16]; //FIXME remove | |
203 | ||
204 | uint16_t *mb2b_xy; //FIXME are these 4 a good idea? | |
205 | uint16_t *mb2b8_xy; | |
206 | int b_stride; | |
207 | int b8_stride; | |
208 | ||
8b82a956 MN |
209 | int halfpel_flag; |
210 | int thirdpel_flag; | |
211 | ||
da3b9756 MM |
212 | int unknown_svq3_flag; |
213 | int next_slice_index; | |
214 | ||
0da71265 MN |
215 | SPS sps_buffer[MAX_SPS_COUNT]; |
216 | SPS sps; ///< current sps | |
217 | ||
218 | PPS pps_buffer[MAX_PPS_COUNT]; | |
219 | /** | |
220 | * current pps | |
221 | */ | |
222 | PPS pps; //FIXME move tp Picture perhaps? (->no) do we need that? | |
223 | ||
224 | int slice_num; | |
225 | uint8_t *slice_table_base; | |
226 | uint8_t *slice_table; ///< slice_table_base + mb_stride + 1 | |
227 | int slice_type; | |
228 | int slice_type_fixed; | |
229 | ||
230 | //interlacing specific flags | |
231 | int mb_field_decoding_flag; | |
232 | ||
233 | int sub_mb_type[4]; | |
234 | ||
235 | //POC stuff | |
236 | int poc_lsb; | |
237 | int poc_msb; | |
238 | int delta_poc_bottom; | |
239 | int delta_poc[2]; | |
240 | int frame_num; | |
241 | int prev_poc_msb; ///< poc_msb of the last reference pic for POC type 0 | |
242 | int prev_poc_lsb; ///< poc_lsb of the last reference pic for POC type 0 | |
243 | int frame_num_offset; ///< for POC type 2 | |
244 | int prev_frame_num_offset; ///< for POC type 2 | |
245 | int prev_frame_num; ///< frame_num of the last pic for POC type 1/2 | |
246 | ||
247 | /** | |
248 | * frame_num for frames or 2*frame_num for field pics. | |
249 | */ | |
250 | int curr_pic_num; | |
251 | ||
252 | /** | |
253 | * max_frame_num or 2*max_frame_num for field pics. | |
254 | */ | |
255 | int max_pic_num; | |
256 | ||
257 | //Weighted pred stuff | |
258 | int luma_log2_weight_denom; | |
259 | int chroma_log2_weight_denom; | |
260 | int luma_weight[2][16]; | |
261 | int luma_offset[2][16]; | |
262 | int chroma_weight[2][16][2]; | |
263 | int chroma_offset[2][16][2]; | |
264 | ||
265 | //deblock | |
53c05b1e | 266 | int deblocking_filter; ///< disable_deblocking_filter_idc with 1<->0 |
980a82b7 MN |
267 | int slice_alpha_c0_offset; |
268 | int slice_beta_offset; | |
0da71265 MN |
269 | |
270 | int redundant_pic_count; | |
271 | ||
272 | int direct_spatial_mv_pred; | |
273 | ||
274 | /** | |
275 | * num_ref_idx_l0/1_active_minus1 + 1 | |
276 | */ | |
277 | int ref_count[2];// FIXME split for AFF | |
278 | Picture *short_ref[16]; | |
279 | Picture *long_ref[16]; | |
280 | Picture default_ref_list[2][32]; | |
281 | Picture ref_list[2][32]; //FIXME size? | |
282 | Picture field_ref_list[2][32]; //FIXME size? | |
283 | ||
284 | /** | |
285 | * memory management control operations buffer. | |
286 | */ | |
287 | MMCO mmco[MAX_MMCO_COUNT]; | |
288 | int mmco_index; | |
289 | ||
290 | int long_ref_count; ///< number of actual long term references | |
291 | int short_ref_count; ///< number of actual short term references | |
292 | ||
293 | //data partitioning | |
294 | GetBitContext intra_gb; | |
295 | GetBitContext inter_gb; | |
296 | GetBitContext *intra_gb_ptr; | |
297 | GetBitContext *inter_gb_ptr; | |
298 | ||
299 | DCTELEM mb[16*24] __align8; | |
e5017ab8 LA |
300 | |
301 | /** | |
302 | * Cabac | |
303 | */ | |
304 | CABACContext cabac; | |
305 | uint8_t cabac_state[399]; | |
306 | int cabac_init_idc; | |
307 | ||
308 | /* 0x100 -> non null luma_dc, 0x80/0x40 -> non null chroma_dc (cb/cr), 0x?0 -> chroma_cbp(0,1,2), 0x0? luma_cbp */ | |
309 | uint16_t *cbp_table; | |
693399ba | 310 | /* chroma_pred_mode for i4x4 or i16x16, else 0 */ |
e5017ab8 LA |
311 | uint8_t *chroma_pred_mode_table; |
312 | int last_qscale_diff; | |
9e528114 LA |
313 | int16_t (*mvd_table[2])[2]; |
314 | int16_t mvd_cache[2][5*8][2]; | |
e5017ab8 | 315 | |
0da71265 MN |
316 | }H264Context; |
317 | ||
318 | static VLC coeff_token_vlc[4]; | |
319 | static VLC chroma_dc_coeff_token_vlc; | |
320 | ||
321 | static VLC total_zeros_vlc[15]; | |
322 | static VLC chroma_dc_total_zeros_vlc[3]; | |
323 | ||
324 | static VLC run_vlc[6]; | |
325 | static VLC run7_vlc; | |
326 | ||
8b82a956 MN |
327 | static void svq3_luma_dc_dequant_idct_c(DCTELEM *block, int qp); |
328 | static void svq3_add_idct_c(uint8_t *dst, DCTELEM *block, int stride, int qp, int dc); | |
53c05b1e | 329 | static void filter_mb( H264Context *h, int mb_x, int mb_y, uint8_t *img_y, uint8_t *img_cb, uint8_t *img_cr); |
8b82a956 | 330 | |
377ec888 MN |
331 | static inline uint32_t pack16to32(int a, int b){ |
332 | #ifdef WORDS_BIGENDIAN | |
333 | return (b&0xFFFF) + (a<<16); | |
334 | #else | |
335 | return (a&0xFFFF) + (b<<16); | |
336 | #endif | |
337 | } | |
338 | ||
0da71265 MN |
339 | /** |
340 | * fill a rectangle. | |
341 | * @param h height of the recatangle, should be a constant | |
342 | * @param w width of the recatangle, should be a constant | |
343 | * @param size the size of val (1 or 4), should be a constant | |
344 | */ | |
af6e2fed MN |
345 | static inline void fill_rectangle(void *vp, int w, int h, int stride, uint32_t val, int size){ //FIXME ensure this IS inlined |
346 | uint8_t *p= (uint8_t*)vp; | |
0da71265 MN |
347 | assert(size==1 || size==4); |
348 | ||
349 | w *= size; | |
350 | stride *= size; | |
351 | ||
352 | //FIXME check what gcc generates for 64 bit on x86 and possible write a 32 bit ver of it | |
353 | if(w==2 && h==2){ | |
354 | *(uint16_t*)(p + 0)= | |
355 | *(uint16_t*)(p + stride)= size==4 ? val : val*0x0101; | |
356 | }else if(w==2 && h==4){ | |
357 | *(uint16_t*)(p + 0*stride)= | |
358 | *(uint16_t*)(p + 1*stride)= | |
359 | *(uint16_t*)(p + 2*stride)= | |
360 | *(uint16_t*)(p + 3*stride)= size==4 ? val : val*0x0101; | |
f7a8c179 MN |
361 | }else if(w==4 && h==1){ |
362 | *(uint32_t*)(p + 0*stride)= size==4 ? val : val*0x01010101; | |
0da71265 MN |
363 | }else if(w==4 && h==2){ |
364 | *(uint32_t*)(p + 0*stride)= | |
365 | *(uint32_t*)(p + 1*stride)= size==4 ? val : val*0x01010101; | |
366 | }else if(w==4 && h==4){ | |
367 | *(uint32_t*)(p + 0*stride)= | |
368 | *(uint32_t*)(p + 1*stride)= | |
369 | *(uint32_t*)(p + 2*stride)= | |
370 | *(uint32_t*)(p + 3*stride)= size==4 ? val : val*0x01010101; | |
371 | }else if(w==8 && h==1){ | |
372 | *(uint32_t*)(p + 0)= | |
373 | *(uint32_t*)(p + 4)= size==4 ? val : val*0x01010101; | |
374 | }else if(w==8 && h==2){ | |
375 | *(uint32_t*)(p + 0 + 0*stride)= | |
376 | *(uint32_t*)(p + 4 + 0*stride)= | |
377 | *(uint32_t*)(p + 0 + 1*stride)= | |
378 | *(uint32_t*)(p + 4 + 1*stride)= size==4 ? val : val*0x01010101; | |
379 | }else if(w==8 && h==4){ | |
380 | *(uint64_t*)(p + 0*stride)= | |
381 | *(uint64_t*)(p + 1*stride)= | |
382 | *(uint64_t*)(p + 2*stride)= | |
383 | *(uint64_t*)(p + 3*stride)= size==4 ? val*0x0100000001ULL : val*0x0101010101010101ULL; | |
384 | }else if(w==16 && h==2){ | |
385 | *(uint64_t*)(p + 0+0*stride)= | |
386 | *(uint64_t*)(p + 8+0*stride)= | |
387 | *(uint64_t*)(p + 0+1*stride)= | |
388 | *(uint64_t*)(p + 8+1*stride)= size==4 ? val*0x0100000001ULL : val*0x0101010101010101ULL; | |
389 | }else if(w==16 && h==4){ | |
390 | *(uint64_t*)(p + 0+0*stride)= | |
391 | *(uint64_t*)(p + 8+0*stride)= | |
392 | *(uint64_t*)(p + 0+1*stride)= | |
393 | *(uint64_t*)(p + 8+1*stride)= | |
394 | *(uint64_t*)(p + 0+2*stride)= | |
395 | *(uint64_t*)(p + 8+2*stride)= | |
396 | *(uint64_t*)(p + 0+3*stride)= | |
397 | *(uint64_t*)(p + 8+3*stride)= size==4 ? val*0x0100000001ULL : val*0x0101010101010101ULL; | |
398 | }else | |
399 | assert(0); | |
400 | } | |
401 | ||
402 | static inline void fill_caches(H264Context *h, int mb_type){ | |
403 | MpegEncContext * const s = &h->s; | |
7bc9090a | 404 | const int mb_xy= s->mb_x + s->mb_y*s->mb_stride; |
0da71265 MN |
405 | int topleft_xy, top_xy, topright_xy, left_xy[2]; |
406 | int topleft_type, top_type, topright_type, left_type[2]; | |
407 | int left_block[4]; | |
408 | int i; | |
409 | ||
410 | //wow what a mess, why didnt they simplify the interlacing&intra stuff, i cant imagine that these complex rules are worth it | |
411 | ||
412 | if(h->sps.mb_aff){ | |
413 | //FIXME | |
1df1df0b FB |
414 | topleft_xy = 0; /* avoid warning */ |
415 | top_xy = 0; /* avoid warning */ | |
416 | topright_xy = 0; /* avoid warning */ | |
0da71265 | 417 | }else{ |
7bc9090a MN |
418 | topleft_xy = mb_xy-1 - s->mb_stride; |
419 | top_xy = mb_xy - s->mb_stride; | |
420 | topright_xy= mb_xy+1 - s->mb_stride; | |
0da71265 MN |
421 | left_xy[0] = mb_xy-1; |
422 | left_xy[1] = mb_xy-1; | |
423 | left_block[0]= 0; | |
424 | left_block[1]= 1; | |
425 | left_block[2]= 2; | |
426 | left_block[3]= 3; | |
427 | } | |
428 | ||
429 | topleft_type = h->slice_table[topleft_xy ] == h->slice_num ? s->current_picture.mb_type[topleft_xy] : 0; | |
430 | top_type = h->slice_table[top_xy ] == h->slice_num ? s->current_picture.mb_type[top_xy] : 0; | |
431 | topright_type= h->slice_table[topright_xy] == h->slice_num ? s->current_picture.mb_type[topright_xy]: 0; | |
432 | left_type[0] = h->slice_table[left_xy[0] ] == h->slice_num ? s->current_picture.mb_type[left_xy[0]] : 0; | |
433 | left_type[1] = h->slice_table[left_xy[1] ] == h->slice_num ? s->current_picture.mb_type[left_xy[1]] : 0; | |
434 | ||
435 | if(IS_INTRA(mb_type)){ | |
436 | h->topleft_samples_available= | |
437 | h->top_samples_available= | |
438 | h->left_samples_available= 0xFFFF; | |
439 | h->topright_samples_available= 0xEEEA; | |
440 | ||
441 | if(!IS_INTRA(top_type) && (top_type==0 || h->pps.constrained_intra_pred)){ | |
442 | h->topleft_samples_available= 0xB3FF; | |
443 | h->top_samples_available= 0x33FF; | |
444 | h->topright_samples_available= 0x26EA; | |
445 | } | |
446 | for(i=0; i<2; i++){ | |
447 | if(!IS_INTRA(left_type[i]) && (left_type[i]==0 || h->pps.constrained_intra_pred)){ | |
448 | h->topleft_samples_available&= 0xDF5F; | |
449 | h->left_samples_available&= 0x5F5F; | |
450 | } | |
451 | } | |
452 | ||
453 | if(!IS_INTRA(topleft_type) && (topleft_type==0 || h->pps.constrained_intra_pred)) | |
454 | h->topleft_samples_available&= 0x7FFF; | |
455 | ||
456 | if(!IS_INTRA(topright_type) && (topright_type==0 || h->pps.constrained_intra_pred)) | |
457 | h->topright_samples_available&= 0xFBFF; | |
458 | ||
459 | if(IS_INTRA4x4(mb_type)){ | |
460 | if(IS_INTRA4x4(top_type)){ | |
461 | h->intra4x4_pred_mode_cache[4+8*0]= h->intra4x4_pred_mode[top_xy][4]; | |
462 | h->intra4x4_pred_mode_cache[5+8*0]= h->intra4x4_pred_mode[top_xy][5]; | |
463 | h->intra4x4_pred_mode_cache[6+8*0]= h->intra4x4_pred_mode[top_xy][6]; | |
464 | h->intra4x4_pred_mode_cache[7+8*0]= h->intra4x4_pred_mode[top_xy][3]; | |
465 | }else{ | |
466 | int pred; | |
467 | if(IS_INTRA16x16(top_type) || (IS_INTER(top_type) && !h->pps.constrained_intra_pred)) | |
468 | pred= 2; | |
469 | else{ | |
470 | pred= -1; | |
471 | } | |
472 | h->intra4x4_pred_mode_cache[4+8*0]= | |
473 | h->intra4x4_pred_mode_cache[5+8*0]= | |
474 | h->intra4x4_pred_mode_cache[6+8*0]= | |
475 | h->intra4x4_pred_mode_cache[7+8*0]= pred; | |
476 | } | |
477 | for(i=0; i<2; i++){ | |
478 | if(IS_INTRA4x4(left_type[i])){ | |
479 | h->intra4x4_pred_mode_cache[3+8*1 + 2*8*i]= h->intra4x4_pred_mode[left_xy[i]][left_block[0+2*i]]; | |
480 | h->intra4x4_pred_mode_cache[3+8*2 + 2*8*i]= h->intra4x4_pred_mode[left_xy[i]][left_block[1+2*i]]; | |
481 | }else{ | |
482 | int pred; | |
483 | if(IS_INTRA16x16(left_type[i]) || (IS_INTER(left_type[i]) && !h->pps.constrained_intra_pred)) | |
484 | pred= 2; | |
485 | else{ | |
486 | pred= -1; | |
487 | } | |
488 | h->intra4x4_pred_mode_cache[3+8*1 + 2*8*i]= | |
489 | h->intra4x4_pred_mode_cache[3+8*2 + 2*8*i]= pred; | |
490 | } | |
491 | } | |
492 | } | |
493 | } | |
494 | ||
495 | ||
496 | /* | |
497 | 0 . T T. T T T T | |
498 | 1 L . .L . . . . | |
499 | 2 L . .L . . . . | |
500 | 3 . T TL . . . . | |
501 | 4 L . .L . . . . | |
502 | 5 L . .. . . . . | |
503 | */ | |
504 | //FIXME constraint_intra_pred & partitioning & nnz (lets hope this is just a typo in the spec) | |
505 | if(top_type){ | |
53c05b1e MN |
506 | h->non_zero_count_cache[4+8*0]= h->non_zero_count[top_xy][0]; |
507 | h->non_zero_count_cache[5+8*0]= h->non_zero_count[top_xy][1]; | |
508 | h->non_zero_count_cache[6+8*0]= h->non_zero_count[top_xy][2]; | |
509 | h->non_zero_count_cache[7+8*0]= h->non_zero_count[top_xy][3]; | |
0da71265 | 510 | |
53c05b1e MN |
511 | h->non_zero_count_cache[1+8*0]= h->non_zero_count[top_xy][7]; |
512 | h->non_zero_count_cache[2+8*0]= h->non_zero_count[top_xy][8]; | |
0da71265 | 513 | |
53c05b1e MN |
514 | h->non_zero_count_cache[1+8*3]= h->non_zero_count[top_xy][10]; |
515 | h->non_zero_count_cache[2+8*3]= h->non_zero_count[top_xy][11]; | |
0da71265 MN |
516 | }else{ |
517 | h->non_zero_count_cache[4+8*0]= | |
518 | h->non_zero_count_cache[5+8*0]= | |
519 | h->non_zero_count_cache[6+8*0]= | |
520 | h->non_zero_count_cache[7+8*0]= | |
521 | ||
522 | h->non_zero_count_cache[1+8*0]= | |
523 | h->non_zero_count_cache[2+8*0]= | |
524 | ||
525 | h->non_zero_count_cache[1+8*3]= | |
526 | h->non_zero_count_cache[2+8*3]= 64; | |
527 | } | |
528 | ||
529 | if(left_type[0]){ | |
53c05b1e MN |
530 | h->non_zero_count_cache[3+8*1]= h->non_zero_count[left_xy[0]][6]; |
531 | h->non_zero_count_cache[3+8*2]= h->non_zero_count[left_xy[0]][5]; | |
532 | h->non_zero_count_cache[0+8*1]= h->non_zero_count[left_xy[0]][9]; //FIXME left_block | |
533 | h->non_zero_count_cache[0+8*4]= h->non_zero_count[left_xy[0]][12]; | |
0da71265 MN |
534 | }else{ |
535 | h->non_zero_count_cache[3+8*1]= | |
536 | h->non_zero_count_cache[3+8*2]= | |
537 | h->non_zero_count_cache[0+8*1]= | |
538 | h->non_zero_count_cache[0+8*4]= 64; | |
539 | } | |
540 | ||
541 | if(left_type[1]){ | |
53c05b1e MN |
542 | h->non_zero_count_cache[3+8*3]= h->non_zero_count[left_xy[1]][4]; |
543 | h->non_zero_count_cache[3+8*4]= h->non_zero_count[left_xy[1]][3]; | |
544 | h->non_zero_count_cache[0+8*2]= h->non_zero_count[left_xy[1]][8]; | |
545 | h->non_zero_count_cache[0+8*5]= h->non_zero_count[left_xy[1]][11]; | |
0da71265 MN |
546 | }else{ |
547 | h->non_zero_count_cache[3+8*3]= | |
548 | h->non_zero_count_cache[3+8*4]= | |
549 | h->non_zero_count_cache[0+8*2]= | |
550 | h->non_zero_count_cache[0+8*5]= 64; | |
551 | } | |
552 | ||
553 | #if 1 | |
554 | if(IS_INTER(mb_type)){ | |
555 | int list; | |
556 | for(list=0; list<2; list++){ | |
557 | if((!IS_8X8(mb_type)) && !USES_LIST(mb_type, list)){ | |
558 | /*if(!h->mv_cache_clean[list]){ | |
559 | memset(h->mv_cache [list], 0, 8*5*2*sizeof(int16_t)); //FIXME clean only input? clean at all? | |
560 | memset(h->ref_cache[list], PART_NOT_AVAILABLE, 8*5*sizeof(int8_t)); | |
561 | h->mv_cache_clean[list]= 1; | |
562 | }*/ | |
563 | continue; //FIXME direct mode ... | |
564 | } | |
565 | h->mv_cache_clean[list]= 0; | |
566 | ||
567 | if(IS_INTER(topleft_type)){ | |
568 | const int b_xy = h->mb2b_xy[topleft_xy] + 3 + 3*h->b_stride; | |
569 | const int b8_xy= h->mb2b8_xy[topleft_xy] + 1 + h->b8_stride; | |
570 | *(uint32_t*)h->mv_cache[list][scan8[0] - 1 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy]; | |
571 | h->ref_cache[list][scan8[0] - 1 - 1*8]= s->current_picture.ref_index[list][b8_xy]; | |
572 | }else{ | |
573 | *(uint32_t*)h->mv_cache[list][scan8[0] - 1 - 1*8]= 0; | |
574 | h->ref_cache[list][scan8[0] - 1 - 1*8]= topleft_type ? LIST_NOT_USED : PART_NOT_AVAILABLE; | |
575 | } | |
576 | ||
577 | if(IS_INTER(top_type)){ | |
578 | const int b_xy= h->mb2b_xy[top_xy] + 3*h->b_stride; | |
579 | const int b8_xy= h->mb2b8_xy[top_xy] + h->b8_stride; | |
580 | *(uint32_t*)h->mv_cache[list][scan8[0] + 0 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + 0]; | |
581 | *(uint32_t*)h->mv_cache[list][scan8[0] + 1 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + 1]; | |
582 | *(uint32_t*)h->mv_cache[list][scan8[0] + 2 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + 2]; | |
583 | *(uint32_t*)h->mv_cache[list][scan8[0] + 3 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + 3]; | |
584 | h->ref_cache[list][scan8[0] + 0 - 1*8]= | |
585 | h->ref_cache[list][scan8[0] + 1 - 1*8]= s->current_picture.ref_index[list][b8_xy + 0]; | |
586 | h->ref_cache[list][scan8[0] + 2 - 1*8]= | |
587 | h->ref_cache[list][scan8[0] + 3 - 1*8]= s->current_picture.ref_index[list][b8_xy + 1]; | |
588 | }else{ | |
589 | *(uint32_t*)h->mv_cache [list][scan8[0] + 0 - 1*8]= | |
590 | *(uint32_t*)h->mv_cache [list][scan8[0] + 1 - 1*8]= | |
591 | *(uint32_t*)h->mv_cache [list][scan8[0] + 2 - 1*8]= | |
592 | *(uint32_t*)h->mv_cache [list][scan8[0] + 3 - 1*8]= 0; | |
593 | *(uint32_t*)&h->ref_cache[list][scan8[0] + 0 - 1*8]= ((top_type ? LIST_NOT_USED : PART_NOT_AVAILABLE)&0xFF)*0x01010101; | |
594 | } | |
595 | ||
596 | if(IS_INTER(topright_type)){ | |
597 | const int b_xy= h->mb2b_xy[topright_xy] + 3*h->b_stride; | |
598 | const int b8_xy= h->mb2b8_xy[topright_xy] + h->b8_stride; | |
599 | *(uint32_t*)h->mv_cache[list][scan8[0] + 4 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy]; | |
600 | h->ref_cache[list][scan8[0] + 4 - 1*8]= s->current_picture.ref_index[list][b8_xy]; | |
601 | }else{ | |
602 | *(uint32_t*)h->mv_cache [list][scan8[0] + 4 - 1*8]= 0; | |
603 | h->ref_cache[list][scan8[0] + 4 - 1*8]= topright_type ? LIST_NOT_USED : PART_NOT_AVAILABLE; | |
604 | } | |
605 | ||
606 | //FIXME unify cleanup or sth | |
607 | if(IS_INTER(left_type[0])){ | |
608 | const int b_xy= h->mb2b_xy[left_xy[0]] + 3; | |
609 | const int b8_xy= h->mb2b8_xy[left_xy[0]] + 1; | |
610 | *(uint32_t*)h->mv_cache[list][scan8[0] - 1 + 0*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + h->b_stride*left_block[0]]; | |
611 | *(uint32_t*)h->mv_cache[list][scan8[0] - 1 + 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + h->b_stride*left_block[1]]; | |
612 | h->ref_cache[list][scan8[0] - 1 + 0*8]= | |
613 | h->ref_cache[list][scan8[0] - 1 + 1*8]= s->current_picture.ref_index[list][b8_xy + h->b8_stride*(left_block[0]>>1)]; | |
614 | }else{ | |
615 | *(uint32_t*)h->mv_cache [list][scan8[0] - 1 + 0*8]= | |
616 | *(uint32_t*)h->mv_cache [list][scan8[0] - 1 + 1*8]= 0; | |
617 | h->ref_cache[list][scan8[0] - 1 + 0*8]= | |
618 | h->ref_cache[list][scan8[0] - 1 + 1*8]= left_type[0] ? LIST_NOT_USED : PART_NOT_AVAILABLE; | |
619 | } | |
620 | ||
621 | if(IS_INTER(left_type[1])){ | |
622 | const int b_xy= h->mb2b_xy[left_xy[1]] + 3; | |
623 | const int b8_xy= h->mb2b8_xy[left_xy[1]] + 1; | |
624 | *(uint32_t*)h->mv_cache[list][scan8[0] - 1 + 2*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + h->b_stride*left_block[2]]; | |
625 | *(uint32_t*)h->mv_cache[list][scan8[0] - 1 + 3*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + h->b_stride*left_block[3]]; | |
626 | h->ref_cache[list][scan8[0] - 1 + 2*8]= | |
627 | h->ref_cache[list][scan8[0] - 1 + 3*8]= s->current_picture.ref_index[list][b8_xy + h->b8_stride*(left_block[2]>>1)]; | |
628 | }else{ | |
629 | *(uint32_t*)h->mv_cache [list][scan8[0] - 1 + 2*8]= | |
630 | *(uint32_t*)h->mv_cache [list][scan8[0] - 1 + 3*8]= 0; | |
631 | h->ref_cache[list][scan8[0] - 1 + 2*8]= | |
632 | h->ref_cache[list][scan8[0] - 1 + 3*8]= left_type[0] ? LIST_NOT_USED : PART_NOT_AVAILABLE; | |
633 | } | |
634 | ||
635 | h->ref_cache[list][scan8[5 ]+1] = | |
636 | h->ref_cache[list][scan8[7 ]+1] = | |
637 | h->ref_cache[list][scan8[13]+1] = //FIXME remove past 3 (init somewher else) | |
638 | h->ref_cache[list][scan8[4 ]] = | |
639 | h->ref_cache[list][scan8[12]] = PART_NOT_AVAILABLE; | |
640 | *(uint32_t*)h->mv_cache [list][scan8[5 ]+1]= | |
641 | *(uint32_t*)h->mv_cache [list][scan8[7 ]+1]= | |
642 | *(uint32_t*)h->mv_cache [list][scan8[13]+1]= //FIXME remove past 3 (init somewher else) | |
643 | *(uint32_t*)h->mv_cache [list][scan8[4 ]]= | |
644 | *(uint32_t*)h->mv_cache [list][scan8[12]]= 0; | |
9e528114 LA |
645 | |
646 | if( h->pps.cabac ) { | |
647 | /* XXX beurk, Load mvd */ | |
648 | if(IS_INTER(topleft_type)){ | |
649 | const int b_xy = h->mb2b_xy[topleft_xy] + 3 + 3*h->b_stride; | |
650 | *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy]; | |
651 | }else{ | |
652 | *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 - 1*8]= 0; | |
653 | } | |
654 | ||
655 | if(IS_INTER(top_type)){ | |
656 | const int b_xy= h->mb2b_xy[top_xy] + 3*h->b_stride; | |
657 | *(uint32_t*)h->mvd_cache[list][scan8[0] + 0 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + 0]; | |
658 | *(uint32_t*)h->mvd_cache[list][scan8[0] + 1 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + 1]; | |
659 | *(uint32_t*)h->mvd_cache[list][scan8[0] + 2 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + 2]; | |
660 | *(uint32_t*)h->mvd_cache[list][scan8[0] + 3 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + 3]; | |
661 | }else{ | |
662 | *(uint32_t*)h->mvd_cache [list][scan8[0] + 0 - 1*8]= | |
663 | *(uint32_t*)h->mvd_cache [list][scan8[0] + 1 - 1*8]= | |
664 | *(uint32_t*)h->mvd_cache [list][scan8[0] + 2 - 1*8]= | |
665 | *(uint32_t*)h->mvd_cache [list][scan8[0] + 3 - 1*8]= 0; | |
666 | } | |
667 | if(IS_INTER(left_type[0])){ | |
668 | const int b_xy= h->mb2b_xy[left_xy[0]] + 3; | |
669 | *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 + 0*8]= *(uint32_t*)h->mvd_table[list][b_xy + h->b_stride*left_block[0]]; | |
670 | *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 + 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + h->b_stride*left_block[1]]; | |
671 | }else{ | |
672 | *(uint32_t*)h->mvd_cache [list][scan8[0] - 1 + 0*8]= | |
673 | *(uint32_t*)h->mvd_cache [list][scan8[0] - 1 + 1*8]= 0; | |
674 | } | |
675 | if(IS_INTER(left_type[1])){ | |
676 | const int b_xy= h->mb2b_xy[left_xy[1]] + 3; | |
677 | *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 + 2*8]= *(uint32_t*)h->mvd_table[list][b_xy + h->b_stride*left_block[2]]; | |
678 | *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 + 3*8]= *(uint32_t*)h->mvd_table[list][b_xy + h->b_stride*left_block[3]]; | |
679 | }else{ | |
680 | *(uint32_t*)h->mvd_cache [list][scan8[0] - 1 + 2*8]= | |
681 | *(uint32_t*)h->mvd_cache [list][scan8[0] - 1 + 3*8]= 0; | |
682 | } | |
683 | *(uint32_t*)h->mvd_cache [list][scan8[5 ]+1]= | |
684 | *(uint32_t*)h->mvd_cache [list][scan8[7 ]+1]= | |
685 | *(uint32_t*)h->mvd_cache [list][scan8[13]+1]= //FIXME remove past 3 (init somewher else) | |
686 | *(uint32_t*)h->mvd_cache [list][scan8[4 ]]= | |
687 | *(uint32_t*)h->mvd_cache [list][scan8[12]]= 0; | |
688 | } | |
0da71265 MN |
689 | } |
690 | //FIXME | |
0da71265 MN |
691 | } |
692 | #endif | |
693 | } | |
694 | ||
695 | static inline void write_back_intra_pred_mode(H264Context *h){ | |
696 | MpegEncContext * const s = &h->s; | |
7bc9090a | 697 | const int mb_xy= s->mb_x + s->mb_y*s->mb_stride; |
0da71265 MN |
698 | |
699 | h->intra4x4_pred_mode[mb_xy][0]= h->intra4x4_pred_mode_cache[7+8*1]; | |
700 | h->intra4x4_pred_mode[mb_xy][1]= h->intra4x4_pred_mode_cache[7+8*2]; | |
701 | h->intra4x4_pred_mode[mb_xy][2]= h->intra4x4_pred_mode_cache[7+8*3]; | |
702 | h->intra4x4_pred_mode[mb_xy][3]= h->intra4x4_pred_mode_cache[7+8*4]; | |
703 | h->intra4x4_pred_mode[mb_xy][4]= h->intra4x4_pred_mode_cache[4+8*4]; | |
704 | h->intra4x4_pred_mode[mb_xy][5]= h->intra4x4_pred_mode_cache[5+8*4]; | |
705 | h->intra4x4_pred_mode[mb_xy][6]= h->intra4x4_pred_mode_cache[6+8*4]; | |
706 | } | |
707 | ||
708 | /** | |
709 | * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks. | |
710 | */ | |
711 | static inline int check_intra4x4_pred_mode(H264Context *h){ | |
712 | MpegEncContext * const s = &h->s; | |
713 | static const int8_t top [12]= {-1, 0,LEFT_DC_PRED,-1,-1,-1,-1,-1, 0}; | |
714 | static const int8_t left[12]= { 0,-1, TOP_DC_PRED, 0,-1,-1,-1, 0,-1,DC_128_PRED}; | |
715 | int i; | |
716 | ||
717 | if(!(h->top_samples_available&0x8000)){ | |
718 | for(i=0; i<4; i++){ | |
719 | int status= top[ h->intra4x4_pred_mode_cache[scan8[0] + i] ]; | |
720 | if(status<0){ | |
9b879566 | 721 | av_log(h->s.avctx, AV_LOG_ERROR, "top block unavailable for requested intra4x4 mode %d at %d %d\n", status, s->mb_x, s->mb_y); |
0da71265 MN |
722 | return -1; |
723 | } else if(status){ | |
724 | h->intra4x4_pred_mode_cache[scan8[0] + i]= status; | |
725 | } | |
726 | } | |
727 | } | |
728 | ||
729 | if(!(h->left_samples_available&0x8000)){ | |
730 | for(i=0; i<4; i++){ | |
731 | int status= left[ h->intra4x4_pred_mode_cache[scan8[0] + 8*i] ]; | |
732 | if(status<0){ | |
9b879566 | 733 | av_log(h->s.avctx, AV_LOG_ERROR, "left block unavailable for requested intra4x4 mode %d at %d %d\n", status, s->mb_x, s->mb_y); |
0da71265 MN |
734 | return -1; |
735 | } else if(status){ | |
736 | h->intra4x4_pred_mode_cache[scan8[0] + 8*i]= status; | |
737 | } | |
738 | } | |
739 | } | |
740 | ||
741 | return 0; | |
742 | } //FIXME cleanup like next | |
743 | ||
744 | /** | |
745 | * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks. | |
746 | */ | |
747 | static inline int check_intra_pred_mode(H264Context *h, int mode){ | |
748 | MpegEncContext * const s = &h->s; | |
749 | static const int8_t top [7]= {LEFT_DC_PRED8x8, 1,-1,-1}; | |
750 | static const int8_t left[7]= { TOP_DC_PRED8x8,-1, 2,-1,DC_128_PRED8x8}; | |
751 | ||
7440fe83 MN |
752 | if(mode < 0 || mode > 6) |
753 | return -1; | |
754 | ||
0da71265 MN |
755 | if(!(h->top_samples_available&0x8000)){ |
756 | mode= top[ mode ]; | |
757 | if(mode<0){ | |
9b879566 | 758 | av_log(h->s.avctx, AV_LOG_ERROR, "top block unavailable for requested intra mode at %d %d\n", s->mb_x, s->mb_y); |
0da71265 MN |
759 | return -1; |
760 | } | |
761 | } | |
762 | ||
763 | if(!(h->left_samples_available&0x8000)){ | |
764 | mode= left[ mode ]; | |
765 | if(mode<0){ | |
9b879566 | 766 | av_log(h->s.avctx, AV_LOG_ERROR, "left block unavailable for requested intra mode at %d %d\n", s->mb_x, s->mb_y); |
0da71265 MN |
767 | return -1; |
768 | } | |
769 | } | |
770 | ||
771 | return mode; | |
772 | } | |
773 | ||
774 | /** | |
775 | * gets the predicted intra4x4 prediction mode. | |
776 | */ | |
777 | static inline int pred_intra_mode(H264Context *h, int n){ | |
778 | const int index8= scan8[n]; | |
779 | const int left= h->intra4x4_pred_mode_cache[index8 - 1]; | |
780 | const int top = h->intra4x4_pred_mode_cache[index8 - 8]; | |
781 | const int min= FFMIN(left, top); | |
782 | ||
95c26348 | 783 | tprintf("mode:%d %d min:%d\n", left ,top, min); |
0da71265 MN |
784 | |
785 | if(min<0) return DC_PRED; | |
786 | else return min; | |
787 | } | |
788 | ||
789 | static inline void write_back_non_zero_count(H264Context *h){ | |
790 | MpegEncContext * const s = &h->s; | |
7bc9090a | 791 | const int mb_xy= s->mb_x + s->mb_y*s->mb_stride; |
0da71265 | 792 | |
53c05b1e MN |
793 | h->non_zero_count[mb_xy][0]= h->non_zero_count_cache[4+8*4]; |
794 | h->non_zero_count[mb_xy][1]= h->non_zero_count_cache[5+8*4]; | |
795 | h->non_zero_count[mb_xy][2]= h->non_zero_count_cache[6+8*4]; | |
796 | h->non_zero_count[mb_xy][3]= h->non_zero_count_cache[7+8*4]; | |
797 | h->non_zero_count[mb_xy][4]= h->non_zero_count_cache[7+8*3]; | |
798 | h->non_zero_count[mb_xy][5]= h->non_zero_count_cache[7+8*2]; | |
799 | h->non_zero_count[mb_xy][6]= h->non_zero_count_cache[7+8*1]; | |
800 | ||
801 | h->non_zero_count[mb_xy][7]= h->non_zero_count_cache[1+8*2]; | |
802 | h->non_zero_count[mb_xy][8]= h->non_zero_count_cache[2+8*2]; | |
803 | h->non_zero_count[mb_xy][9]= h->non_zero_count_cache[2+8*1]; | |
804 | ||
805 | h->non_zero_count[mb_xy][10]=h->non_zero_count_cache[1+8*5]; | |
806 | h->non_zero_count[mb_xy][11]=h->non_zero_count_cache[2+8*5]; | |
807 | h->non_zero_count[mb_xy][12]=h->non_zero_count_cache[2+8*4]; | |
0da71265 MN |
808 | } |
809 | ||
810 | /** | |
811 | * gets the predicted number of non zero coefficients. | |
812 | * @param n block index | |
813 | */ | |
814 | static inline int pred_non_zero_count(H264Context *h, int n){ | |
815 | const int index8= scan8[n]; | |
816 | const int left= h->non_zero_count_cache[index8 - 1]; | |
817 | const int top = h->non_zero_count_cache[index8 - 8]; | |
818 | int i= left + top; | |
819 | ||
820 | if(i<64) i= (i+1)>>1; | |
821 | ||
95c26348 | 822 | tprintf("pred_nnz L%X T%X n%d s%d P%X\n", left, top, n, scan8[n], i&31); |
0da71265 MN |
823 | |
824 | return i&31; | |
825 | } | |
826 | ||
1924f3ce MN |
827 | static inline int fetch_diagonal_mv(H264Context *h, const int16_t **C, int i, int list, int part_width){ |
828 | const int topright_ref= h->ref_cache[list][ i - 8 + part_width ]; | |
829 | ||
830 | if(topright_ref != PART_NOT_AVAILABLE){ | |
831 | *C= h->mv_cache[list][ i - 8 + part_width ]; | |
832 | return topright_ref; | |
833 | }else{ | |
95c26348 MN |
834 | tprintf("topright MV not available\n"); |
835 | ||
1924f3ce MN |
836 | *C= h->mv_cache[list][ i - 8 - 1 ]; |
837 | return h->ref_cache[list][ i - 8 - 1 ]; | |
838 | } | |
839 | } | |
840 | ||
0da71265 MN |
841 | /** |
842 | * gets the predicted MV. | |
843 | * @param n the block index | |
844 | * @param part_width the width of the partition (4, 8,16) -> (1, 2, 4) | |
845 | * @param mx the x component of the predicted motion vector | |
846 | * @param my the y component of the predicted motion vector | |
847 | */ | |
848 | static inline void pred_motion(H264Context * const h, int n, int part_width, int list, int ref, int * const mx, int * const my){ | |
0da71265 MN |
849 | const int index8= scan8[n]; |
850 | const int top_ref= h->ref_cache[list][ index8 - 8 ]; | |
0da71265 MN |
851 | const int left_ref= h->ref_cache[list][ index8 - 1 ]; |
852 | const int16_t * const A= h->mv_cache[list][ index8 - 1 ]; | |
853 | const int16_t * const B= h->mv_cache[list][ index8 - 8 ]; | |
1924f3ce MN |
854 | const int16_t * C; |
855 | int diagonal_ref, match_count; | |
856 | ||
0da71265 | 857 | assert(part_width==1 || part_width==2 || part_width==4); |
1924f3ce | 858 | |
0da71265 MN |
859 | /* mv_cache |
860 | B . . A T T T T | |
861 | U . . L . . , . | |
862 | U . . L . . . . | |
863 | U . . L . . , . | |
864 | . . . L . . . . | |
865 | */ | |
1924f3ce MN |
866 | |
867 | diagonal_ref= fetch_diagonal_mv(h, &C, index8, list, part_width); | |
868 | match_count= (diagonal_ref==ref) + (top_ref==ref) + (left_ref==ref); | |
1924f3ce MN |
869 | if(match_count > 1){ //most common |
870 | *mx= mid_pred(A[0], B[0], C[0]); | |
871 | *my= mid_pred(A[1], B[1], C[1]); | |
872 | }else if(match_count==1){ | |
873 | if(left_ref==ref){ | |
874 | *mx= A[0]; | |
875 | *my= A[1]; | |
876 | }else if(top_ref==ref){ | |
877 | *mx= B[0]; | |
878 | *my= B[1]; | |
0da71265 | 879 | }else{ |
1924f3ce MN |
880 | *mx= C[0]; |
881 | *my= C[1]; | |
0da71265 MN |
882 | } |
883 | }else{ | |
1924f3ce | 884 | if(top_ref == PART_NOT_AVAILABLE && diagonal_ref == PART_NOT_AVAILABLE && left_ref != PART_NOT_AVAILABLE){ |
0da71265 | 885 | *mx= A[0]; |
1924f3ce | 886 | *my= A[1]; |
0da71265 | 887 | }else{ |
1924f3ce MN |
888 | *mx= mid_pred(A[0], B[0], C[0]); |
889 | *my= mid_pred(A[1], B[1], C[1]); | |
0da71265 | 890 | } |
0da71265 | 891 | } |
1924f3ce | 892 | |
af6e2fed | 893 | tprintf("pred_motion (%2d %2d %2d) (%2d %2d %2d) (%2d %2d %2d) -> (%2d %2d %2d) at %2d %2d %d list %d\n", top_ref, B[0], B[1], diagonal_ref, C[0], C[1], left_ref, A[0], A[1], ref, *mx, *my, h->s.mb_x, h->s.mb_y, n, list); |
0da71265 MN |
894 | } |
895 | ||
896 | /** | |
897 | * gets the directionally predicted 16x8 MV. | |
898 | * @param n the block index | |
899 | * @param mx the x component of the predicted motion vector | |
900 | * @param my the y component of the predicted motion vector | |
901 | */ | |
902 | static inline void pred_16x8_motion(H264Context * const h, int n, int list, int ref, int * const mx, int * const my){ | |
0da71265 MN |
903 | if(n==0){ |
904 | const int top_ref= h->ref_cache[list][ scan8[0] - 8 ]; | |
905 | const int16_t * const B= h->mv_cache[list][ scan8[0] - 8 ]; | |
906 | ||
af6e2fed | 907 | tprintf("pred_16x8: (%2d %2d %2d) at %2d %2d %d list %d", top_ref, B[0], B[1], h->s.mb_x, h->s.mb_y, n, list); |
0da71265 MN |
908 | |
909 | if(top_ref == ref){ | |
910 | *mx= B[0]; | |
911 | *my= B[1]; | |
912 | return; | |
913 | } | |
914 | }else{ | |
915 | const int left_ref= h->ref_cache[list][ scan8[8] - 1 ]; | |
916 | const int16_t * const A= h->mv_cache[list][ scan8[8] - 1 ]; | |
917 | ||
af6e2fed | 918 | tprintf("pred_16x8: (%2d %2d %2d) at %2d %2d %d list %d", left_ref, A[0], A[1], h->s.mb_x, h->s.mb_y, n, list); |
0da71265 MN |
919 | |
920 | if(left_ref == ref){ | |
921 | *mx= A[0]; | |
922 | *my= A[1]; | |
923 | return; | |
924 | } | |
925 | } | |
926 | ||
927 | //RARE | |
928 | pred_motion(h, n, 4, list, ref, mx, my); | |
929 | } | |
930 | ||
931 | /** | |
932 | * gets the directionally predicted 8x16 MV. | |
933 | * @param n the block index | |
934 | * @param mx the x component of the predicted motion vector | |
935 | * @param my the y component of the predicted motion vector | |
936 | */ | |
937 | static inline void pred_8x16_motion(H264Context * const h, int n, int list, int ref, int * const mx, int * const my){ | |
0da71265 MN |
938 | if(n==0){ |
939 | const int left_ref= h->ref_cache[list][ scan8[0] - 1 ]; | |
940 | const int16_t * const A= h->mv_cache[list][ scan8[0] - 1 ]; | |
941 | ||
af6e2fed | 942 | tprintf("pred_8x16: (%2d %2d %2d) at %2d %2d %d list %d", left_ref, A[0], A[1], h->s.mb_x, h->s.mb_y, n, list); |
0da71265 MN |
943 | |
944 | if(left_ref == ref){ | |
945 | *mx= A[0]; | |
946 | *my= A[1]; | |
947 | return; | |
948 | } | |
949 | }else{ | |
1924f3ce MN |
950 | const int16_t * C; |
951 | int diagonal_ref; | |
952 | ||
953 | diagonal_ref= fetch_diagonal_mv(h, &C, scan8[4], list, 2); | |
0da71265 | 954 | |
af6e2fed | 955 | tprintf("pred_8x16: (%2d %2d %2d) at %2d %2d %d list %d", diagonal_ref, C[0], C[1], h->s.mb_x, h->s.mb_y, n, list); |
0da71265 | 956 | |
1924f3ce | 957 | if(diagonal_ref == ref){ |
0da71265 MN |
958 | *mx= C[0]; |
959 | *my= C[1]; | |
960 | return; | |
961 | } | |
0da71265 MN |
962 | } |
963 | ||
964 | //RARE | |
965 | pred_motion(h, n, 2, list, ref, mx, my); | |
966 | } | |
967 | ||
968 | static inline void pred_pskip_motion(H264Context * const h, int * const mx, int * const my){ | |
0da71265 MN |
969 | const int top_ref = h->ref_cache[0][ scan8[0] - 8 ]; |
970 | const int left_ref= h->ref_cache[0][ scan8[0] - 1 ]; | |
971 | ||
af6e2fed | 972 | tprintf("pred_pskip: (%d) (%d) at %2d %2d", top_ref, left_ref, h->s.mb_x, h->s.mb_y); |
0da71265 MN |
973 | |
974 | if(top_ref == PART_NOT_AVAILABLE || left_ref == PART_NOT_AVAILABLE | |
975 | || (top_ref == 0 && *(uint32_t*)h->mv_cache[0][ scan8[0] - 8 ] == 0) | |
976 | || (left_ref == 0 && *(uint32_t*)h->mv_cache[0][ scan8[0] - 1 ] == 0)){ | |
977 | ||
978 | *mx = *my = 0; | |
979 | return; | |
980 | } | |
981 | ||
982 | pred_motion(h, 0, 4, 0, 0, mx, my); | |
983 | ||
984 | return; | |
985 | } | |
986 | ||
987 | static inline void write_back_motion(H264Context *h, int mb_type){ | |
988 | MpegEncContext * const s = &h->s; | |
0da71265 MN |
989 | const int b_xy = 4*s->mb_x + 4*s->mb_y*h->b_stride; |
990 | const int b8_xy= 2*s->mb_x + 2*s->mb_y*h->b8_stride; | |
991 | int list; | |
992 | ||
993 | for(list=0; list<2; list++){ | |
994 | int y; | |
995 | if((!IS_8X8(mb_type)) && !USES_LIST(mb_type, list)){ | |
996 | if(1){ //FIXME skip or never read if mb_type doesnt use it | |
997 | for(y=0; y<4; y++){ | |
998 | *(uint64_t*)s->current_picture.motion_val[list][b_xy + 0 + y*h->b_stride]= | |
999 | *(uint64_t*)s->current_picture.motion_val[list][b_xy + 2 + y*h->b_stride]= 0; | |
1000 | } | |
9e528114 LA |
1001 | if( h->pps.cabac ) { |
1002 | /* FIXME needed ? */ | |
1003 | for(y=0; y<4; y++){ | |
1004 | *(uint64_t*)h->mvd_table[list][b_xy + 0 + y*h->b_stride]= | |
1005 | *(uint64_t*)h->mvd_table[list][b_xy + 2 + y*h->b_stride]= 0; | |
1006 | } | |
1007 | } | |
0da71265 MN |
1008 | for(y=0; y<2; y++){ |
1009 | *(uint16_t*)s->current_picture.motion_val[list][b8_xy + y*h->b8_stride]= (LIST_NOT_USED&0xFF)*0x0101; | |
1010 | } | |
1011 | } | |
1012 | continue; //FIXME direct mode ... | |
1013 | } | |
1014 | ||
1015 | for(y=0; y<4; y++){ | |
1016 | *(uint64_t*)s->current_picture.motion_val[list][b_xy + 0 + y*h->b_stride]= *(uint64_t*)h->mv_cache[list][scan8[0]+0 + 8*y]; | |
1017 | *(uint64_t*)s->current_picture.motion_val[list][b_xy + 2 + y*h->b_stride]= *(uint64_t*)h->mv_cache[list][scan8[0]+2 + 8*y]; | |
1018 | } | |
9e528114 LA |
1019 | if( h->pps.cabac ) { |
1020 | for(y=0; y<4; y++){ | |
1021 | *(uint64_t*)h->mvd_table[list][b_xy + 0 + y*h->b_stride]= *(uint64_t*)h->mvd_cache[list][scan8[0]+0 + 8*y]; | |
1022 | *(uint64_t*)h->mvd_table[list][b_xy + 2 + y*h->b_stride]= *(uint64_t*)h->mvd_cache[list][scan8[0]+2 + 8*y]; | |
1023 | } | |
1024 | } | |
0da71265 MN |
1025 | for(y=0; y<2; y++){ |
1026 | s->current_picture.ref_index[list][b8_xy + 0 + y*h->b8_stride]= h->ref_cache[list][scan8[0]+0 + 16*y]; | |
1027 | s->current_picture.ref_index[list][b8_xy + 1 + y*h->b8_stride]= h->ref_cache[list][scan8[0]+2 + 16*y]; | |
1028 | } | |
1029 | } | |
1030 | } | |
1031 | ||
1032 | /** | |
1033 | * Decodes a network abstraction layer unit. | |
1034 | * @param consumed is the number of bytes used as input | |
1035 | * @param length is the length of the array | |
1036 | * @param dst_length is the number of decoded bytes FIXME here or a decode rbsp ttailing? | |
1037 | * @returns decoded bytes, might be src+1 if no escapes | |
1038 | */ | |
1039 | static uint8_t *decode_nal(H264Context *h, uint8_t *src, int *dst_length, int *consumed, int length){ | |
1040 | int i, si, di; | |
1041 | uint8_t *dst; | |
1042 | ||
1043 | // src[0]&0x80; //forbidden bit | |
1044 | h->nal_ref_idc= src[0]>>5; | |
1045 | h->nal_unit_type= src[0]&0x1F; | |
1046 | ||
1047 | src++; length--; | |
1048 | #if 0 | |
1049 | for(i=0; i<length; i++) | |
1050 | printf("%2X ", src[i]); | |
1051 | #endif | |
1052 | for(i=0; i+1<length; i+=2){ | |
1053 | if(src[i]) continue; | |
1054 | if(i>0 && src[i-1]==0) i--; | |
1055 | if(i+2<length && src[i+1]==0 && src[i+2]<=3){ | |
1056 | if(src[i+2]!=3){ | |
1057 | /* startcode, so we must be past the end */ | |
1058 | length=i; | |
1059 | } | |
1060 | break; | |
1061 | } | |
1062 | } | |
1063 | ||
1064 | if(i>=length-1){ //no escaped 0 | |
1065 | *dst_length= length; | |
1066 | *consumed= length+1; //+1 for the header | |
1067 | return src; | |
1068 | } | |
1069 | ||
1070 | h->rbsp_buffer= av_fast_realloc(h->rbsp_buffer, &h->rbsp_buffer_size, length); | |
1071 | dst= h->rbsp_buffer; | |
1072 | ||
1073 | //printf("deoding esc\n"); | |
1074 | si=di=0; | |
1075 | while(si<length){ | |
1076 | //remove escapes (very rare 1:2^22) | |
1077 | if(si+2<length && src[si]==0 && src[si+1]==0 && src[si+2]<=3){ | |
1078 | if(src[si+2]==3){ //escape | |
1079 | dst[di++]= 0; | |
1080 | dst[di++]= 0; | |
1081 | si+=3; | |
c8470cc1 | 1082 | continue; |
0da71265 MN |
1083 | }else //next start code |
1084 | break; | |
1085 | } | |
1086 | ||
1087 | dst[di++]= src[si++]; | |
1088 | } | |
1089 | ||
1090 | *dst_length= di; | |
1091 | *consumed= si + 1;//+1 for the header | |
1092 | //FIXME store exact number of bits in the getbitcontext (its needed for decoding) | |
1093 | return dst; | |
1094 | } | |
1095 | ||
e5017ab8 | 1096 | #if 0 |
0da71265 MN |
1097 | /** |
1098 | * @param src the data which should be escaped | |
1099 | * @param dst the target buffer, dst+1 == src is allowed as a special case | |
1100 | * @param length the length of the src data | |
1101 | * @param dst_length the length of the dst array | |
1102 | * @returns length of escaped data in bytes or -1 if an error occured | |
1103 | */ | |
1104 | static int encode_nal(H264Context *h, uint8_t *dst, uint8_t *src, int length, int dst_length){ | |
1105 | int i, escape_count, si, di; | |
1106 | uint8_t *temp; | |
1107 | ||
1108 | assert(length>=0); | |
1109 | assert(dst_length>0); | |
1110 | ||
1111 | dst[0]= (h->nal_ref_idc<<5) + h->nal_unit_type; | |
1112 | ||
1113 | if(length==0) return 1; | |
1114 | ||
1115 | escape_count= 0; | |
1116 | for(i=0; i<length; i+=2){ | |
1117 | if(src[i]) continue; | |
1118 | if(i>0 && src[i-1]==0) | |
1119 | i--; | |
1120 | if(i+2<length && src[i+1]==0 && src[i+2]<=3){ | |
1121 | escape_count++; | |
1122 | i+=2; | |
1123 | } | |
1124 | } | |
1125 | ||
1126 | if(escape_count==0){ | |
1127 | if(dst+1 != src) | |
1128 | memcpy(dst+1, src, length); | |
1129 | return length + 1; | |
1130 | } | |
1131 | ||
1132 | if(length + escape_count + 1> dst_length) | |
1133 | return -1; | |
1134 | ||
1135 | //this should be damn rare (hopefully) | |
1136 | ||
1137 | h->rbsp_buffer= av_fast_realloc(h->rbsp_buffer, &h->rbsp_buffer_size, length + escape_count); | |
1138 | temp= h->rbsp_buffer; | |
1139 | //printf("encoding esc\n"); | |
1140 | ||
1141 | si= 0; | |
1142 | di= 0; | |
1143 | while(si < length){ | |
1144 | if(si+2<length && src[si]==0 && src[si+1]==0 && src[si+2]<=3){ | |
1145 | temp[di++]= 0; si++; | |
1146 | temp[di++]= 0; si++; | |
1147 | temp[di++]= 3; | |
1148 | temp[di++]= src[si++]; | |
1149 | } | |
1150 | else | |
1151 | temp[di++]= src[si++]; | |
1152 | } | |
1153 | memcpy(dst+1, temp, length+escape_count); | |
1154 | ||
1155 | assert(di == length+escape_count); | |
1156 | ||
1157 | return di + 1; | |
1158 | } | |
1159 | ||
1160 | /** | |
1161 | * write 1,10,100,1000,... for alignment, yes its exactly inverse to mpeg4 | |
1162 | */ | |
1163 | static void encode_rbsp_trailing(PutBitContext *pb){ | |
1164 | int length; | |
1165 | put_bits(pb, 1, 1); | |
fe455f33 | 1166 | length= (-put_bits_count(pb))&7; |
0da71265 MN |
1167 | if(length) put_bits(pb, length, 0); |
1168 | } | |
e5017ab8 | 1169 | #endif |
0da71265 MN |
1170 | |
1171 | /** | |
1172 | * identifies the exact end of the bitstream | |
1173 | * @return the length of the trailing, or 0 if damaged | |
1174 | */ | |
1175 | static int decode_rbsp_trailing(uint8_t *src){ | |
1176 | int v= *src; | |
1177 | int r; | |
1178 | ||
95c26348 | 1179 | tprintf("rbsp trailing %X\n", v); |
0da71265 MN |
1180 | |
1181 | for(r=1; r<9; r++){ | |
1182 | if(v&1) return r; | |
1183 | v>>=1; | |
1184 | } | |
1185 | return 0; | |
1186 | } | |
1187 | ||
1188 | /** | |
1189 | * idct tranforms the 16 dc values and dequantize them. | |
1190 | * @param qp quantization parameter | |
1191 | */ | |
1192 | static void h264_luma_dc_dequant_idct_c(DCTELEM *block, int qp){ | |
1193 | const int qmul= dequant_coeff[qp][0]; | |
1194 | #define stride 16 | |
1195 | int i; | |
1196 | int temp[16]; //FIXME check if this is a good idea | |
1197 | static const int x_offset[4]={0, 1*stride, 4* stride, 5*stride}; | |
1198 | static const int y_offset[4]={0, 2*stride, 8* stride, 10*stride}; | |
1199 | ||
1200 | //memset(block, 64, 2*256); | |
1201 | //return; | |
1202 | for(i=0; i<4; i++){ | |
1203 | const int offset= y_offset[i]; | |
1204 | const int z0= block[offset+stride*0] + block[offset+stride*4]; | |
1205 | const int z1= block[offset+stride*0] - block[offset+stride*4]; | |
1206 | const int z2= block[offset+stride*1] - block[offset+stride*5]; | |
1207 | const int z3= block[offset+stride*1] + block[offset+stride*5]; | |
1208 | ||
1209 | temp[4*i+0]= z0+z3; | |
1210 | temp[4*i+1]= z1+z2; | |
1211 | temp[4*i+2]= z1-z2; | |
1212 | temp[4*i+3]= z0-z3; | |
1213 | } | |
1214 | ||
1215 | for(i=0; i<4; i++){ | |
1216 | const int offset= x_offset[i]; | |
1217 | const int z0= temp[4*0+i] + temp[4*2+i]; | |
1218 | const int z1= temp[4*0+i] - temp[4*2+i]; | |
1219 | const int z2= temp[4*1+i] - temp[4*3+i]; | |
1220 | const int z3= temp[4*1+i] + temp[4*3+i]; | |
1221 | ||
1222 | block[stride*0 +offset]= ((z0 + z3)*qmul + 2)>>2; //FIXME think about merging this into decode_resdual | |
1223 | block[stride*2 +offset]= ((z1 + z2)*qmul + 2)>>2; | |
1224 | block[stride*8 +offset]= ((z1 - z2)*qmul + 2)>>2; | |
1225 | block[stride*10+offset]= ((z0 - z3)*qmul + 2)>>2; | |
1226 | } | |
1227 | } | |
1228 | ||
e5017ab8 | 1229 | #if 0 |
0da71265 MN |
1230 | /** |
1231 | * dct tranforms the 16 dc values. | |
1232 | * @param qp quantization parameter ??? FIXME | |
1233 | */ | |
1234 | static void h264_luma_dc_dct_c(DCTELEM *block/*, int qp*/){ | |
1235 | // const int qmul= dequant_coeff[qp][0]; | |
1236 | int i; | |
1237 | int temp[16]; //FIXME check if this is a good idea | |
1238 | static const int x_offset[4]={0, 1*stride, 4* stride, 5*stride}; | |
1239 | static const int y_offset[4]={0, 2*stride, 8* stride, 10*stride}; | |
1240 | ||
1241 | for(i=0; i<4; i++){ | |
1242 | const int offset= y_offset[i]; | |
1243 | const int z0= block[offset+stride*0] + block[offset+stride*4]; | |
1244 | const int z1= block[offset+stride*0] - block[offset+stride*4]; | |
1245 | const int z2= block[offset+stride*1] - block[offset+stride*5]; | |
1246 | const int z3= block[offset+stride*1] + block[offset+stride*5]; | |
1247 | ||
1248 | temp[4*i+0]= z0+z3; | |
1249 | temp[4*i+1]= z1+z2; | |
1250 | temp[4*i+2]= z1-z2; | |
1251 | temp[4*i+3]= z0-z3; | |
1252 | } | |
1253 | ||
1254 | for(i=0; i<4; i++){ | |
1255 | const int offset= x_offset[i]; | |
1256 | const int z0= temp[4*0+i] + temp[4*2+i]; | |
1257 | const int z1= temp[4*0+i] - temp[4*2+i]; | |
1258 | const int z2= temp[4*1+i] - temp[4*3+i]; | |
1259 | const int z3= temp[4*1+i] + temp[4*3+i]; | |
1260 | ||
1261 | block[stride*0 +offset]= (z0 + z3)>>1; | |
1262 | block[stride*2 +offset]= (z1 + z2)>>1; | |
1263 | block[stride*8 +offset]= (z1 - z2)>>1; | |
1264 | block[stride*10+offset]= (z0 - z3)>>1; | |
1265 | } | |
1266 | } | |
e5017ab8 LA |
1267 | #endif |
1268 | ||
0da71265 MN |
1269 | #undef xStride |
1270 | #undef stride | |
1271 | ||
1272 | static void chroma_dc_dequant_idct_c(DCTELEM *block, int qp){ | |
1273 | const int qmul= dequant_coeff[qp][0]; | |
1274 | const int stride= 16*2; | |
1275 | const int xStride= 16; | |
1276 | int a,b,c,d,e; | |
1277 | ||
1278 | a= block[stride*0 + xStride*0]; | |
1279 | b= block[stride*0 + xStride*1]; | |
1280 | c= block[stride*1 + xStride*0]; | |
1281 | d= block[stride*1 + xStride*1]; | |
1282 | ||
1283 | e= a-b; | |
1284 | a= a+b; | |
1285 | b= c-d; | |
1286 | c= c+d; | |
1287 | ||
1288 | block[stride*0 + xStride*0]= ((a+c)*qmul + 0)>>1; | |
1289 | block[stride*0 + xStride*1]= ((e+b)*qmul + 0)>>1; | |
1290 | block[stride*1 + xStride*0]= ((a-c)*qmul + 0)>>1; | |
1291 | block[stride*1 + xStride*1]= ((e-b)*qmul + 0)>>1; | |
1292 | } | |
1293 | ||
e5017ab8 | 1294 | #if 0 |
0da71265 MN |
1295 | static void chroma_dc_dct_c(DCTELEM *block){ |
1296 | const int stride= 16*2; | |
1297 | const int xStride= 16; | |
1298 | int a,b,c,d,e; | |
1299 | ||
1300 | a= block[stride*0 + xStride*0]; | |
1301 | b= block[stride*0 + xStride*1]; | |
1302 | c= block[stride*1 + xStride*0]; | |
1303 | d= block[stride*1 + xStride*1]; | |
1304 | ||
1305 | e= a-b; | |
1306 | a= a+b; | |
1307 | b= c-d; | |
1308 | c= c+d; | |
1309 | ||
1310 | block[stride*0 + xStride*0]= (a+c); | |
1311 | block[stride*0 + xStride*1]= (e+b); | |
1312 | block[stride*1 + xStride*0]= (a-c); | |
1313 | block[stride*1 + xStride*1]= (e-b); | |
1314 | } | |
e5017ab8 | 1315 | #endif |
0da71265 MN |
1316 | |
1317 | /** | |
1318 | * gets the chroma qp. | |
1319 | */ | |
1320 | static inline int get_chroma_qp(H264Context *h, int qscale){ | |
1321 | ||
1322 | return chroma_qp[clip(qscale + h->pps.chroma_qp_index_offset, 0, 51)]; | |
1323 | } | |
1324 | ||
1325 | ||
e5017ab8 | 1326 | #if 0 |
0da71265 MN |
1327 | static void h264_diff_dct_c(DCTELEM *block, uint8_t *src1, uint8_t *src2, int stride){ |
1328 | int i; | |
1329 | //FIXME try int temp instead of block | |
1330 | ||
1331 | for(i=0; i<4; i++){ | |
1332 | const int d0= src1[0 + i*stride] - src2[0 + i*stride]; | |
1333 | const int d1= src1[1 + i*stride] - src2[1 + i*stride]; | |
1334 | const int d2= src1[2 + i*stride] - src2[2 + i*stride]; | |
1335 | const int d3= src1[3 + i*stride] - src2[3 + i*stride]; | |
1336 | const int z0= d0 + d3; | |
1337 | const int z3= d0 - d3; | |
1338 | const int z1= d1 + d2; | |
1339 | const int z2= d1 - d2; | |
1340 | ||
1341 | block[0 + 4*i]= z0 + z1; | |
1342 | block[1 + 4*i]= 2*z3 + z2; | |
1343 | block[2 + 4*i]= z0 - z1; | |
1344 | block[3 + 4*i]= z3 - 2*z2; | |
1345 | } | |
1346 | ||
1347 | for(i=0; i<4; i++){ | |
1348 | const int z0= block[0*4 + i] + block[3*4 + i]; | |
1349 | const int z3= block[0*4 + i] - block[3*4 + i]; | |
1350 | const int z1= block[1*4 + i] + block[2*4 + i]; | |
1351 | const int z2= block[1*4 + i] - block[2*4 + i]; | |
1352 | ||
1353 | block[0*4 + i]= z0 + z1; | |
1354 | block[1*4 + i]= 2*z3 + z2; | |
1355 | block[2*4 + i]= z0 - z1; | |
1356 | block[3*4 + i]= z3 - 2*z2; | |
1357 | } | |
1358 | } | |
e5017ab8 | 1359 | #endif |
0da71265 MN |
1360 | |
1361 | //FIXME need to check that this doesnt overflow signed 32 bit for low qp, iam not sure, its very close | |
1362 | //FIXME check that gcc inlines this (and optimizes intra & seperate_dc stuff away) | |
1363 | static inline int quantize_c(DCTELEM *block, uint8_t *scantable, int qscale, int intra, int seperate_dc){ | |
1364 | int i; | |
1365 | const int * const quant_table= quant_coeff[qscale]; | |
1366 | const int bias= intra ? (1<<QUANT_SHIFT)/3 : (1<<QUANT_SHIFT)/6; | |
1367 | const unsigned int threshold1= (1<<QUANT_SHIFT) - bias - 1; | |
1368 | const unsigned int threshold2= (threshold1<<1); | |
1369 | int last_non_zero; | |
1370 | ||
1371 | if(seperate_dc){ | |
1372 | if(qscale<=18){ | |
1373 | //avoid overflows | |
1374 | const int dc_bias= intra ? (1<<(QUANT_SHIFT-2))/3 : (1<<(QUANT_SHIFT-2))/6; | |
1375 | const unsigned int dc_threshold1= (1<<(QUANT_SHIFT-2)) - dc_bias - 1; | |
1376 | const unsigned int dc_threshold2= (dc_threshold1<<1); | |
1377 | ||
1378 | int level= block[0]*quant_coeff[qscale+18][0]; | |
1379 | if(((unsigned)(level+dc_threshold1))>dc_threshold2){ | |
1380 | if(level>0){ | |
1381 | level= (dc_bias + level)>>(QUANT_SHIFT-2); | |
1382 | block[0]= level; | |
1383 | }else{ | |
1384 | level= (dc_bias - level)>>(QUANT_SHIFT-2); | |
1385 | block[0]= -level; | |
1386 | } | |
1387 | // last_non_zero = i; | |
1388 | }else{ | |
1389 | block[0]=0; | |
1390 | } | |
1391 | }else{ | |
1392 | const int dc_bias= intra ? (1<<(QUANT_SHIFT+1))/3 : (1<<(QUANT_SHIFT+1))/6; | |
1393 | const unsigned int dc_threshold1= (1<<(QUANT_SHIFT+1)) - dc_bias - 1; | |
1394 | const unsigned int dc_threshold2= (dc_threshold1<<1); | |
1395 | ||
1396 | int level= block[0]*quant_table[0]; | |
1397 | if(((unsigned)(level+dc_threshold1))>dc_threshold2){ | |
1398 | if(level>0){ | |
1399 | level= (dc_bias + level)>>(QUANT_SHIFT+1); | |
1400 | block[0]= level; | |
1401 | }else{ | |
1402 | level= (dc_bias - level)>>(QUANT_SHIFT+1); | |
1403 | block[0]= -level; | |
1404 | } | |
1405 | // last_non_zero = i; | |
1406 | }else{ | |
1407 | block[0]=0; | |
1408 | } | |
1409 | } | |
1410 | last_non_zero= 0; | |
1411 | i=1; | |
1412 | }else{ | |
1413 | last_non_zero= -1; | |
1414 | i=0; | |
1415 | } | |
1416 | ||
1417 | for(; i<16; i++){ | |
1418 | const int j= scantable[i]; | |
1419 | int level= block[j]*quant_table[j]; | |
1420 | ||
1421 | // if( bias+level >= (1<<(QMAT_SHIFT - 3)) | |
1422 | // || bias-level >= (1<<(QMAT_SHIFT - 3))){ | |
1423 | if(((unsigned)(level+threshold1))>threshold2){ | |
1424 | if(level>0){ | |
1425 | level= (bias + level)>>QUANT_SHIFT; | |
1426 | block[j]= level; | |
1427 | }else{ | |
1428 | level= (bias - level)>>QUANT_SHIFT; | |
1429 | block[j]= -level; | |
1430 | } | |
1431 | last_non_zero = i; | |
1432 | }else{ | |
1433 | block[j]=0; | |
1434 | } | |
1435 | } | |
1436 | ||
1437 | return last_non_zero; | |
1438 | } | |
1439 | ||
1440 | static void pred4x4_vertical_c(uint8_t *src, uint8_t *topright, int stride){ | |
1441 | const uint32_t a= ((uint32_t*)(src-stride))[0]; | |
1442 | ((uint32_t*)(src+0*stride))[0]= a; | |
1443 | ((uint32_t*)(src+1*stride))[0]= a; | |
1444 | ((uint32_t*)(src+2*stride))[0]= a; | |
1445 | ((uint32_t*)(src+3*stride))[0]= a; | |
1446 | } | |
1447 | ||
1448 | static void pred4x4_horizontal_c(uint8_t *src, uint8_t *topright, int stride){ | |
1449 | ((uint32_t*)(src+0*stride))[0]= src[-1+0*stride]*0x01010101; | |
1450 | ((uint32_t*)(src+1*stride))[0]= src[-1+1*stride]*0x01010101; | |
1451 | ((uint32_t*)(src+2*stride))[0]= src[-1+2*stride]*0x01010101; | |
1452 | ((uint32_t*)(src+3*stride))[0]= src[-1+3*stride]*0x01010101; | |
1453 | } | |
1454 | ||
1455 | static void pred4x4_dc_c(uint8_t *src, uint8_t *topright, int stride){ | |
1456 | const int dc= ( src[-stride] + src[1-stride] + src[2-stride] + src[3-stride] | |
1457 | + src[-1+0*stride] + src[-1+1*stride] + src[-1+2*stride] + src[-1+3*stride] + 4) >>3; | |
1458 | ||
1459 | ((uint32_t*)(src+0*stride))[0]= | |
1460 | ((uint32_t*)(src+1*stride))[0]= | |
1461 | ((uint32_t*)(src+2*stride))[0]= | |
1462 | ((uint32_t*)(src+3*stride))[0]= dc* 0x01010101; | |
1463 | } | |
1464 | ||
1465 | static void pred4x4_left_dc_c(uint8_t *src, uint8_t *topright, int stride){ | |
1466 | const int dc= ( src[-1+0*stride] + src[-1+1*stride] + src[-1+2*stride] + src[-1+3*stride] + 2) >>2; | |
1467 | ||
1468 | ((uint32_t*)(src+0*stride))[0]= | |
1469 | ((uint32_t*)(src+1*stride))[0]= | |
1470 | ((uint32_t*)(src+2*stride))[0]= | |
1471 | ((uint32_t*)(src+3*stride))[0]= dc* 0x01010101; | |
1472 | } | |
1473 | ||
1474 | static void pred4x4_top_dc_c(uint8_t *src, uint8_t *topright, int stride){ | |
1475 | const int dc= ( src[-stride] + src[1-stride] + src[2-stride] + src[3-stride] + 2) >>2; | |
1476 | ||
1477 | ((uint32_t*)(src+0*stride))[0]= | |
1478 | ((uint32_t*)(src+1*stride))[0]= | |
1479 | ((uint32_t*)(src+2*stride))[0]= | |
1480 | ((uint32_t*)(src+3*stride))[0]= dc* 0x01010101; | |
1481 | } | |
1482 | ||
1483 | static void pred4x4_128_dc_c(uint8_t *src, uint8_t *topright, int stride){ | |
1484 | ((uint32_t*)(src+0*stride))[0]= | |
1485 | ((uint32_t*)(src+1*stride))[0]= | |
1486 | ((uint32_t*)(src+2*stride))[0]= | |
1487 | ((uint32_t*)(src+3*stride))[0]= 128U*0x01010101U; | |
1488 | } | |
1489 | ||
1490 | ||
1491 | #define LOAD_TOP_RIGHT_EDGE\ | |
1492 | const int t4= topright[0];\ | |
1493 | const int t5= topright[1];\ | |
1494 | const int t6= topright[2];\ | |
1495 | const int t7= topright[3];\ | |
1496 | ||
1497 | #define LOAD_LEFT_EDGE\ | |
1498 | const int l0= src[-1+0*stride];\ | |
1499 | const int l1= src[-1+1*stride];\ | |
1500 | const int l2= src[-1+2*stride];\ | |
1501 | const int l3= src[-1+3*stride];\ | |
1502 | ||
1503 | #define LOAD_TOP_EDGE\ | |
1504 | const int t0= src[ 0-1*stride];\ | |
1505 | const int t1= src[ 1-1*stride];\ | |
1506 | const int t2= src[ 2-1*stride];\ | |
1507 | const int t3= src[ 3-1*stride];\ | |
1508 | ||
1509 | static void pred4x4_down_right_c(uint8_t *src, uint8_t *topright, int stride){ | |
1510 | const int lt= src[-1-1*stride]; | |
1511 | LOAD_TOP_EDGE | |
1512 | LOAD_LEFT_EDGE | |
1513 | ||
1514 | src[0+3*stride]=(l3 + 2*l2 + l1 + 2)>>2; | |
1515 | src[0+2*stride]= | |
1516 | src[1+3*stride]=(l2 + 2*l1 + l0 + 2)>>2; | |
1517 | src[0+1*stride]= | |
1518 | src[1+2*stride]= | |
1519 | src[2+3*stride]=(l1 + 2*l0 + lt + 2)>>2; | |
1520 | src[0+0*stride]= | |
1521 | src[1+1*stride]= | |
1522 | src[2+2*stride]= | |
1523 | src[3+3*stride]=(l0 + 2*lt + t0 + 2)>>2; | |
1524 | src[1+0*stride]= | |
1525 | src[2+1*stride]= | |
1526 | src[3+2*stride]=(lt + 2*t0 + t1 + 2)>>2; | |
1527 | src[2+0*stride]= | |
1528 | src[3+1*stride]=(t0 + 2*t1 + t2 + 2)>>2; | |
1529 | src[3+0*stride]=(t1 + 2*t2 + t3 + 2)>>2; | |
4cfbf61b | 1530 | } |
0da71265 MN |
1531 | |
1532 | static void pred4x4_down_left_c(uint8_t *src, uint8_t *topright, int stride){ | |
1533 | LOAD_TOP_EDGE | |
1534 | LOAD_TOP_RIGHT_EDGE | |
1535 | // LOAD_LEFT_EDGE | |
1536 | ||
1537 | src[0+0*stride]=(t0 + t2 + 2*t1 + 2)>>2; | |
1538 | src[1+0*stride]= | |
1539 | src[0+1*stride]=(t1 + t3 + 2*t2 + 2)>>2; | |
1540 | src[2+0*stride]= | |
1541 | src[1+1*stride]= | |
1542 | src[0+2*stride]=(t2 + t4 + 2*t3 + 2)>>2; | |
1543 | src[3+0*stride]= | |
1544 | src[2+1*stride]= | |
1545 | src[1+2*stride]= | |
1546 | src[0+3*stride]=(t3 + t5 + 2*t4 + 2)>>2; | |
1547 | src[3+1*stride]= | |
1548 | src[2+2*stride]= | |
1549 | src[1+3*stride]=(t4 + t6 + 2*t5 + 2)>>2; | |
1550 | src[3+2*stride]= | |
1551 | src[2+3*stride]=(t5 + t7 + 2*t6 + 2)>>2; | |
1552 | src[3+3*stride]=(t6 + 3*t7 + 2)>>2; | |
4cfbf61b | 1553 | } |
0da71265 MN |
1554 | |
1555 | static void pred4x4_vertical_right_c(uint8_t *src, uint8_t *topright, int stride){ | |
1556 | const int lt= src[-1-1*stride]; | |
1557 | LOAD_TOP_EDGE | |
1558 | LOAD_LEFT_EDGE | |
1559 | const __attribute__((unused)) int unu= l3; | |
1560 | ||
1561 | src[0+0*stride]= | |
1562 | src[1+2*stride]=(lt + t0 + 1)>>1; | |
1563 | src[1+0*stride]= | |
1564 | src[2+2*stride]=(t0 + t1 + 1)>>1; | |
1565 | src[2+0*stride]= | |
1566 | src[3+2*stride]=(t1 + t2 + 1)>>1; | |
1567 | src[3+0*stride]=(t2 + t3 + 1)>>1; | |
1568 | src[0+1*stride]= | |
1569 | src[1+3*stride]=(l0 + 2*lt + t0 + 2)>>2; | |
1570 | src[1+1*stride]= | |
1571 | src[2+3*stride]=(lt + 2*t0 + t1 + 2)>>2; | |
1572 | src[2+1*stride]= | |
1573 | src[3+3*stride]=(t0 + 2*t1 + t2 + 2)>>2; | |
1574 | src[3+1*stride]=(t1 + 2*t2 + t3 + 2)>>2; | |
1575 | src[0+2*stride]=(lt + 2*l0 + l1 + 2)>>2; | |
1576 | src[0+3*stride]=(l0 + 2*l1 + l2 + 2)>>2; | |
4cfbf61b | 1577 | } |
0da71265 MN |
1578 | |
1579 | static void pred4x4_vertical_left_c(uint8_t *src, uint8_t *topright, int stride){ | |
1580 | LOAD_TOP_EDGE | |
1581 | LOAD_TOP_RIGHT_EDGE | |
1582 | const __attribute__((unused)) int unu= t7; | |
1583 | ||
1584 | src[0+0*stride]=(t0 + t1 + 1)>>1; | |
1585 | src[1+0*stride]= | |
1586 | src[0+2*stride]=(t1 + t2 + 1)>>1; | |
1587 | src[2+0*stride]= | |
1588 | src[1+2*stride]=(t2 + t3 + 1)>>1; | |
1589 | src[3+0*stride]= | |
1590 | src[2+2*stride]=(t3 + t4+ 1)>>1; | |
1591 | src[3+2*stride]=(t4 + t5+ 1)>>1; | |
1592 | src[0+1*stride]=(t0 + 2*t1 + t2 + 2)>>2; | |
1593 | src[1+1*stride]= | |
1594 | src[0+3*stride]=(t1 + 2*t2 + t3 + 2)>>2; | |
1595 | src[2+1*stride]= | |
1596 | src[1+3*stride]=(t2 + 2*t3 + t4 + 2)>>2; | |
1597 | src[3+1*stride]= | |
1598 | src[2+3*stride]=(t3 + 2*t4 + t5 + 2)>>2; | |
1599 | src[3+3*stride]=(t4 + 2*t5 + t6 + 2)>>2; | |
4cfbf61b | 1600 | } |
0da71265 MN |
1601 | |
1602 | static void pred4x4_horizontal_up_c(uint8_t *src, uint8_t *topright, int stride){ | |
1603 | LOAD_LEFT_EDGE | |
1604 | ||
1605 | src[0+0*stride]=(l0 + l1 + 1)>>1; | |
1606 | src[1+0*stride]=(l0 + 2*l1 + l2 + 2)>>2; | |
1607 | src[2+0*stride]= | |
1608 | src[0+1*stride]=(l1 + l2 + 1)>>1; | |
1609 | src[3+0*stride]= | |
1610 | src[1+1*stride]=(l1 + 2*l2 + l3 + 2)>>2; | |
1611 | src[2+1*stride]= | |
1612 | src[0+2*stride]=(l2 + l3 + 1)>>1; | |
1613 | src[3+1*stride]= | |
1614 | src[1+2*stride]=(l2 + 2*l3 + l3 + 2)>>2; | |
1615 | src[3+2*stride]= | |
1616 | src[1+3*stride]= | |
1617 | src[0+3*stride]= | |
1618 | src[2+2*stride]= | |
1619 | src[2+3*stride]= | |
1620 | src[3+3*stride]=l3; | |
4cfbf61b | 1621 | } |
0da71265 MN |
1622 | |
1623 | static void pred4x4_horizontal_down_c(uint8_t *src, uint8_t *topright, int stride){ | |
1624 | const int lt= src[-1-1*stride]; | |
1625 | LOAD_TOP_EDGE | |
1626 | LOAD_LEFT_EDGE | |
1627 | const __attribute__((unused)) int unu= t3; | |
1628 | ||
1629 | src[0+0*stride]= | |
1630 | src[2+1*stride]=(lt + l0 + 1)>>1; | |
1631 | src[1+0*stride]= | |
1632 | src[3+1*stride]=(l0 + 2*lt + t0 + 2)>>2; | |
1633 | src[2+0*stride]=(lt + 2*t0 + t1 + 2)>>2; | |
1634 | src[3+0*stride]=(t0 + 2*t1 + t2 + 2)>>2; | |
1635 | src[0+1*stride]= | |
1636 | src[2+2*stride]=(l0 + l1 + 1)>>1; | |
1637 | src[1+1*stride]= | |
1638 | src[3+2*stride]=(lt + 2*l0 + l1 + 2)>>2; | |
1639 | src[0+2*stride]= | |
1640 | src[2+3*stride]=(l1 + l2+ 1)>>1; | |
1641 | src[1+2*stride]= | |
1642 | src[3+3*stride]=(l0 + 2*l1 + l2 + 2)>>2; | |
1643 | src[0+3*stride]=(l2 + l3 + 1)>>1; | |
1644 | src[1+3*stride]=(l1 + 2*l2 + l3 + 2)>>2; | |
4cfbf61b | 1645 | } |
0da71265 MN |
1646 | |
1647 | static void pred16x16_vertical_c(uint8_t *src, int stride){ | |
1648 | int i; | |
1649 | const uint32_t a= ((uint32_t*)(src-stride))[0]; | |
1650 | const uint32_t b= ((uint32_t*)(src-stride))[1]; | |
1651 | const uint32_t c= ((uint32_t*)(src-stride))[2]; | |
1652 | const uint32_t d= ((uint32_t*)(src-stride))[3]; | |
1653 | ||
1654 | for(i=0; i<16; i++){ | |
1655 | ((uint32_t*)(src+i*stride))[0]= a; | |
1656 | ((uint32_t*)(src+i*stride))[1]= b; | |
1657 | ((uint32_t*)(src+i*stride))[2]= c; | |
1658 | ((uint32_t*)(src+i*stride))[3]= d; | |
1659 | } | |
1660 | } | |
1661 | ||
1662 | static void pred16x16_horizontal_c(uint8_t *src, int stride){ | |
1663 | int i; | |
1664 | ||
1665 | for(i=0; i<16; i++){ | |
1666 | ((uint32_t*)(src+i*stride))[0]= | |
1667 | ((uint32_t*)(src+i*stride))[1]= | |
1668 | ((uint32_t*)(src+i*stride))[2]= | |
1669 | ((uint32_t*)(src+i*stride))[3]= src[-1+i*stride]*0x01010101; | |
1670 | } | |
1671 | } | |
1672 | ||
1673 | static void pred16x16_dc_c(uint8_t *src, int stride){ | |
1674 | int i, dc=0; | |
1675 | ||
1676 | for(i=0;i<16; i++){ | |
1677 | dc+= src[-1+i*stride]; | |
1678 | } | |
1679 | ||
1680 | for(i=0;i<16; i++){ | |
1681 | dc+= src[i-stride]; | |
1682 | } | |
1683 | ||
1684 | dc= 0x01010101*((dc + 16)>>5); | |
1685 | ||
1686 | for(i=0; i<16; i++){ | |
1687 | ((uint32_t*)(src+i*stride))[0]= | |
1688 | ((uint32_t*)(src+i*stride))[1]= | |
1689 | ((uint32_t*)(src+i*stride))[2]= | |
1690 | ((uint32_t*)(src+i*stride))[3]= dc; | |
1691 | } | |
1692 | } | |
1693 | ||
1694 | static void pred16x16_left_dc_c(uint8_t *src, int stride){ | |
1695 | int i, dc=0; | |
1696 | ||
1697 | for(i=0;i<16; i++){ | |
1698 | dc+= src[-1+i*stride]; | |
1699 | } | |
1700 | ||
1701 | dc= 0x01010101*((dc + 8)>>4); | |
1702 | ||
1703 | for(i=0; i<16; i++){ | |
1704 | ((uint32_t*)(src+i*stride))[0]= | |
1705 | ((uint32_t*)(src+i*stride))[1]= | |
1706 | ((uint32_t*)(src+i*stride))[2]= | |
1707 | ((uint32_t*)(src+i*stride))[3]= dc; | |
1708 | } | |
1709 | } | |
1710 | ||
1711 | static void pred16x16_top_dc_c(uint8_t *src, int stride){ | |
1712 | int i, dc=0; | |
1713 | ||
1714 | for(i=0;i<16; i++){ | |
1715 | dc+= src[i-stride]; | |
1716 | } | |
1717 | dc= 0x01010101*((dc + 8)>>4); | |
1718 | ||
1719 | for(i=0; i<16; i++){ | |
1720 | ((uint32_t*)(src+i*stride))[0]= | |
1721 | ((uint32_t*)(src+i*stride))[1]= | |
1722 | ((uint32_t*)(src+i*stride))[2]= | |
1723 | ((uint32_t*)(src+i*stride))[3]= dc; | |
1724 | } | |
1725 | } | |
1726 | ||
1727 | static void pred16x16_128_dc_c(uint8_t *src, int stride){ | |
1728 | int i; | |
1729 | ||
1730 | for(i=0; i<16; i++){ | |
1731 | ((uint32_t*)(src+i*stride))[0]= | |
1732 | ((uint32_t*)(src+i*stride))[1]= | |
1733 | ((uint32_t*)(src+i*stride))[2]= | |
1734 | ((uint32_t*)(src+i*stride))[3]= 0x01010101U*128U; | |
1735 | } | |
1736 | } | |
1737 | ||
8b82a956 | 1738 | static inline void pred16x16_plane_compat_c(uint8_t *src, int stride, const int svq3){ |
30f73fc7 MN |
1739 | int i, j, k; |
1740 | int a; | |
1741 | uint8_t *cm = cropTbl + MAX_NEG_CROP; | |
1742 | const uint8_t * const src0 = src+7-stride; | |
1743 | const uint8_t *src1 = src+8*stride-1; | |
1744 | const uint8_t *src2 = src1-2*stride; // == src+6*stride-1; | |
1745 | int H = src0[1] - src0[-1]; | |
1746 | int V = src1[0] - src2[ 0]; | |
1747 | for(k=2; k<=8; ++k) { | |
1748 | src1 += stride; src2 -= stride; | |
1749 | H += k*(src0[k] - src0[-k]); | |
1750 | V += k*(src1[0] - src2[ 0]); | |
1751 | } | |
8b82a956 MN |
1752 | if(svq3){ |
1753 | H = ( 5*(H/4) ) / 16; | |
1754 | V = ( 5*(V/4) ) / 16; | |
2e26c8d2 MM |
1755 | |
1756 | /* required for 100% accuracy */ | |
1757 | i = H; H = V; V = i; | |
8b82a956 MN |
1758 | }else{ |
1759 | H = ( 5*H+32 ) >> 6; | |
1760 | V = ( 5*V+32 ) >> 6; | |
1761 | } | |
30f73fc7 MN |
1762 | |
1763 | a = 16*(src1[0] + src2[16] + 1) - 7*(V+H); | |
1764 | for(j=16; j>0; --j) { | |
1765 | int b = a; | |
1766 | a += V; | |
1767 | for(i=-16; i<0; i+=4) { | |
1768 | src[16+i] = cm[ (b ) >> 5 ]; | |
1769 | src[17+i] = cm[ (b+ H) >> 5 ]; | |
1770 | src[18+i] = cm[ (b+2*H) >> 5 ]; | |
1771 | src[19+i] = cm[ (b+3*H) >> 5 ]; | |
1772 | b += 4*H; | |
0da71265 | 1773 | } |
30f73fc7 MN |
1774 | src += stride; |
1775 | } | |
0da71265 MN |
1776 | } |
1777 | ||
8b82a956 MN |
1778 | static void pred16x16_plane_c(uint8_t *src, int stride){ |
1779 | pred16x16_plane_compat_c(src, stride, 0); | |
1780 | } | |
1781 | ||
0da71265 MN |
1782 | static void pred8x8_vertical_c(uint8_t *src, int stride){ |
1783 | int i; | |
1784 | const uint32_t a= ((uint32_t*)(src-stride))[0]; | |
1785 | const uint32_t b= ((uint32_t*)(src-stride))[1]; | |
1786 | ||
1787 | for(i=0; i<8; i++){ | |
1788 | ((uint32_t*)(src+i*stride))[0]= a; | |
1789 | ((uint32_t*)(src+i*stride))[1]= b; | |
1790 | } | |
1791 | } | |
1792 | ||
1793 | static void pred8x8_horizontal_c(uint8_t *src, int stride){ | |
1794 | int i; | |
1795 | ||
1796 | for(i=0; i<8; i++){ | |
1797 | ((uint32_t*)(src+i*stride))[0]= | |
1798 | ((uint32_t*)(src+i*stride))[1]= src[-1+i*stride]*0x01010101; | |
1799 | } | |
1800 | } | |
1801 | ||
1802 | static void pred8x8_128_dc_c(uint8_t *src, int stride){ | |
1803 | int i; | |
1804 | ||
1805 | for(i=0; i<4; i++){ | |
1806 | ((uint32_t*)(src+i*stride))[0]= | |
1807 | ((uint32_t*)(src+i*stride))[1]= 0x01010101U*128U; | |
1808 | } | |
1809 | for(i=4; i<8; i++){ | |
1810 | ((uint32_t*)(src+i*stride))[0]= | |
1811 | ((uint32_t*)(src+i*stride))[1]= 0x01010101U*128U; | |
1812 | } | |
1813 | } | |
1814 | ||
1815 | static void pred8x8_left_dc_c(uint8_t *src, int stride){ | |
1816 | int i; | |
1817 | int dc0, dc2; | |
1818 | ||
1819 | dc0=dc2=0; | |
1820 | for(i=0;i<4; i++){ | |
1821 | dc0+= src[-1+i*stride]; | |
1822 | dc2+= src[-1+(i+4)*stride]; | |
1823 | } | |
1824 | dc0= 0x01010101*((dc0 + 2)>>2); | |
1825 | dc2= 0x01010101*((dc2 + 2)>>2); | |
1826 | ||
1827 | for(i=0; i<4; i++){ | |
1828 | ((uint32_t*)(src+i*stride))[0]= | |
1829 | ((uint32_t*)(src+i*stride))[1]= dc0; | |
1830 | } | |
1831 | for(i=4; i<8; i++){ | |
1832 | ((uint32_t*)(src+i*stride))[0]= | |
1833 | ((uint32_t*)(src+i*stride))[1]= dc2; | |
1834 | } | |
1835 | } | |
1836 | ||
1837 | static void pred8x8_top_dc_c(uint8_t *src, int stride){ | |
1838 | int i; | |
1839 | int dc0, dc1; | |
1840 | ||
1841 | dc0=dc1=0; | |
1842 | for(i=0;i<4; i++){ | |
1843 | dc0+= src[i-stride]; | |
1844 | dc1+= src[4+i-stride]; | |
1845 | } | |
1846 | dc0= 0x01010101*((dc0 + 2)>>2); | |
1847 | dc1= 0x01010101*((dc1 + 2)>>2); | |
1848 | ||
1849 | for(i=0; i<4; i++){ | |
1850 | ((uint32_t*)(src+i*stride))[0]= dc0; | |
1851 | ((uint32_t*)(src+i*stride))[1]= dc1; | |
1852 | } | |
1853 | for(i=4; i<8; i++){ | |
1854 | ((uint32_t*)(src+i*stride))[0]= dc0; | |
1855 | ((uint32_t*)(src+i*stride))[1]= dc1; | |
1856 | } | |
1857 | } | |
1858 | ||
1859 | ||
1860 | static void pred8x8_dc_c(uint8_t *src, int stride){ | |
1861 | int i; | |
1862 | int dc0, dc1, dc2, dc3; | |
1863 | ||
1864 | dc0=dc1=dc2=0; | |
1865 | for(i=0;i<4; i++){ | |
1866 | dc0+= src[-1+i*stride] + src[i-stride]; | |
1867 | dc1+= src[4+i-stride]; | |
1868 | dc2+= src[-1+(i+4)*stride]; | |
1869 | } | |
1870 | dc3= 0x01010101*((dc1 + dc2 + 4)>>3); | |
1871 | dc0= 0x01010101*((dc0 + 4)>>3); | |
1872 | dc1= 0x01010101*((dc1 + 2)>>2); | |
1873 | dc2= 0x01010101*((dc2 + 2)>>2); | |
1874 | ||
1875 | for(i=0; i<4; i++){ | |
1876 | ((uint32_t*)(src+i*stride))[0]= dc0; | |
1877 | ((uint32_t*)(src+i*stride))[1]= dc1; | |
1878 | } | |
1879 | for(i=4; i<8; i++){ | |
1880 | ((uint32_t*)(src+i*stride))[0]= dc2; | |
1881 | ((uint32_t*)(src+i*stride))[1]= dc3; | |
1882 | } | |
1883 | } | |
1884 | ||
1885 | static void pred8x8_plane_c(uint8_t *src, int stride){ | |
30f73fc7 MN |
1886 | int j, k; |
1887 | int a; | |
1888 | uint8_t *cm = cropTbl + MAX_NEG_CROP; | |
1889 | const uint8_t * const src0 = src+3-stride; | |
1890 | const uint8_t *src1 = src+4*stride-1; | |
1891 | const uint8_t *src2 = src1-2*stride; // == src+2*stride-1; | |
1892 | int H = src0[1] - src0[-1]; | |
1893 | int V = src1[0] - src2[ 0]; | |
1894 | for(k=2; k<=4; ++k) { | |
1895 | src1 += stride; src2 -= stride; | |
1896 | H += k*(src0[k] - src0[-k]); | |
1897 | V += k*(src1[0] - src2[ 0]); | |
1898 | } | |
1899 | H = ( 17*H+16 ) >> 5; | |
1900 | V = ( 17*V+16 ) >> 5; | |
1901 | ||
1902 | a = 16*(src1[0] + src2[8]+1) - 3*(V+H); | |
1903 | for(j=8; j>0; --j) { | |
1904 | int b = a; | |
1905 | a += V; | |
1906 | src[0] = cm[ (b ) >> 5 ]; | |
1907 | src[1] = cm[ (b+ H) >> 5 ]; | |
1908 | src[2] = cm[ (b+2*H) >> 5 ]; | |
1909 | src[3] = cm[ (b+3*H) >> 5 ]; | |
1910 | src[4] = cm[ (b+4*H) >> 5 ]; | |
1911 | src[5] = cm[ (b+5*H) >> 5 ]; | |
1912 | src[6] = cm[ (b+6*H) >> 5 ]; | |
1913 | src[7] = cm[ (b+7*H) >> 5 ]; | |
1914 | src += stride; | |
1915 | } | |
0da71265 MN |
1916 | } |
1917 | ||
1918 | static inline void mc_dir_part(H264Context *h, Picture *pic, int n, int square, int chroma_height, int delta, int list, | |
1919 | uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, | |
1920 | int src_x_offset, int src_y_offset, | |
1921 | qpel_mc_func *qpix_op, h264_chroma_mc_func chroma_op){ | |
1922 | MpegEncContext * const s = &h->s; | |
1923 | const int mx= h->mv_cache[list][ scan8[n] ][0] + src_x_offset*8; | |
1924 | const int my= h->mv_cache[list][ scan8[n] ][1] + src_y_offset*8; | |
1925 | const int luma_xy= (mx&3) + ((my&3)<<2); | |
1926 | uint8_t * src_y = pic->data[0] + (mx>>2) + (my>>2)*s->linesize; | |
1927 | uint8_t * src_cb= pic->data[1] + (mx>>3) + (my>>3)*s->uvlinesize; | |
1928 | uint8_t * src_cr= pic->data[2] + (mx>>3) + (my>>3)*s->uvlinesize; | |
1929 | int extra_width= (s->flags&CODEC_FLAG_EMU_EDGE) ? 0 : 16; //FIXME increase edge?, IMHO not worth it | |
1930 | int extra_height= extra_width; | |
1931 | int emu=0; | |
1932 | const int full_mx= mx>>2; | |
1933 | const int full_my= my>>2; | |
1934 | ||
1935 | assert(pic->data[0]); | |
1936 | ||
1937 | if(mx&7) extra_width -= 3; | |
1938 | if(my&7) extra_height -= 3; | |
1939 | ||
1940 | if( full_mx < 0-extra_width | |
1941 | || full_my < 0-extra_height | |
1942 | || full_mx + 16/*FIXME*/ > s->width + extra_width | |
1943 | || full_my + 16/*FIXME*/ > s->height + extra_height){ | |
c009df3f | 1944 | ff_emulated_edge_mc(s->edge_emu_buffer, src_y - 2 - 2*s->linesize, s->linesize, 16+5, 16+5/*FIXME*/, full_mx-2, full_my-2, s->width, s->height); |
0da71265 MN |
1945 | src_y= s->edge_emu_buffer + 2 + 2*s->linesize; |
1946 | emu=1; | |
1947 | } | |
1948 | ||
1949 | qpix_op[luma_xy](dest_y, src_y, s->linesize); //FIXME try variable height perhaps? | |
1950 | if(!square){ | |
1951 | qpix_op[luma_xy](dest_y + delta, src_y + delta, s->linesize); | |
1952 | } | |
1953 | ||
1954 | if(s->flags&CODEC_FLAG_GRAY) return; | |
1955 | ||
1956 | if(emu){ | |
c009df3f | 1957 | ff_emulated_edge_mc(s->edge_emu_buffer, src_cb, s->uvlinesize, 9, 9/*FIXME*/, (mx>>3), (my>>3), s->width>>1, s->height>>1); |
0da71265 MN |
1958 | src_cb= s->edge_emu_buffer; |
1959 | } | |
1960 | chroma_op(dest_cb, src_cb, s->uvlinesize, chroma_height, mx&7, my&7); | |
1961 | ||
1962 | if(emu){ | |
c009df3f | 1963 | ff_emulated_edge_mc(s->edge_emu_buffer, src_cr, s->uvlinesize, 9, 9/*FIXME*/, (mx>>3), (my>>3), s->width>>1, s->height>>1); |
0da71265 MN |
1964 | src_cr= s->edge_emu_buffer; |
1965 | } | |
1966 | chroma_op(dest_cr, src_cr, s->uvlinesize, chroma_height, mx&7, my&7); | |
1967 | } | |
1968 | ||
1969 | static inline void mc_part(H264Context *h, int n, int square, int chroma_height, int delta, | |
1970 | uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, | |
1971 | int x_offset, int y_offset, | |
1972 | qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put, | |
1973 | qpel_mc_func *qpix_avg, h264_chroma_mc_func chroma_avg, | |
1974 | int list0, int list1){ | |
1975 | MpegEncContext * const s = &h->s; | |
1976 | qpel_mc_func *qpix_op= qpix_put; | |
1977 | h264_chroma_mc_func chroma_op= chroma_put; | |
1978 | ||
1979 | dest_y += 2*x_offset + 2*y_offset*s-> linesize; | |
1980 | dest_cb += x_offset + y_offset*s->uvlinesize; | |
1981 | dest_cr += x_offset + y_offset*s->uvlinesize; | |
1982 | x_offset += 8*s->mb_x; | |
1983 | y_offset += 8*s->mb_y; | |
1984 | ||
1985 | if(list0){ | |
1924f3ce | 1986 | Picture *ref= &h->ref_list[0][ h->ref_cache[0][ scan8[n] ] ]; |
0da71265 MN |
1987 | mc_dir_part(h, ref, n, square, chroma_height, delta, 0, |
1988 | dest_y, dest_cb, dest_cr, x_offset, y_offset, | |
1989 | qpix_op, chroma_op); | |
1990 | ||
1991 | qpix_op= qpix_avg; | |
1992 | chroma_op= chroma_avg; | |
1993 | } | |
1994 | ||
1995 | if(list1){ | |
1924f3ce | 1996 | Picture *ref= &h->ref_list[1][ h->ref_cache[1][ scan8[n] ] ]; |
0da71265 MN |
1997 | mc_dir_part(h, ref, n, square, chroma_height, delta, 1, |
1998 | dest_y, dest_cb, dest_cr, x_offset, y_offset, | |
1999 | qpix_op, chroma_op); | |
2000 | } | |
2001 | } | |
2002 | ||
2003 | static void hl_motion(H264Context *h, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, | |
2004 | qpel_mc_func (*qpix_put)[16], h264_chroma_mc_func (*chroma_put), | |
2005 | qpel_mc_func (*qpix_avg)[16], h264_chroma_mc_func (*chroma_avg)){ | |
2006 | MpegEncContext * const s = &h->s; | |
7bc9090a | 2007 | const int mb_xy= s->mb_x + s->mb_y*s->mb_stride; |
0da71265 MN |
2008 | const int mb_type= s->current_picture.mb_type[mb_xy]; |
2009 | ||
2010 | assert(IS_INTER(mb_type)); | |
2011 | ||
2012 | if(IS_16X16(mb_type)){ | |
2013 | mc_part(h, 0, 1, 8, 0, dest_y, dest_cb, dest_cr, 0, 0, | |
2014 | qpix_put[0], chroma_put[0], qpix_avg[0], chroma_avg[0], | |
2015 | IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1)); | |
2016 | }else if(IS_16X8(mb_type)){ | |
2017 | mc_part(h, 0, 0, 4, 8, dest_y, dest_cb, dest_cr, 0, 0, | |
2018 | qpix_put[1], chroma_put[0], qpix_avg[1], chroma_avg[0], | |
2019 | IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1)); | |
2020 | mc_part(h, 8, 0, 4, 8, dest_y, dest_cb, dest_cr, 0, 4, | |
2021 | qpix_put[1], chroma_put[0], qpix_avg[1], chroma_avg[0], | |
2022 | IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1)); | |
2023 | }else if(IS_8X16(mb_type)){ | |
2024 | mc_part(h, 0, 0, 8, 8*s->linesize, dest_y, dest_cb, dest_cr, 0, 0, | |
2025 | qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1], | |
2026 | IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1)); | |
2027 | mc_part(h, 4, 0, 8, 8*s->linesize, dest_y, dest_cb, dest_cr, 4, 0, | |
2028 | qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1], | |
2029 | IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1)); | |
2030 | }else{ | |
2031 | int i; | |
2032 | ||
2033 | assert(IS_8X8(mb_type)); | |
2034 | ||
2035 | for(i=0; i<4; i++){ | |
2036 | const int sub_mb_type= h->sub_mb_type[i]; | |
2037 | const int n= 4*i; | |
2038 | int x_offset= (i&1)<<2; | |
2039 | int y_offset= (i&2)<<1; | |
2040 | ||
2041 | if(IS_SUB_8X8(sub_mb_type)){ | |
2042 | mc_part(h, n, 1, 4, 0, dest_y, dest_cb, dest_cr, x_offset, y_offset, | |
2043 | qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1], | |
2044 | IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1)); | |
2045 | }else if(IS_SUB_8X4(sub_mb_type)){ | |
2046 | mc_part(h, n , 0, 2, 4, dest_y, dest_cb, dest_cr, x_offset, y_offset, | |
2047 | qpix_put[2], chroma_put[1], qpix_avg[2], chroma_avg[1], | |
2048 | IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1)); | |
2049 | mc_part(h, n+2, 0, 2, 4, dest_y, dest_cb, dest_cr, x_offset, y_offset+2, | |
2050 | qpix_put[2], chroma_put[1], qpix_avg[2], chroma_avg[1], | |
2051 | IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1)); | |
2052 | }else if(IS_SUB_4X8(sub_mb_type)){ | |
2053 | mc_part(h, n , 0, 4, 4*s->linesize, dest_y, dest_cb, dest_cr, x_offset, y_offset, | |
2054 | qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2], | |
2055 | IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1)); | |
2056 | mc_part(h, n+1, 0, 4, 4*s->linesize, dest_y, dest_cb, dest_cr, x_offset+2, y_offset, | |
2057 | qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2], | |
2058 | IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1)); | |
2059 | }else{ | |
2060 | int j; | |
2061 | assert(IS_SUB_4X4(sub_mb_type)); | |
2062 | for(j=0; j<4; j++){ | |
2063 | int sub_x_offset= x_offset + 2*(j&1); | |
2064 | int sub_y_offset= y_offset + (j&2); | |
2065 | mc_part(h, n+j, 1, 2, 0, dest_y, dest_cb, dest_cr, sub_x_offset, sub_y_offset, | |
2066 | qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2], | |
2067 | IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1)); | |
2068 | } | |
2069 | } | |
2070 | } | |
2071 | } | |
2072 | } | |
2073 | ||
2074 | static void decode_init_vlc(H264Context *h){ | |
2075 | static int done = 0; | |
2076 | ||
2077 | if (!done) { | |
2078 | int i; | |
2079 | done = 1; | |
2080 | ||
2081 | init_vlc(&chroma_dc_coeff_token_vlc, CHROMA_DC_COEFF_TOKEN_VLC_BITS, 4*5, | |
2082 | &chroma_dc_coeff_token_len [0], 1, 1, | |
2083 | &chroma_dc_coeff_token_bits[0], 1, 1); | |
2084 | ||
2085 | for(i=0; i<4; i++){ | |
2086 | init_vlc(&coeff_token_vlc[i], COEFF_TOKEN_VLC_BITS, 4*17, | |
2087 | &coeff_token_len [i][0], 1, 1, | |
2088 | &coeff_token_bits[i][0], 1, 1); | |
2089 | } | |
2090 | ||
2091 | for(i=0; i<3; i++){ | |
2092 | init_vlc(&chroma_dc_total_zeros_vlc[i], CHROMA_DC_TOTAL_ZEROS_VLC_BITS, 4, | |
2093 | &chroma_dc_total_zeros_len [i][0], 1, 1, | |
2094 | &chroma_dc_total_zeros_bits[i][0], 1, 1); | |
2095 | } | |
2096 | for(i=0; i<15; i++){ | |
2097 | init_vlc(&total_zeros_vlc[i], TOTAL_ZEROS_VLC_BITS, 16, | |
2098 | &total_zeros_len [i][0], 1, 1, | |
2099 | &total_zeros_bits[i][0], 1, 1); | |
2100 | } | |
2101 | ||
2102 | for(i=0; i<6; i++){ | |
2103 | init_vlc(&run_vlc[i], RUN_VLC_BITS, 7, | |
2104 | &run_len [i][0], 1, 1, | |
2105 | &run_bits[i][0], 1, 1); | |
2106 | } | |
2107 | init_vlc(&run7_vlc, RUN7_VLC_BITS, 16, | |
2108 | &run_len [6][0], 1, 1, | |
2109 | &run_bits[6][0], 1, 1); | |
2110 | } | |
2111 | } | |
2112 | ||
2113 | /** | |
2114 | * Sets the intra prediction function pointers. | |
2115 | */ | |
2116 | static void init_pred_ptrs(H264Context *h){ | |
2117 | // MpegEncContext * const s = &h->s; | |
2118 | ||
2119 | h->pred4x4[VERT_PRED ]= pred4x4_vertical_c; | |
2120 | h->pred4x4[HOR_PRED ]= pred4x4_horizontal_c; | |
2121 | h->pred4x4[DC_PRED ]= pred4x4_dc_c; | |
2122 | h->pred4x4[DIAG_DOWN_LEFT_PRED ]= pred4x4_down_left_c; | |
2123 | h->pred4x4[DIAG_DOWN_RIGHT_PRED]= pred4x4_down_right_c; | |
2124 | h->pred4x4[VERT_RIGHT_PRED ]= pred4x4_vertical_right_c; | |
2125 | h->pred4x4[HOR_DOWN_PRED ]= pred4x4_horizontal_down_c; | |
2126 | h->pred4x4[VERT_LEFT_PRED ]= pred4x4_vertical_left_c; | |
2127 | h->pred4x4[HOR_UP_PRED ]= pred4x4_horizontal_up_c; | |
2128 | h->pred4x4[LEFT_DC_PRED ]= pred4x4_left_dc_c; | |
2129 | h->pred4x4[TOP_DC_PRED ]= pred4x4_top_dc_c; | |
2130 | h->pred4x4[DC_128_PRED ]= pred4x4_128_dc_c; | |
2131 | ||
2132 | h->pred8x8[DC_PRED8x8 ]= pred8x8_dc_c; | |
2133 | h->pred8x8[VERT_PRED8x8 ]= pred8x8_vertical_c; | |
2134 | h->pred8x8[HOR_PRED8x8 ]= pred8x8_horizontal_c; | |
2135 | h->pred8x8[PLANE_PRED8x8 ]= pred8x8_plane_c; | |
2136 | h->pred8x8[LEFT_DC_PRED8x8]= pred8x8_left_dc_c; | |
2137 | h->pred8x8[TOP_DC_PRED8x8 ]= pred8x8_top_dc_c; | |
2138 | h->pred8x8[DC_128_PRED8x8 ]= pred8x8_128_dc_c; | |
2139 | ||
2140 | h->pred16x16[DC_PRED8x8 ]= pred16x16_dc_c; | |
2141 | h->pred16x16[VERT_PRED8x8 ]= pred16x16_vertical_c; | |
2142 | h->pred16x16[HOR_PRED8x8 ]= pred16x16_horizontal_c; | |
2143 | h->pred16x16[PLANE_PRED8x8 ]= pred16x16_plane_c; | |
2144 | h->pred16x16[LEFT_DC_PRED8x8]= pred16x16_left_dc_c; | |
2145 | h->pred16x16[TOP_DC_PRED8x8 ]= pred16x16_top_dc_c; | |
2146 | h->pred16x16[DC_128_PRED8x8 ]= pred16x16_128_dc_c; | |
2147 | } | |
2148 | ||
0da71265 | 2149 | static void free_tables(H264Context *h){ |
0da71265 | 2150 | av_freep(&h->intra4x4_pred_mode); |
e5017ab8 LA |
2151 | av_freep(&h->chroma_pred_mode_table); |
2152 | av_freep(&h->cbp_table); | |
9e528114 LA |
2153 | av_freep(&h->mvd_table[0]); |
2154 | av_freep(&h->mvd_table[1]); | |
0da71265 MN |
2155 | av_freep(&h->non_zero_count); |
2156 | av_freep(&h->slice_table_base); | |
53c05b1e | 2157 | av_freep(&h->top_border); |
0da71265 | 2158 | h->slice_table= NULL; |
e5017ab8 | 2159 | |
0da71265 MN |
2160 | av_freep(&h->mb2b_xy); |
2161 | av_freep(&h->mb2b8_xy); | |
2162 | } | |
2163 | ||
2164 | /** | |
2165 | * allocates tables. | |
2166 | * needs widzh/height | |
2167 | */ | |
2168 | static int alloc_tables(H264Context *h){ | |
2169 | MpegEncContext * const s = &h->s; | |
7bc9090a | 2170 | const int big_mb_num= s->mb_stride * (s->mb_height+1); |
0da71265 MN |
2171 | int x,y; |
2172 | ||
2173 | CHECKED_ALLOCZ(h->intra4x4_pred_mode, big_mb_num * 8 * sizeof(uint8_t)) | |
e5017ab8 | 2174 | |
53c05b1e | 2175 | CHECKED_ALLOCZ(h->non_zero_count , big_mb_num * 16 * sizeof(uint8_t)) |
0da71265 | 2176 | CHECKED_ALLOCZ(h->slice_table_base , big_mb_num * sizeof(uint8_t)) |
53c05b1e | 2177 | CHECKED_ALLOCZ(h->top_border , s->mb_width * (16+8+8) * sizeof(uint8_t)) |
0da71265 | 2178 | |
e5017ab8 LA |
2179 | if( h->pps.cabac ) { |
2180 | CHECKED_ALLOCZ(h->chroma_pred_mode_table, big_mb_num * sizeof(uint8_t)) | |
2181 | CHECKED_ALLOCZ(h->cbp_table, big_mb_num * sizeof(uint16_t)) | |
9e528114 LA |
2182 | CHECKED_ALLOCZ(h->mvd_table[0], 32*big_mb_num * sizeof(uint16_t)); |
2183 | CHECKED_ALLOCZ(h->mvd_table[1], 32*big_mb_num * sizeof(uint16_t)); | |
e5017ab8 LA |
2184 | } |
2185 | ||
0da71265 | 2186 | memset(h->slice_table_base, -1, big_mb_num * sizeof(uint8_t)); |
7bc9090a | 2187 | h->slice_table= h->slice_table_base + s->mb_stride + 1; |
0da71265 MN |
2188 | |
2189 | CHECKED_ALLOCZ(h->mb2b_xy , big_mb_num * sizeof(uint16_t)); | |
2190 | CHECKED_ALLOCZ(h->mb2b8_xy , big_mb_num * sizeof(uint16_t)); | |
2191 | for(y=0; y<s->mb_height; y++){ | |
2192 | for(x=0; x<s->mb_width; x++){ | |
7bc9090a | 2193 | const int mb_xy= x + y*s->mb_stride; |
0da71265 MN |
2194 | const int b_xy = 4*x + 4*y*h->b_stride; |
2195 | const int b8_xy= 2*x + 2*y*h->b8_stride; | |
2196 | ||
2197 | h->mb2b_xy [mb_xy]= b_xy; | |
2198 | h->mb2b8_xy[mb_xy]= b8_xy; | |
2199 | } | |
2200 | } | |
2201 | ||
2202 | return 0; | |
2203 | fail: | |
2204 | free_tables(h); | |
2205 | return -1; | |
2206 | } | |
2207 | ||
2208 | static void common_init(H264Context *h){ | |
2209 | MpegEncContext * const s = &h->s; | |
0da71265 MN |
2210 | |
2211 | s->width = s->avctx->width; | |
2212 | s->height = s->avctx->height; | |
2213 | s->codec_id= s->avctx->codec->id; | |
2214 | ||
2215 | init_pred_ptrs(h); | |
2216 | ||
9a41c2c7 | 2217 | s->unrestricted_mv=1; |
0da71265 MN |
2218 | s->decode=1; //FIXME |
2219 | } | |
2220 | ||
2221 | static int decode_init(AVCodecContext *avctx){ | |
2222 | H264Context *h= avctx->priv_data; | |
2223 | MpegEncContext * const s = &h->s; | |
2224 | ||
3edcacde MN |
2225 | MPV_decode_defaults(s); |
2226 | ||
0da71265 MN |
2227 | s->avctx = avctx; |
2228 | common_init(h); | |
2229 | ||
2230 | s->out_format = FMT_H264; | |
2231 | s->workaround_bugs= avctx->workaround_bugs; | |
2232 | ||
2233 | // set defaults | |
0da71265 MN |
2234 | // s->decode_mb= ff_h263_decode_mb; |
2235 | s->low_delay= 1; | |
2236 | avctx->pix_fmt= PIX_FMT_YUV420P; | |
2237 | ||
2238 | decode_init_vlc(h); | |
2239 | ||
4770b1b4 RT |
2240 | if(avctx->codec_tag != 0x31637661) // avc1 |
2241 | h->is_avc = 0; | |
2242 | else { | |
2243 | if((avctx->extradata_size == 0) || (avctx->extradata == NULL)) { | |
2244 | av_log(avctx, AV_LOG_ERROR, "AVC codec requires avcC data\n"); | |
2245 | return -1; | |
2246 | } | |
2247 | h->is_avc = 1; | |
2248 | h->got_avcC = 0; | |
2249 | } | |
2250 | ||
0da71265 MN |
2251 | return 0; |
2252 | } | |
2253 | ||
2254 | static void frame_start(H264Context *h){ | |
2255 | MpegEncContext * const s = &h->s; | |
2256 | int i; | |
2257 | ||
2258 | MPV_frame_start(s, s->avctx); | |
2259 | ff_er_frame_start(s); | |
2260 | h->mmco_index=0; | |
2261 | ||
2262 | assert(s->linesize && s->uvlinesize); | |
2263 | ||
2264 | for(i=0; i<16; i++){ | |
2265 | h->block_offset[i]= 4*((scan8[i] - scan8[0])&7) + 4*s->linesize*((scan8[i] - scan8[0])>>3); | |
2266 | h->chroma_subblock_offset[i]= 2*((scan8[i] - scan8[0])&7) + 2*s->uvlinesize*((scan8[i] - scan8[0])>>3); | |
2267 | } | |
2268 | for(i=0; i<4; i++){ | |
2269 | h->block_offset[16+i]= | |
2270 | h->block_offset[20+i]= 4*((scan8[i] - scan8[0])&7) + 4*s->uvlinesize*((scan8[i] - scan8[0])>>3); | |
2271 | } | |
2272 | ||
2273 | // s->decode= (s->flags&CODEC_FLAG_PSNR) || !s->encoding || s->current_picture.reference /*|| h->contains_intra*/ || 1; | |
2274 | } | |
2275 | ||
53c05b1e MN |
2276 | static inline void backup_mb_border(H264Context *h, uint8_t *src_y, uint8_t *src_cb, uint8_t *src_cr, int linesize, int uvlinesize){ |
2277 | MpegEncContext * const s = &h->s; | |
2278 | int i; | |
2279 | ||
2280 | src_y -= linesize; | |
2281 | src_cb -= uvlinesize; | |
2282 | src_cr -= uvlinesize; | |
2283 | ||
2284 | h->left_border[0]= h->top_border[s->mb_x][15]; | |
2285 | for(i=1; i<17; i++){ | |
2286 | h->left_border[i]= src_y[15+i* linesize]; | |
2287 | } | |
2288 | ||
2289 | *(uint64_t*)(h->top_border[s->mb_x]+0)= *(uint64_t*)(src_y + 16*linesize); | |
2290 | *(uint64_t*)(h->top_border[s->mb_x]+8)= *(uint64_t*)(src_y +8+16*linesize); | |
2291 | ||
2292 | if(!(s->flags&CODEC_FLAG_GRAY)){ | |
2293 | h->left_border[17 ]= h->top_border[s->mb_x][16+7]; | |
2294 | h->left_border[17+9]= h->top_border[s->mb_x][24+7]; | |
2295 | for(i=1; i<9; i++){ | |
2296 | h->left_border[i+17 ]= src_cb[7+i*uvlinesize]; | |
2297 | h->left_border[i+17+9]= src_cr[7+i*uvlinesize]; | |
2298 | } | |
2299 | *(uint64_t*)(h->top_border[s->mb_x]+16)= *(uint64_t*)(src_cb+8*uvlinesize); | |
2300 | *(uint64_t*)(h->top_border[s->mb_x]+24)= *(uint64_t*)(src_cr+8*uvlinesize); | |
2301 | } | |
2302 | } | |
2303 | ||
2304 | static inline void xchg_mb_border(H264Context *h, uint8_t *src_y, uint8_t *src_cb, uint8_t *src_cr, int linesize, int uvlinesize, int xchg){ | |
2305 | MpegEncContext * const s = &h->s; | |
2306 | int temp8, i; | |
2307 | uint64_t temp64; | |
d89dc06a LM |
2308 | int deblock_left = (s->mb_x > 0); |
2309 | int deblock_top = (s->mb_y > 0); | |
53c05b1e MN |
2310 | |
2311 | src_y -= linesize + 1; | |
2312 | src_cb -= uvlinesize + 1; | |
2313 | src_cr -= uvlinesize + 1; | |
2314 | ||
2315 | #define XCHG(a,b,t,xchg)\ | |
2316 | t= a;\ | |
2317 | if(xchg)\ | |
2318 | a= b;\ | |
2319 | b= t; | |
d89dc06a LM |
2320 | |
2321 | if(deblock_left){ | |
2322 | for(i = !deblock_top; i<17; i++){ | |
2323 | XCHG(h->left_border[i ], src_y [i* linesize], temp8, xchg); | |
2324 | } | |
2325 | } | |
2326 | ||
2327 | if(deblock_top){ | |
2328 | XCHG(*(uint64_t*)(h->top_border[s->mb_x]+0), *(uint64_t*)(src_y +1), temp64, xchg); | |
2329 | XCHG(*(uint64_t*)(h->top_border[s->mb_x]+8), *(uint64_t*)(src_y +9), temp64, 1); | |
53c05b1e | 2330 | } |
53c05b1e MN |
2331 | |
2332 | if(!(s->flags&CODEC_FLAG_GRAY)){ | |
d89dc06a LM |
2333 | if(deblock_left){ |
2334 | for(i = !deblock_top; i<9; i++){ | |
2335 | XCHG(h->left_border[i+17 ], src_cb[i*uvlinesize], temp8, xchg); | |
2336 | XCHG(h->left_border[i+17+9], src_cr[i*uvlinesize], temp8, xchg); | |
2337 | } | |
2338 | } | |
2339 | if(deblock_top){ | |
2340 | XCHG(*(uint64_t*)(h->top_border[s->mb_x]+16), *(uint64_t*)(src_cb+1), temp64, 1); | |
2341 | XCHG(*(uint64_t*)(h->top_border[s->mb_x]+24), *(uint64_t*)(src_cr+1), temp64, 1); | |
53c05b1e | 2342 | } |
53c05b1e MN |
2343 | } |
2344 | } | |
2345 | ||
0da71265 MN |
2346 | static void hl_decode_mb(H264Context *h){ |
2347 | MpegEncContext * const s = &h->s; | |
2348 | const int mb_x= s->mb_x; | |
2349 | const int mb_y= s->mb_y; | |
7bc9090a | 2350 | const int mb_xy= mb_x + mb_y*s->mb_stride; |
0da71265 MN |
2351 | const int mb_type= s->current_picture.mb_type[mb_xy]; |
2352 | uint8_t *dest_y, *dest_cb, *dest_cr; | |
2353 | int linesize, uvlinesize /*dct_offset*/; | |
2354 | int i; | |
2355 | ||
2356 | if(!s->decode) | |
2357 | return; | |
2358 | ||
2359 | if(s->mb_skiped){ | |
2360 | } | |
2361 | ||
2362 | dest_y = s->current_picture.data[0] + (mb_y * 16* s->linesize ) + mb_x * 16; | |
2363 | dest_cb = s->current_picture.data[1] + (mb_y * 8 * s->uvlinesize) + mb_x * 8; | |
2364 | dest_cr = s->current_picture.data[2] + (mb_y * 8 * s->uvlinesize) + mb_x * 8; | |
2365 | ||
2366 | if (h->mb_field_decoding_flag) { | |
2367 | linesize = s->linesize * 2; | |
2368 | uvlinesize = s->uvlinesize * 2; | |
2369 | if(mb_y&1){ //FIXME move out of this func? | |
2370 | dest_y -= s->linesize*15; | |
2371 | dest_cb-= s->linesize*7; | |
2372 | dest_cr-= s->linesize*7; | |
2373 | } | |
2374 | } else { | |
2375 | linesize = s->linesize; | |
2376 | uvlinesize = s->uvlinesize; | |
2377 | // dct_offset = s->linesize * 16; | |
2378 | } | |
2379 | ||
2380 | if(IS_INTRA(mb_type)){ | |
53c05b1e MN |
2381 | if(h->deblocking_filter) |
2382 | xchg_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 1); | |
2383 | ||
0da71265 MN |
2384 | if(!(s->flags&CODEC_FLAG_GRAY)){ |
2385 | h->pred8x8[ h->chroma_pred_mode ](dest_cb, uvlinesize); | |
2386 | h->pred8x8[ h->chroma_pred_mode ](dest_cr, uvlinesize); | |
2387 | } | |
2388 | ||
2389 | if(IS_INTRA4x4(mb_type)){ | |
2390 | if(!s->encoding){ | |
2391 | for(i=0; i<16; i++){ | |
2392 | uint8_t * const ptr= dest_y + h->block_offset[i]; | |
2393 | uint8_t *topright= ptr + 4 - linesize; | |
2394 | const int topright_avail= (h->topright_samples_available<<i)&0x8000; | |
2395 | const int dir= h->intra4x4_pred_mode_cache[ scan8[i] ]; | |
2396 | int tr; | |
2397 | ||
2398 | if(!topright_avail){ | |
2399 | tr= ptr[3 - linesize]*0x01010101; | |
2400 | topright= (uint8_t*) &tr; | |
53c05b1e MN |
2401 | }else if(i==5 && h->deblocking_filter){ |
2402 | tr= *(uint32_t*)h->top_border[mb_x+1]; | |
2403 | topright= (uint8_t*) &tr; | |
0da71265 MN |
2404 | } |
2405 | ||
2406 | h->pred4x4[ dir ](ptr, topright, linesize); | |
8b82a956 MN |
2407 | if(h->non_zero_count_cache[ scan8[i] ]){ |
2408 | if(s->codec_id == CODEC_ID_H264) | |
0fa8158d | 2409 | s->dsp.h264_idct_add(ptr, h->mb + i*16, linesize); |
8b82a956 MN |
2410 | else |
2411 | svq3_add_idct_c(ptr, h->mb + i*16, linesize, s->qscale, 0); | |
2412 | } | |
0da71265 MN |
2413 | } |
2414 | } | |
2415 | }else{ | |
2416 | h->pred16x16[ h->intra16x16_pred_mode ](dest_y , linesize); | |
8b82a956 MN |
2417 | if(s->codec_id == CODEC_ID_H264) |
2418 | h264_luma_dc_dequant_idct_c(h->mb, s->qscale); | |
2419 | else | |
2420 | svq3_luma_dc_dequant_idct_c(h->mb, s->qscale); | |
0da71265 | 2421 | } |
53c05b1e MN |
2422 | if(h->deblocking_filter) |
2423 | xchg_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 0); | |
8b82a956 | 2424 | }else if(s->codec_id == CODEC_ID_H264){ |
0da71265 MN |
2425 | hl_motion(h, dest_y, dest_cb, dest_cr, |
2426 | s->dsp.put_h264_qpel_pixels_tab, s->dsp.put_h264_chroma_pixels_tab, | |
2427 | s->dsp.avg_h264_qpel_pixels_tab, s->dsp.avg_h264_chroma_pixels_tab); | |
2428 | } | |
2429 | ||
2430 | ||
2431 | if(!IS_INTRA4x4(mb_type)){ | |
4704097a MN |
2432 | if(s->codec_id == CODEC_ID_H264){ |
2433 | for(i=0; i<16; i++){ | |
2434 | if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){ //FIXME benchmark weird rule, & below | |
2435 | uint8_t * const ptr= dest_y + h->block_offset[i]; | |
0fa8158d | 2436 | s->dsp.h264_idct_add(ptr, h->mb + i*16, linesize); |
4704097a MN |
2437 | } |
2438 | } | |
2439 | }else{ | |
2440 | for(i=0; i<16; i++){ | |
2441 | if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){ //FIXME benchmark weird rule, & below | |
2442 | uint8_t * const ptr= dest_y + h->block_offset[i]; | |
8b82a956 | 2443 | svq3_add_idct_c(ptr, h->mb + i*16, linesize, s->qscale, IS_INTRA(mb_type) ? 1 : 0); |
4704097a | 2444 | } |
0da71265 MN |
2445 | } |
2446 | } | |
2447 | } | |
2448 | ||
2449 | if(!(s->flags&CODEC_FLAG_GRAY)){ | |
2450 | chroma_dc_dequant_idct_c(h->mb + 16*16, h->chroma_qp); | |
2451 | chroma_dc_dequant_idct_c(h->mb + 16*16+4*16, h->chroma_qp); | |
4704097a MN |
2452 | if(s->codec_id == CODEC_ID_H264){ |
2453 | for(i=16; i<16+4; i++){ | |
2454 | if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){ | |
2455 | uint8_t * const ptr= dest_cb + h->block_offset[i]; | |
0fa8158d | 2456 | s->dsp.h264_idct_add(ptr, h->mb + i*16, uvlinesize); |
4704097a | 2457 | } |
0da71265 | 2458 | } |
4704097a MN |
2459 | for(i=20; i<20+4; i++){ |
2460 | if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){ | |
2461 | uint8_t * const ptr= dest_cr + h->block_offset[i]; | |
0fa8158d | 2462 | s->dsp.h264_idct_add(ptr, h->mb + i*16, uvlinesize); |
4704097a MN |
2463 | } |
2464 | } | |
2465 | }else{ | |
2466 | for(i=16; i<16+4; i++){ | |
2467 | if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){ | |
2468 | uint8_t * const ptr= dest_cb + h->block_offset[i]; | |
8b82a956 | 2469 | svq3_add_idct_c(ptr, h->mb + i*16, uvlinesize, chroma_qp[s->qscale + 12] - 12, 2); |
4704097a MN |
2470 | } |
2471 | } | |
2472 | for(i=20; i<20+4; i++){ | |
2473 | if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){ | |
2474 | uint8_t * const ptr= dest_cr + h->block_offset[i]; | |
2475 | svq3_add_idct_c(ptr, h->mb + i*16, uvlinesize, chroma_qp[s->qscale + 12] - 12, 2); | |
2476 | } | |
0da71265 MN |
2477 | } |
2478 | } | |
2479 | } | |
53c05b1e MN |
2480 | if(h->deblocking_filter) { |
2481 | backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize); | |
2482 | filter_mb(h, mb_x, mb_y, dest_y, dest_cb, dest_cr); | |
2483 | } | |
0da71265 MN |
2484 | } |
2485 | ||
0da71265 MN |
2486 | /** |
2487 | * fills the default_ref_list. | |
2488 | */ | |
2489 | static int fill_default_ref_list(H264Context *h){ | |
2490 | MpegEncContext * const s = &h->s; | |
2491 | int i; | |
2492 | Picture sorted_short_ref[16]; | |
2493 | ||
2494 | if(h->slice_type==B_TYPE){ | |
2495 | int out_i; | |
2496 | int limit= -1; | |
2497 | ||
2498 | for(out_i=0; out_i<h->short_ref_count; out_i++){ | |
2499 | int best_i=-1; | |
792bb815 | 2500 | int best_poc=INT_MAX; |
0da71265 MN |
2501 | |
2502 | for(i=0; i<h->short_ref_count; i++){ | |
2503 | const int poc= h->short_ref[i]->poc; | |
2504 | if(poc > limit && poc < best_poc){ | |
2505 | best_poc= poc; | |
2506 | best_i= i; | |
2507 | } | |
2508 | } | |
2509 | ||
2510 | assert(best_i != -1); | |
2511 | ||
2512 | limit= best_poc; | |
2513 | sorted_short_ref[out_i]= *h->short_ref[best_i]; | |
2514 | } | |
2515 | } | |
2516 | ||
2517 | if(s->picture_structure == PICT_FRAME){ | |
2518 | if(h->slice_type==B_TYPE){ | |
2519 | const int current_poc= s->current_picture_ptr->poc; | |
2520 | int list; | |
2521 | ||
2522 | for(list=0; list<2; list++){ | |
2523 | int index=0; | |
2524 | ||
2525 | for(i=0; i<h->short_ref_count && index < h->ref_count[list]; i++){ | |
2526 | const int i2= list ? h->short_ref_count - i - 1 : i; | |
2527 | const int poc= sorted_short_ref[i2].poc; | |
2528 | ||
2529 | if(sorted_short_ref[i2].reference != 3) continue; //FIXME refernce field shit | |
2530 | ||
2531 | if((list==1 && poc > current_poc) || (list==0 && poc < current_poc)){ | |
2532 | h->default_ref_list[list][index ]= sorted_short_ref[i2]; | |
2533 | h->default_ref_list[list][index++].pic_id= sorted_short_ref[i2].frame_num; | |
2534 | } | |
2535 | } | |
2536 | ||
2537 | for(i=0; i<h->long_ref_count && index < h->ref_count[ list ]; i++){ | |
2538 | if(h->long_ref[i]->reference != 3) continue; | |
2539 | ||
2540 | h->default_ref_list[ list ][index ]= *h->long_ref[i]; | |
2541 | h->default_ref_list[ list ][index++].pic_id= i;; | |
2542 | } | |
2543 | ||
2544 | if(h->long_ref_count > 1 && h->short_ref_count==0){ | |
2545 | Picture temp= h->default_ref_list[1][0]; | |
2546 | h->default_ref_list[1][0] = h->default_ref_list[1][1]; | |
2547 | h->default_ref_list[1][0] = temp; | |
2548 | } | |
2549 | ||
2550 | if(index < h->ref_count[ list ]) | |
2551 | memset(&h->default_ref_list[list][index], 0, sizeof(Picture)*(h->ref_count[ list ] - index)); | |
2552 | } | |
2553 | }else{ | |
2554 | int index=0; | |
2555 | for(i=0; i<h->short_ref_count && index < h->ref_count[0]; i++){ | |
2556 | if(h->short_ref[i]->reference != 3) continue; //FIXME refernce field shit | |
2557 | h->default_ref_list[0][index ]= *h->short_ref[i]; | |
2558 | h->default_ref_list[0][index++].pic_id= h->short_ref[i]->frame_num; | |
2559 | } | |
2560 | for(i=0; i<h->long_ref_count && index < h->ref_count[0]; i++){ | |
2561 | if(h->long_ref[i]->reference != 3) continue; | |
2562 | h->default_ref_list[0][index ]= *h->long_ref[i]; | |
2563 | h->default_ref_list[0][index++].pic_id= i;; | |
2564 | } | |
2565 | if(index < h->ref_count[0]) | |
2566 | memset(&h->default_ref_list[0][index], 0, sizeof(Picture)*(h->ref_count[0] - index)); | |
2567 | } | |
2568 | }else{ //FIELD | |
2569 | if(h->slice_type==B_TYPE){ | |
2570 | }else{ | |
2571 | //FIXME second field balh | |
2572 | } | |
2573 | } | |
2574 | return 0; | |
2575 | } | |
2576 | ||
2577 | static int decode_ref_pic_list_reordering(H264Context *h){ | |
2578 | MpegEncContext * const s = &h->s; | |
2579 | int list; | |
2580 | ||
2581 | if(h->slice_type==I_TYPE || h->slice_type==SI_TYPE) return 0; //FIXME move beofre func | |
2582 | ||
2583 | for(list=0; list<2; list++){ | |
2584 | memcpy(h->ref_list[list], h->default_ref_list[list], sizeof(Picture)*h->ref_count[list]); | |
2585 | ||
2586 | if(get_bits1(&s->gb)){ | |
2587 | int pred= h->curr_pic_num; | |
2588 | int index; | |
2589 | ||
2590 | for(index=0; ; index++){ | |
2591 | int reordering_of_pic_nums_idc= get_ue_golomb(&s->gb); | |
2592 | int pic_id; | |
2593 | int i; | |
2594 | ||
0bc42cad LM |
2595 | if(reordering_of_pic_nums_idc==3) |
2596 | break; | |
0da71265 MN |
2597 | |
2598 | if(index >= h->ref_count[list]){ | |
9b879566 | 2599 | av_log(h->s.avctx, AV_LOG_ERROR, "reference count overflow\n"); |
0da71265 MN |
2600 | return -1; |
2601 | } | |
2602 | ||
2603 | if(reordering_of_pic_nums_idc<3){ | |
2604 | if(reordering_of_pic_nums_idc<2){ | |
2605 | const int abs_diff_pic_num= get_ue_golomb(&s->gb) + 1; | |
2606 | ||
2607 | if(abs_diff_pic_num >= h->max_pic_num){ | |
9b879566 | 2608 | av_log(h->s.avctx, AV_LOG_ERROR, "abs_diff_pic_num overflow\n"); |
0da71265 MN |
2609 | return -1; |
2610 | } | |
2611 | ||
2612 | if(reordering_of_pic_nums_idc == 0) pred-= abs_diff_pic_num; | |
2613 | else pred+= abs_diff_pic_num; | |
2614 | pred &= h->max_pic_num - 1; | |
2615 | ||
2616 | for(i= h->ref_count[list]-1; i>=index; i--){ | |
2617 | if(h->ref_list[list][i].pic_id == pred && h->ref_list[list][i].long_ref==0) | |
2618 | break; | |
2619 | } | |
2620 | }else{ | |
2621 | pic_id= get_ue_golomb(&s->gb); //long_term_pic_idx | |
2622 | ||
2623 | for(i= h->ref_count[list]-1; i>=index; i--){ | |
2624 | if(h->ref_list[list][i].pic_id == pic_id && h->ref_list[list][i].long_ref==1) | |
2625 | break; | |
2626 | } | |
2627 | } | |
2628 | ||
2629 | if(i < index){ | |
9b879566 | 2630 | av_log(h->s.avctx, AV_LOG_ERROR, "reference picture missing during reorder\n"); |
0da71265 MN |
2631 | memset(&h->ref_list[list][index], 0, sizeof(Picture)); //FIXME |
2632 | }else if(i > index){ | |
2633 | Picture tmp= h->ref_list[list][i]; | |
2634 | for(; i>index; i--){ | |
2635 | h->ref_list[list][i]= h->ref_list[list][i-1]; | |
2636 | } | |
2637 | h->ref_list[list][index]= tmp; | |
2638 | } | |
0bc42cad | 2639 | }else{ |
9b879566 | 2640 | av_log(h->s.avctx, AV_LOG_ERROR, "illegal reordering_of_pic_nums_idc\n"); |
0da71265 MN |
2641 | return -1; |
2642 | } | |
2643 | } | |
2644 | } | |
2645 | ||
2646 | if(h->slice_type!=B_TYPE) break; | |
2647 | } | |
2648 | return 0; | |
2649 | } | |
2650 | ||
2651 | static int pred_weight_table(H264Context *h){ | |
2652 | MpegEncContext * const s = &h->s; | |
2653 | int list, i; | |
2654 | ||
2655 | h->luma_log2_weight_denom= get_ue_golomb(&s->gb); | |
2656 | h->chroma_log2_weight_denom= get_ue_golomb(&s->gb); | |
2657 | ||
2658 | for(list=0; list<2; list++){ | |
2659 | for(i=0; i<h->ref_count[list]; i++){ | |
2660 | int luma_weight_flag, chroma_weight_flag; | |
2661 | ||
2662 | luma_weight_flag= get_bits1(&s->gb); | |
2663 | if(luma_weight_flag){ | |
2664 | h->luma_weight[list][i]= get_se_golomb(&s->gb); | |
2665 | h->luma_offset[list][i]= get_se_golomb(&s->gb); | |
2666 | } | |
2667 | ||
2668 | chroma_weight_flag= get_bits1(&s->gb); | |
2669 | if(chroma_weight_flag){ | |
2670 | int j; | |
2671 | for(j=0; j<2; j++){ | |
2672 | h->chroma_weight[list][i][j]= get_se_golomb(&s->gb); | |
2673 | h->chroma_offset[list][i][j]= get_se_golomb(&s->gb); | |
2674 | } | |
2675 | } | |
2676 | } | |
2677 | if(h->slice_type != B_TYPE) break; | |
2678 | } | |
2679 | return 0; | |
2680 | } | |
2681 | ||
2682 | /** | |
2683 | * instantaneos decoder refresh. | |
2684 | */ | |
2685 | static void idr(H264Context *h){ | |
2686 | int i; | |
2687 | ||
2688 | for(i=0; i<h->long_ref_count; i++){ | |
2689 | h->long_ref[i]->reference=0; | |
2690 | h->long_ref[i]= NULL; | |
2691 | } | |
2692 | h->long_ref_count=0; | |
2693 | ||
2694 | for(i=0; i<h->short_ref_count; i++){ | |
2695 | h->short_ref[i]->reference=0; | |
2696 | h->short_ref[i]= NULL; | |
2697 | } | |
2698 | h->short_ref_count=0; | |
2699 | } | |
2700 | ||
0da71265 MN |
2701 | /** |
2702 | * | |
2703 | * @return the removed picture or NULL if an error occures | |
2704 | */ | |
2705 | static Picture * remove_short(H264Context *h, int frame_num){ | |
1924f3ce | 2706 | MpegEncContext * const s = &h->s; |
0da71265 MN |
2707 | int i; |
2708 | ||
1924f3ce | 2709 | if(s->avctx->debug&FF_DEBUG_MMCO) |
9b879566 | 2710 | av_log(h->s.avctx, AV_LOG_DEBUG, "remove short %d count %d\n", frame_num, h->short_ref_count); |
1924f3ce | 2711 | |
0da71265 MN |
2712 | for(i=0; i<h->short_ref_count; i++){ |
2713 | Picture *pic= h->short_ref[i]; | |
1924f3ce | 2714 | if(s->avctx->debug&FF_DEBUG_MMCO) |
9b879566 | 2715 | av_log(h->s.avctx, AV_LOG_DEBUG, "%d %d %p\n", i, pic->frame_num, pic); |
0da71265 MN |
2716 | if(pic->frame_num == frame_num){ |
2717 | h->short_ref[i]= NULL; | |
2718 | memmove(&h->short_ref[i], &h->short_ref[i+1], (h->short_ref_count - i - 1)*sizeof(Picture*)); | |
2719 | h->short_ref_count--; | |
2720 | return pic; | |
2721 | } | |
2722 | } | |
2723 | return NULL; | |
2724 | } | |
2725 | ||
2726 | /** | |
2727 | * | |
2728 | * @return the removed picture or NULL if an error occures | |
2729 | */ | |
2730 | static Picture * remove_long(H264Context *h, int i){ | |
2731 | Picture *pic; | |
2732 | ||
2733 | if(i >= h->long_ref_count) return NULL; | |
2734 | pic= h->long_ref[i]; | |
2735 | if(pic==NULL) return NULL; | |
2736 | ||
2737 | h->long_ref[i]= NULL; | |
2738 | memmove(&h->long_ref[i], &h->long_ref[i+1], (h->long_ref_count - i - 1)*sizeof(Picture*)); | |
2739 | h->long_ref_count--; | |
2740 | ||
2741 | return pic; | |
2742 | } | |
2743 | ||
2744 | /** | |
2745 | * Executes the reference picture marking (memory management control operations). | |
2746 | */ | |
2747 | static int execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){ | |
2748 | MpegEncContext * const s = &h->s; | |
2749 | int i; | |
2750 | int current_is_long=0; | |
2751 | Picture *pic; | |
2752 | ||
2753 | if((s->avctx->debug&FF_DEBUG_MMCO) && mmco_count==0) | |
9b879566 | 2754 | av_log(h->s.avctx, AV_LOG_DEBUG, "no mmco here\n"); |
0da71265 MN |
2755 | |
2756 | for(i=0; i<mmco_count; i++){ | |
2757 | if(s->avctx->debug&FF_DEBUG_MMCO) | |
9b879566 | 2758 | av_log(h->s.avctx, AV_LOG_DEBUG, "mmco:%d %d %d\n", h->mmco[i].opcode, h->mmco[i].short_frame_num, h->mmco[i].long_index); |
0da71265 MN |
2759 | |
2760 | switch(mmco[i].opcode){ | |
2761 | case MMCO_SHORT2UNUSED: | |
2762 | pic= remove_short(h, mmco[i].short_frame_num); | |
2763 | if(pic==NULL) return -1; | |
2764 | pic->reference= 0; | |
2765 | break; | |
2766 | case MMCO_SHORT2LONG: | |
2767 | pic= remove_long(h, mmco[i].long_index); | |
2768 | if(pic) pic->reference=0; | |
2769 | ||
2770 | h->long_ref[ mmco[i].long_index ]= remove_short(h, mmco[i].short_frame_num); | |
2771 | h->long_ref[ mmco[i].long_index ]->long_ref=1; | |
2772 | break; | |
2773 | case MMCO_LONG2UNUSED: | |
2774 | pic= remove_long(h, mmco[i].long_index); | |
2775 | if(pic==NULL) return -1; | |
2776 | pic->reference= 0; | |
2777 | break; | |
2778 | case MMCO_LONG: | |
2779 | pic= remove_long(h, mmco[i].long_index); | |
2780 | if(pic) pic->reference=0; | |
2781 | ||
2782 | h->long_ref[ mmco[i].long_index ]= s->current_picture_ptr; | |
2783 | h->long_ref[ mmco[i].long_index ]->long_ref=1; | |
2784 | h->long_ref_count++; | |
2785 | ||
2786 | current_is_long=1; | |
2787 | break; | |
2788 | case MMCO_SET_MAX_LONG: | |
2789 | assert(mmco[i].long_index <= 16); | |
2790 | while(mmco[i].long_index < h->long_ref_count){ | |
2791 | pic= remove_long(h, mmco[i].long_index); | |
2792 | pic->reference=0; | |
2793 | } | |
2794 | while(mmco[i].long_index > h->long_ref_count){ | |
2795 | h->long_ref[ h->long_ref_count++ ]= NULL; | |
2796 | } | |
2797 | break; | |
2798 | case MMCO_RESET: | |
2799 | while(h->short_ref_count){ | |
2800 | pic= remove_short(h, h->short_ref[0]->frame_num); | |
2801 | pic->reference=0; | |
2802 | } | |
2803 | while(h->long_ref_count){ | |
2804 | pic= remove_long(h, h->long_ref_count-1); | |
2805 | pic->reference=0; | |
2806 | } | |
2807 | break; | |
2808 | default: assert(0); | |
2809 | } | |
2810 | } | |
2811 | ||
2812 | if(!current_is_long){ | |
2813 | pic= remove_short(h, s->current_picture_ptr->frame_num); | |
2814 | if(pic){ | |
2815 | pic->reference=0; | |
9b879566 | 2816 | av_log(h->s.avctx, AV_LOG_ERROR, "illegal short term buffer state detected\n"); |
0da71265 MN |
2817 | } |
2818 | ||
2819 | if(h->short_ref_count) | |
1924f3ce MN |
2820 | memmove(&h->short_ref[1], &h->short_ref[0], h->short_ref_count*sizeof(Picture*)); |
2821 | ||
2822 | h->short_ref[0]= s->current_picture_ptr; | |
0da71265 MN |
2823 | h->short_ref[0]->long_ref=0; |
2824 | h->short_ref_count++; | |
2825 | } | |
2826 | ||
2827 | return 0; | |
2828 | } | |
2829 | ||
2830 | static int decode_ref_pic_marking(H264Context *h){ | |
2831 | MpegEncContext * const s = &h->s; | |
2832 | int i; | |
2833 | ||
2834 | if(h->nal_unit_type == NAL_IDR_SLICE){ //FIXME fields | |
2835 | s->broken_link= get_bits1(&s->gb) -1; | |
2836 | h->mmco[0].long_index= get_bits1(&s->gb) - 1; // current_long_term_idx | |
2837 | if(h->mmco[0].long_index == -1) | |
2838 | h->mmco_index= 0; | |
2839 | else{ | |
2840 | h->mmco[0].opcode= MMCO_LONG; | |
2841 | h->mmco_index= 1; | |
2842 | } | |
2843 | }else{ | |
2844 | if(get_bits1(&s->gb)){ // adaptive_ref_pic_marking_mode_flag | |
2845 | for(i= h->mmco_index; i<MAX_MMCO_COUNT; i++) { | |
2846 | MMCOOpcode opcode= get_ue_golomb(&s->gb);; | |
2847 | ||
2848 | h->mmco[i].opcode= opcode; | |
2849 | if(opcode==MMCO_SHORT2UNUSED || opcode==MMCO_SHORT2LONG){ | |
2850 | h->mmco[i].short_frame_num= (h->frame_num - get_ue_golomb(&s->gb) - 1) & ((1<<h->sps.log2_max_frame_num)-1); //FIXME fields | |
2851 | /* if(h->mmco[i].short_frame_num >= h->short_ref_count || h->short_ref[ h->mmco[i].short_frame_num ] == NULL){ | |
2852 | fprintf(stderr, "illegal short ref in memory management control operation %d\n", mmco); | |
2853 | return -1; | |
2854 | }*/ | |
2855 | } | |
2856 | if(opcode==MMCO_SHORT2LONG || opcode==MMCO_LONG2UNUSED || opcode==MMCO_LONG || opcode==MMCO_SET_MAX_LONG){ | |
2857 | h->mmco[i].long_index= get_ue_golomb(&s->gb); | |
2858 | if(/*h->mmco[i].long_index >= h->long_ref_count || h->long_ref[ h->mmco[i].long_index ] == NULL*/ h->mmco[i].long_index >= 16){ | |
9b879566 | 2859 | av_log(h->s.avctx, AV_LOG_ERROR, "illegal long ref in memory management control operation %d\n", opcode); |
0da71265 MN |
2860 | return -1; |
2861 | } | |
2862 | } | |
2863 | ||
2864 | if(opcode > MMCO_LONG){ | |
9b879566 | 2865 | av_log(h->s.avctx, AV_LOG_ERROR, "illegal memory management control operation %d\n", opcode); |
0da71265 MN |
2866 | return -1; |
2867 | } | |
792bb815 MN |
2868 | if(opcode == MMCO_END) |
2869 | break; | |
0da71265 MN |
2870 | } |
2871 | h->mmco_index= i; | |
2872 | }else{ | |
2873 | assert(h->long_ref_count + h->short_ref_count <= h->sps.ref_frame_count); | |
2874 | ||
2875 | if(h->long_ref_count + h->short_ref_count == h->sps.ref_frame_count){ //FIXME fields | |
2876 | h->mmco[0].opcode= MMCO_SHORT2UNUSED; | |
2877 | h->mmco[0].short_frame_num= h->short_ref[ h->short_ref_count - 1 ]->frame_num; | |
2878 | h->mmco_index= 1; | |
2879 | }else | |
2880 | h->mmco_index= 0; | |
2881 | } | |
2882 | } | |
2883 | ||
2884 | return 0; | |
2885 | } | |
2886 | ||
2887 | static int init_poc(H264Context *h){ | |
2888 | MpegEncContext * const s = &h->s; | |
2889 | const int max_frame_num= 1<<h->sps.log2_max_frame_num; | |
2890 | int field_poc[2]; | |
2891 | ||
2892 | if(h->nal_unit_type == NAL_IDR_SLICE){ | |
2893 | h->frame_num_offset= 0; | |
2894 | }else{ | |
2895 | if(h->frame_num < h->prev_frame_num) | |
2896 | h->frame_num_offset= h->prev_frame_num_offset + max_frame_num; | |
2897 | else | |
2898 | h->frame_num_offset= h->prev_frame_num_offset; | |
2899 | } | |
2900 | ||
2901 | if(h->sps.poc_type==0){ | |
2902 | const int max_poc_lsb= 1<<h->sps.log2_max_poc_lsb; | |
2903 | ||
2904 | if (h->poc_lsb < h->prev_poc_lsb && h->prev_poc_lsb - h->poc_lsb >= max_poc_lsb/2) | |
2905 | h->poc_msb = h->prev_poc_msb + max_poc_lsb; | |
2906 | else if(h->poc_lsb > h->prev_poc_lsb && h->prev_poc_lsb - h->poc_lsb < -max_poc_lsb/2) | |
2907 | h->poc_msb = h->prev_poc_msb - max_poc_lsb; | |
2908 | else | |
2909 | h->poc_msb = h->prev_poc_msb; | |
2910 | //printf("poc: %d %d\n", h->poc_msb, h->poc_lsb); | |
2911 | field_poc[0] = | |
2912 | field_poc[1] = h->poc_msb + h->poc_lsb; | |
2913 | if(s->picture_structure == PICT_FRAME) | |
2914 | field_poc[1] += h->delta_poc_bottom; | |
2915 | }else if(h->sps.poc_type==1){ | |
2916 | int abs_frame_num, expected_delta_per_poc_cycle, expectedpoc; | |
2917 | int i; | |
2918 | ||
2919 | if(h->sps.poc_cycle_length != 0) | |
2920 | abs_frame_num = h->frame_num_offset + h->frame_num; | |
2921 | else | |
2922 | abs_frame_num = 0; | |
2923 | ||
2924 | if(h->nal_ref_idc==0 && abs_frame_num > 0) | |
2925 | abs_frame_num--; | |
2926 | ||
2927 | expected_delta_per_poc_cycle = 0; | |
2928 | for(i=0; i < h->sps.poc_cycle_length; i++) | |
2929 | expected_delta_per_poc_cycle += h->sps.offset_for_ref_frame[ i ]; //FIXME integrate during sps parse | |
2930 | ||
2931 | if(abs_frame_num > 0){ | |
2932 | int poc_cycle_cnt = (abs_frame_num - 1) / h->sps.poc_cycle_length; | |
2933 | int frame_num_in_poc_cycle = (abs_frame_num - 1) % h->sps.poc_cycle_length; | |
2934 | ||
2935 | expectedpoc = poc_cycle_cnt * expected_delta_per_poc_cycle; | |
2936 | for(i = 0; i <= frame_num_in_poc_cycle; i++) | |
2937 | expectedpoc = expectedpoc + h->sps.offset_for_ref_frame[ i ]; | |
2938 | } else | |
2939 | expectedpoc = 0; | |
2940 | ||
2941 | if(h->nal_ref_idc == 0) | |
2942 | expectedpoc = expectedpoc + h->sps.offset_for_non_ref_pic; | |
2943 | ||
2944 | field_poc[0] = expectedpoc + h->delta_poc[0]; | |
2945 | field_poc[1] = field_poc[0] + h->sps.offset_for_top_to_bottom_field; | |
2946 | ||
2947 | if(s->picture_structure == PICT_FRAME) | |
2948 | field_poc[1] += h->delta_poc[1]; | |
2949 | }else{ | |
2950 | int poc; | |
2951 | if(h->nal_unit_type == NAL_IDR_SLICE){ | |
2952 | poc= 0; | |
2953 | }else{ | |
2954 | if(h->nal_ref_idc) poc= 2*(h->frame_num_offset + h->frame_num); | |
2955 | else poc= 2*(h->frame_num_offset + h->frame_num) - 1; | |
2956 | } | |
2957 | field_poc[0]= poc; | |
2958 | field_poc[1]= poc; | |
2959 | } | |
2960 | ||
2961 | if(s->picture_structure != PICT_BOTTOM_FIELD) | |
2962 | s->current_picture_ptr->field_poc[0]= field_poc[0]; | |
2963 | if(s->picture_structure != PICT_TOP_FIELD) | |
2964 | s->current_picture_ptr->field_poc[1]= field_poc[1]; | |
2965 | if(s->picture_structure == PICT_FRAME) // FIXME field pix? | |
2966 | s->current_picture_ptr->poc= FFMIN(field_poc[0], field_poc[1]); | |
2967 | ||
2968 | return 0; | |
2969 | } | |
2970 | ||
2971 | /** | |
2972 | * decodes a slice header. | |
2973 | * this will allso call MPV_common_init() and frame_start() as needed | |
2974 | */ | |
2975 | static int decode_slice_header(H264Context *h){ | |
2976 | MpegEncContext * const s = &h->s; | |
2977 | int first_mb_in_slice, pps_id; | |
2978 | int num_ref_idx_active_override_flag; | |
2979 | static const uint8_t slice_type_map[5]= {P_TYPE, B_TYPE, I_TYPE, SP_TYPE, SI_TYPE}; | |
0da71265 MN |
2980 | |
2981 | s->current_picture.reference= h->nal_ref_idc != 0; | |
2982 | ||
2983 | first_mb_in_slice= get_ue_golomb(&s->gb); | |
2984 | ||
2985 | h->slice_type= get_ue_golomb(&s->gb); | |
2986 | if(h->slice_type > 9){ | |
9b879566 | 2987 | av_log(h->s.avctx, AV_LOG_ERROR, "slice type too large (%d) at %d %d\n", h->slice_type, s->mb_x, s->mb_y); |
0da71265 MN |
2988 | } |
2989 | if(h->slice_type > 4){ | |
2990 | h->slice_type -= 5; | |
2991 | h->slice_type_fixed=1; | |
2992 | }else | |
2993 | h->slice_type_fixed=0; | |
2994 | ||
2995 | h->slice_type= slice_type_map[ h->slice_type ]; | |
2996 | ||
2997 | s->pict_type= h->slice_type; // to make a few old func happy, its wrong though | |
2998 | ||
2999 | pps_id= get_ue_golomb(&s->gb); | |
3000 | if(pps_id>255){ | |
9b879566 | 3001 | av_log(h->s.avctx, AV_LOG_ERROR, "pps_id out of range\n"); |
0da71265 MN |
3002 | return -1; |
3003 | } | |
3004 | h->pps= h->pps_buffer[pps_id]; | |
8b92b792 | 3005 | if(h->pps.slice_group_count == 0){ |
9b879566 | 3006 | av_log(h->s.avctx, AV_LOG_ERROR, "non existing PPS referenced\n"); |
8b92b792 MN |
3007 | return -1; |
3008 | } | |
3009 | ||
0da71265 | 3010 | h->sps= h->sps_buffer[ h->pps.sps_id ]; |
8b92b792 | 3011 | if(h->sps.log2_max_frame_num == 0){ |
9b879566 | 3012 | av_log(h->s.avctx, AV_LOG_ERROR, "non existing SPS referenced\n"); |
8b92b792 MN |
3013 | return -1; |
3014 | } | |
0da71265 MN |
3015 | |
3016 | s->mb_width= h->sps.mb_width; | |
3017 | s->mb_height= h->sps.mb_height; | |
0da71265 MN |
3018 | |
3019 | h->b_stride= s->mb_width*4; | |
3020 | h->b8_stride= s->mb_width*2; | |
3021 | ||
3022 | s->mb_x = first_mb_in_slice % s->mb_width; | |
3023 | s->mb_y = first_mb_in_slice / s->mb_width; //FIXME AFFW | |
3024 | ||
a15e68de | 3025 | s->width = 16*s->mb_width - 2*(h->sps.crop_left + h->sps.crop_right ); |
0da71265 | 3026 | if(h->sps.frame_mbs_only_flag) |
a15e68de | 3027 | s->height= 16*s->mb_height - 2*(h->sps.crop_top + h->sps.crop_bottom); |
0da71265 | 3028 | else |
a15e68de | 3029 | s->height= 16*s->mb_height - 4*(h->sps.crop_top + h->sps.crop_bottom); //FIXME recheck |
0da71265 | 3030 | |
0da71265 | 3031 | if (s->context_initialized |
5ff85f1d | 3032 | && ( s->width != s->avctx->width || s->height != s->avctx->height)) { |
0da71265 MN |
3033 | free_tables(h); |
3034 | MPV_common_end(s); | |
3035 | } | |
3036 | if (!s->context_initialized) { | |
3037 | if (MPV_common_init(s) < 0) | |
3038 | return -1; | |
3039 | ||
3040 | alloc_tables(h); | |
3041 | ||
3042 | s->avctx->width = s->width; | |
3043 | s->avctx->height = s->height; | |
5ff85f1d | 3044 | s->avctx->sample_aspect_ratio= h->sps.sar; |
ec587a50 MR |
3045 | |
3046 | if(h->sps.timing_info_present_flag && h->sps.fixed_frame_rate_flag){ | |
3047 | s->avctx->frame_rate = h->sps.time_scale; | |
3048 | s->avctx->frame_rate_base = h->sps.num_units_in_tick; | |
3049 | } | |
0da71265 MN |
3050 | } |
3051 | ||
3052 | if(first_mb_in_slice == 0){ | |
3053 | frame_start(h); | |
3054 | } | |
3055 | ||
1924f3ce | 3056 | s->current_picture_ptr->frame_num= //FIXME frame_num cleanup |
0da71265 MN |
3057 | h->frame_num= get_bits(&s->gb, h->sps.log2_max_frame_num); |
3058 | ||
3059 | if(h->sps.frame_mbs_only_flag){ | |
3060 | s->picture_structure= PICT_FRAME; | |
3061 | }else{ | |
3062 | if(get_bits1(&s->gb)) //field_pic_flag | |
3063 | s->picture_structure= PICT_TOP_FIELD + get_bits1(&s->gb); //bottom_field_flag | |
3064 | else | |
3065 | s->picture_structure= PICT_FRAME; | |
3066 | } | |
3067 | ||
3068 | if(s->picture_structure==PICT_FRAME){ | |
3069 | h->curr_pic_num= h->frame_num; | |
3070 | h->max_pic_num= 1<< h->sps.log2_max_frame_num; | |
3071 | }else{ | |
3072 | h->curr_pic_num= 2*h->frame_num; | |
3073 | h->max_pic_num= 1<<(h->sps.log2_max_frame_num + 1); | |
3074 | } | |
3075 | ||
3076 | if(h->nal_unit_type == NAL_IDR_SLICE){ | |
1df1df0b | 3077 | get_ue_golomb(&s->gb); /* idr_pic_id */ |
0da71265 MN |
3078 | } |
3079 | ||
3080 | if(h->sps.poc_type==0){ | |
3081 | h->poc_lsb= get_bits(&s->gb, h->sps.log2_max_poc_lsb); | |
3082 | ||
3083 | if(h->pps.pic_order_present==1 && s->picture_structure==PICT_FRAME){ | |
3084 | h->delta_poc_bottom= get_se_golomb(&s->gb); | |
3085 | } | |
3086 | } | |
3087 | ||
3088 | if(h->sps.poc_type==1 && !h->sps.delta_pic_order_always_zero_flag){ | |
3089 | h->delta_poc[0]= get_se_golomb(&s->gb); | |
3090 | ||
3091 | if(h->pps.pic_order_present==1 && s->picture_structure==PICT_FRAME) | |
3092 | h->delta_poc[1]= get_se_golomb(&s->gb); | |
3093 | } | |
3094 | ||
3095 | init_poc(h); | |
3096 | ||
3097 | if(h->pps.redundant_pic_cnt_present){ | |
3098 | h->redundant_pic_count= get_ue_golomb(&s->gb); | |
3099 | } | |
3100 | ||
3101 | //set defaults, might be overriden a few line later | |
3102 | h->ref_count[0]= h->pps.ref_count[0]; | |
3103 | h->ref_count[1]= h->pps.ref_count[1]; | |
3104 | ||
3105 | if(h->slice_type == P_TYPE || h->slice_type == SP_TYPE || h->slice_type == B_TYPE){ | |
3106 | if(h->slice_type == B_TYPE){ | |
3107 | h->direct_spatial_mv_pred= get_bits1(&s->gb); | |
3108 | } | |
3109 | num_ref_idx_active_override_flag= get_bits1(&s->gb); | |
3110 | ||
3111 | if(num_ref_idx_active_override_flag){ | |
3112 | h->ref_count[0]= get_ue_golomb(&s->gb) + 1; | |
3113 | if(h->slice_type==B_TYPE) | |
3114 | h->ref_count[1]= get_ue_golomb(&s->gb) + 1; | |
3115 | ||
3116 | if(h->ref_count[0] > 32 || h->ref_count[1] > 32){ | |
9b879566 | 3117 | av_log(h->s.avctx, AV_LOG_ERROR, "reference overflow\n"); |
0da71265 MN |
3118 | return -1; |
3119 | } | |
3120 | } | |
3121 | } | |
3122 | ||
3123 | if(first_mb_in_slice == 0){ | |
3124 | fill_default_ref_list(h); | |
3125 | } | |
3126 | ||
3127 | decode_ref_pic_list_reordering(h); | |
3128 | ||
3129 | if( (h->pps.weighted_pred && (h->slice_type == P_TYPE || h->slice_type == SP_TYPE )) | |
3130 | || (h->pps.weighted_bipred_idc==1 && h->slice_type==B_TYPE ) ) | |
3131 | pred_weight_table(h); | |
3132 | ||
3133 | if(s->current_picture.reference) | |
3134 | decode_ref_pic_marking(h); | |
0da71265 | 3135 | |
e5017ab8 LA |
3136 | if( h->slice_type != I_TYPE && h->slice_type != SI_TYPE && h->pps.cabac ) |
3137 | h->cabac_init_idc = get_ue_golomb(&s->gb); | |
3138 | ||
3139 | h->last_qscale_diff = 0; | |
3140 | s->qscale = h->pps.init_qp + get_se_golomb(&s->gb); | |
3ebc7e04 MN |
3141 | if(s->qscale<0 || s->qscale>51){ |
3142 | av_log(s->avctx, AV_LOG_ERROR, "QP %d out of range\n", s->qscale); | |
3143 | return -1; | |
3144 | } | |
0da71265 MN |
3145 | //FIXME qscale / qp ... stuff |
3146 | if(h->slice_type == SP_TYPE){ | |
1df1df0b | 3147 | get_bits1(&s->gb); /* sp_for_switch_flag */ |
0da71265 MN |
3148 | } |
3149 | if(h->slice_type==SP_TYPE || h->slice_type == SI_TYPE){ | |
1df1df0b | 3150 | get_se_golomb(&s->gb); /* slice_qs_delta */ |
0da71265 MN |
3151 | } |
3152 | ||
53c05b1e | 3153 | h->deblocking_filter = 1; |
3ebc7e04 MN |
3154 | h->slice_alpha_c0_offset = 0; |
3155 | h->slice_beta_offset = 0; | |
0da71265 | 3156 | if( h->pps.deblocking_filter_parameters_present ) { |
53c05b1e MN |
3157 | h->deblocking_filter= get_ue_golomb(&s->gb); |
3158 | if(h->deblocking_filter < 2) | |
3159 | h->deblocking_filter^= 1; // 1<->0 | |
3160 | ||
3161 | if( h->deblocking_filter ) { | |
980a82b7 MN |
3162 | h->slice_alpha_c0_offset = get_se_golomb(&s->gb) << 1; |
3163 | h->slice_beta_offset = get_se_golomb(&s->gb) << 1; | |
0da71265 | 3164 | } |
980a82b7 | 3165 | } |
0da71265 MN |
3166 | |
3167 | #if 0 //FMO | |
3168 | if( h->pps.num_slice_groups > 1 && h->pps.mb_slice_group_map_type >= 3 && h->pps.mb_slice_group_map_type <= 5) | |
3169 | slice_group_change_cycle= get_bits(&s->gb, ?); | |
3170 | #endif | |
3171 | ||
3172 | if(s->avctx->debug&FF_DEBUG_PICT_INFO){ | |
9b879566 | 3173 | av_log(h->s.avctx, AV_LOG_DEBUG, "mb:%d %c pps:%d frame:%d poc:%d/%d ref:%d/%d qp:%d loop:%d\n", |
0da71265 | 3174 | first_mb_in_slice, |
d8085ea7 | 3175 | av_get_pict_type_char(h->slice_type), |
0da71265 MN |
3176 | pps_id, h->frame_num, |
3177 | s->current_picture_ptr->field_poc[0], s->current_picture_ptr->field_poc[1], | |
3178 | h->ref_count[0], h->ref_count[1], | |
3179 | s->qscale, | |
53c05b1e | 3180 | h->deblocking_filter |
0da71265 MN |
3181 | ); |
3182 | } | |
3183 | ||
3184 | return 0; | |
3185 | } | |
3186 | ||
3187 | /** | |
3188 | * | |
3189 | */ | |
3190 | static inline int get_level_prefix(GetBitContext *gb){ | |
3191 | unsigned int buf; | |
3192 | int log; | |
3193 | ||
3194 | OPEN_READER(re, gb); | |
3195 | UPDATE_CACHE(re, gb); | |
3196 | buf=GET_CACHE(re, gb); | |
3197 | ||
3198 | log= 32 - av_log2(buf); | |
3199 | #ifdef TRACE | |
3200 | print_bin(buf>>(32-log), log); | |
0fa8158d | 3201 | av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d lpr @%5d in %s get_level_prefix\n", buf>>(32-log), log, log-1, get_bits_count(gb), __FILE__); |
0da71265 MN |
3202 | #endif |
3203 | ||
3204 | LAST_SKIP_BITS(re, gb, log); | |
3205 | CLOSE_READER(re, gb); | |
3206 | ||
3207 | return log-1; | |
3208 | } | |
3209 | ||
3210 | /** | |
3211 | * decodes a residual block. | |
3212 | * @param n block index | |
3213 | * @param scantable scantable | |
3214 | * @param max_coeff number of coefficients in the block | |
3215 | * @return <0 if an error occured | |
3216 | */ | |
3217 | static int decode_residual(H264Context *h, GetBitContext *gb, DCTELEM *block, int n, const uint8_t *scantable, int qp, int max_coeff){ | |
3218 | MpegEncContext * const s = &h->s; | |
3219 | const uint16_t *qmul= dequant_coeff[qp]; | |
3220 | static const int coeff_token_table_index[17]= {0, 0, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3}; | |
3221 | int level[16], run[16]; | |
3222 | int suffix_length, zeros_left, coeff_num, coeff_token, total_coeff, i, trailing_ones; | |
3223 | ||
3224 | //FIXME put trailing_onex into the context | |
3225 | ||
3226 | if(n == CHROMA_DC_BLOCK_INDEX){ | |
3227 | coeff_token= get_vlc2(gb, chroma_dc_coeff_token_vlc.table, CHROMA_DC_COEFF_TOKEN_VLC_BITS, 1); | |
3228 | total_coeff= coeff_token>>2; | |
3229 | }else{ | |
3230 | if(n == LUMA_DC_BLOCK_INDEX){ | |
3231 | total_coeff= pred_non_zero_count(h, 0); | |
3232 | coeff_token= get_vlc2(gb, coeff_token_vlc[ coeff_token_table_index[total_coeff] ].table, COEFF_TOKEN_VLC_BITS, 2); | |
3233 | total_coeff= coeff_token>>2; | |
3234 | }else{ | |
3235 | total_coeff= pred_non_zero_count(h, n); | |
3236 | coeff_token= get_vlc2(gb, coeff_token_vlc[ coeff_token_table_index[total_coeff] ].table, COEFF_TOKEN_VLC_BITS, 2); | |
3237 | total_coeff= coeff_token>>2; | |
3238 | h->non_zero_count_cache[ scan8[n] ]= total_coeff; | |
3239 | } | |
3240 | } | |
3241 | ||
3242 | //FIXME set last_non_zero? | |
3243 | ||
3244 | if(total_coeff==0) | |
3245 | return 0; | |
3246 | ||
3247 | trailing_ones= coeff_token&3; | |
95c26348 | 3248 | tprintf("trailing:%d, total:%d\n", trailing_ones, total_coeff); |
0da71265 MN |
3249 | assert(total_coeff<=16); |
3250 | ||
3251 | for(i=0; i<trailing_ones; i++){ | |
3252 | level[i]= 1 - 2*get_bits1(gb); | |
3253 | } | |
3254 | ||
3255 | suffix_length= total_coeff > 10 && trailing_ones < 3; | |
3256 | ||
3257 | for(; i<total_coeff; i++){ | |
3258 | const int prefix= get_level_prefix(gb); | |
3259 | int level_code, mask; | |
3260 | ||
3261 | if(prefix<14){ //FIXME try to build a large unified VLC table for all this | |
3262 | if(suffix_length) | |
3263 | level_code= (prefix<<suffix_length) + get_bits(gb, suffix_length); //part | |
3264 | else | |
3265 | level_code= (prefix<<suffix_length); //part | |
3266 | }else if(prefix==14){ | |
3267 | if(suffix_length) | |
3268 | level_code= (prefix<<suffix_length) + get_bits(gb, suffix_length); //part | |
3269 | else | |
3270 | level_code= prefix + get_bits(gb, 4); //part | |
3271 | }else if(prefix==15){ | |
3272 | level_code= (prefix<<suffix_length) + get_bits(gb, 12); //part | |
3273 | if(suffix_length==0) level_code+=15; //FIXME doesnt make (much)sense | |
3274 | }else{ | |
9b879566 | 3275 | av_log(h->s.avctx, AV_LOG_ERROR, "prefix too large at %d %d\n", s->mb_x, s->mb_y); |
0da71265 MN |
3276 | return -1; |
3277 | } | |
3278 | ||
3279 | if(i==trailing_ones && i<3) level_code+= 2; //FIXME split first iteration | |
3280 | ||
3281 | mask= -(level_code&1); | |
3282 | level[i]= (((2+level_code)>>1) ^ mask) - mask; | |
3283 | ||
3284 | if(suffix_length==0) suffix_length=1; //FIXME split first iteration | |
3285 | ||
3286 | #if 1 | |
3287 | if(ABS(level[i]) > (3<<(suffix_length-1)) && suffix_length<6) suffix_length++; | |
3288 | #else | |
3289 | if((2+level_code)>>1) > (3<<(suffix_length-1)) && suffix_length<6) suffix_length++; | |
980a82b7 | 3290 | /* ? == prefix > 2 or sth */ |
0da71265 | 3291 | #endif |
95c26348 | 3292 | tprintf("level: %d suffix_length:%d\n", level[i], suffix_length); |
0da71265 MN |
3293 | } |
3294 | ||
3295 | if(total_coeff == max_coeff) | |
3296 | zeros_left=0; | |
3297 | else{ | |
3298 | if(n == CHROMA_DC_BLOCK_INDEX) | |
3299 | zeros_left= get_vlc2(gb, chroma_dc_total_zeros_vlc[ total_coeff-1 ].table, CHROMA_DC_TOTAL_ZEROS_VLC_BITS, 1); | |
3300 | else | |
3301 | zeros_left= get_vlc2(gb, total_zeros_vlc[ total_coeff-1 ].table, TOTAL_ZEROS_VLC_BITS, 1); | |
3302 | } | |
3303 | ||
3304 | for(i=0; i<total_coeff-1; i++){ | |
3305 | if(zeros_left <=0) | |
3306 | break; | |
3307 | else if(zeros_left < 7){ | |
3308 | run[i]= get_vlc2(gb, run_vlc[zeros_left-1].table, RUN_VLC_BITS, 1); | |
3309 | }else{ | |
3310 | run[i]= get_vlc2(gb, run7_vlc.table, RUN7_VLC_BITS, 2); | |
3311 | } | |
3312 | zeros_left -= run[i]; | |
3313 | } | |
3314 | ||
3315 | if(zeros_left<0){ | |
9b879566 | 3316 | av_log(h->s.avctx, AV_LOG_ERROR, "negative number of zero coeffs at %d %d\n", s->mb_x, s->mb_y); |
0da71265 MN |
3317 | return -1; |
3318 | } | |
3319 | ||
3320 | for(; i<total_coeff-1; i++){ | |
3321 | run[i]= 0; | |
3322 | } | |
3323 | ||
3324 | run[i]= zeros_left; | |
3325 | ||
3326 | coeff_num=-1; | |
3327 | if(n > 24){ | |
3328 | for(i=total_coeff-1; i>=0; i--){ //FIXME merge into rundecode? | |
3329 | int j; | |
3330 | ||
3331 | coeff_num += run[i] + 1; //FIXME add 1 earlier ? | |
3332 | j= scantable[ coeff_num ]; | |
3333 | ||
3334 | block[j]= level[i]; | |
3335 | } | |
3336 | }else{ | |
3337 | for(i=total_coeff-1; i>=0; i--){ //FIXME merge into rundecode? | |
3338 | int j; | |
3339 | ||
3340 | coeff_num += run[i] + 1; //FIXME add 1 earlier ? | |
3341 | j= scantable[ coeff_num ]; | |
3342 | ||
3343 | block[j]= level[i] * qmul[j]; | |
3344 | // printf("%d %d ", block[j], qmul[j]); | |
3345 | } | |
3346 | } | |
3347 | return 0; | |
3348 | } | |
3349 | ||
3350 | /** | |
3351 | * decodes a macroblock | |
3352 | * @returns 0 if ok, AC_ERROR / DC_ERROR / MV_ERROR if an error is noticed | |
3353 | */ | |
e5017ab8 | 3354 | static int decode_mb_cavlc(H264Context *h){ |
0da71265 | 3355 | MpegEncContext * const s = &h->s; |
7bc9090a | 3356 | const int mb_xy= s->mb_x + s->mb_y*s->mb_stride; |
1924f3ce | 3357 | int mb_type, partition_count, cbp; |
0da71265 | 3358 | |
f7a8c179 | 3359 | s->dsp.clear_blocks(h->mb); //FIXME avoid if allready clear (move after skip handlong? |
0da71265 | 3360 | |
95c26348 | 3361 | tprintf("pic:%d mb:%d/%d\n", h->frame_num, s->mb_x, s->mb_y); |
1df1df0b FB |
3362 | cbp = 0; /* avoid warning. FIXME: find a solution without slowing |
3363 | down the code */ | |
0da71265 MN |
3364 | if(h->slice_type != I_TYPE && h->slice_type != SI_TYPE){ |
3365 | if(s->mb_skip_run==-1) | |
3366 | s->mb_skip_run= get_ue_golomb(&s->gb); | |
3367 | ||
3368 | if (s->mb_skip_run--) { | |
af6e2fed | 3369 | int mx, my; |
0da71265 | 3370 | /* skip mb */ |
0da71265 MN |
3371 | //FIXME b frame |
3372 | mb_type= MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P1L0; | |
3373 | ||
53c05b1e | 3374 | memset(h->non_zero_count[mb_xy], 0, 16); |
0da71265 MN |
3375 | memset(h->non_zero_count_cache + 8, 0, 8*5); //FIXME ugly, remove pfui |
3376 | ||
3377 | if(h->sps.mb_aff && s->mb_skip_run==0 && (s->mb_y&1)==0){ | |
3378 | h->mb_field_decoding_flag= get_bits1(&s->gb); | |
3379 | } | |
3380 | ||
3381 | if(h->mb_field_decoding_flag) | |
3382 | mb_type|= MB_TYPE_INTERLACED; | |
3383 | ||
3384 | fill_caches(h, mb_type); //FIXME check what is needed and what not ... | |
3385 | pred_pskip_motion(h, &mx, &my); | |
3386 | fill_rectangle(&h->ref_cache[0][scan8[0]], 4, 4, 8, 0, 1); | |
377ec888 | 3387 | fill_rectangle( h->mv_cache[0][scan8[0]], 4, 4, 8, pack16to32(mx,my), 4); |
0da71265 MN |
3388 | write_back_motion(h, mb_type); |
3389 | ||
3390 | s->current_picture.mb_type[mb_xy]= mb_type; //FIXME SKIP type | |
980a82b7 | 3391 | s->current_picture.qscale_table[mb_xy]= s->qscale; |
0da71265 MN |
3392 | h->slice_table[ mb_xy ]= h->slice_num; |
3393 | ||
3394 | h->prev_mb_skiped= 1; | |
3395 | return 0; | |
3396 | } | |
3397 | } | |
3398 | if(h->sps.mb_aff /* && !field pic FIXME needed? */){ | |
3399 | if((s->mb_y&1)==0) | |
3400 | h->mb_field_decoding_flag = get_bits1(&s->gb); | |
3401 | }else | |
3402 | h->mb_field_decoding_flag=0; //FIXME som ed note ?! | |
3403 | ||
3404 | h->prev_mb_skiped= 0; | |
3405 | ||
3406 | mb_type= get_ue_golomb(&s->gb); | |
3407 | if(h->slice_type == B_TYPE){ | |
3408 | if(mb_type < 23){ | |
3409 | partition_count= b_mb_type_info[mb_type].partition_count; | |
3410 | mb_type= b_mb_type_info[mb_type].type; | |
3411 | }else{ | |
3412 | mb_type -= 23; | |
3413 | goto decode_intra_mb; | |
3414 | } | |
3415 | }else if(h->slice_type == P_TYPE /*|| h->slice_type == SP_TYPE */){ | |
3416 | if(mb_type < 5){ | |
3417 | partition_count= p_mb_type_info[mb_type].partition_count; | |
3418 | mb_type= p_mb_type_info[mb_type].type; | |
3419 | }else{ | |
3420 | mb_type -= 5; | |
3421 | goto decode_intra_mb; | |
3422 | } | |
3423 | }else{ | |
3424 | assert(h->slice_type == I_TYPE); | |
3425 | decode_intra_mb: | |
3426 | if(mb_type > 25){ | |
9b879566 | 3427 | av_log(h->s.avctx, AV_LOG_ERROR, "mb_type %d in %c slice to large at %d %d\n", mb_type, av_get_pict_type_char(h->slice_type), s->mb_x, s->mb_y); |
0da71265 MN |
3428 | return -1; |
3429 | } | |
3430 | partition_count=0; | |
3431 | cbp= i_mb_type_info[mb_type].cbp; | |
3432 | h->intra16x16_pred_mode= i_mb_type_info[mb_type].pred_mode; | |
3433 | mb_type= i_mb_type_info[mb_type].type; | |
3434 | } | |
3435 | ||
3436 | if(h->mb_field_decoding_flag) | |
3437 | mb_type |= MB_TYPE_INTERLACED; | |
3438 | ||
3439 | s->current_picture.mb_type[mb_xy]= mb_type; | |
3440 | h->slice_table[ mb_xy ]= h->slice_num; | |
3441 | ||
3442 | if(IS_INTRA_PCM(mb_type)){ | |
3443 | const uint8_t *ptr; | |
af6e2fed | 3444 | int x, y; |
0da71265 MN |
3445 | |
3446 | // we assume these blocks are very rare so we dont optimize it | |
3447 | align_get_bits(&s->gb); | |
3448 | ||
3449 | ptr= s->gb.buffer + get_bits_count(&s->gb); | |
3450 | ||
3451 | for(y=0; y<16; y++){ | |
3452 | const int index= 4*(y&3) + 64*(y>>2); | |
3453 | for(x=0; x<16; x++){ | |
3454 | h->mb[index + (x&3) + 16*(x>>2)]= *(ptr++); | |
3455 | } | |
3456 | } | |
3457 | for(y=0; y<8; y++){ | |
3458 | const int index= 256 + 4*(y&3) + 32*(y>>2); | |
3459 | for(x=0; x<8; x++){ | |
3460 | h->mb[index + (x&3) + 16*(x>>2)]= *(ptr++); | |
3461 | } | |
3462 | } | |
3463 | for(y=0; y<8; y++){ | |
3464 | const int index= 256 + 64 + 4*(y&3) + 32*(y>>2); | |
3465 | for(x=0; x<8; x++){ | |
3466 | h->mb[index + (x&3) + 16*(x>>2)]= *(ptr++); | |
3467 | } | |
3468 | } | |
3469 | ||
3470 | skip_bits(&s->gb, 384); //FIXME check /fix the bitstream readers | |
3471 | ||
53c05b1e MN |
3472 | //FIXME deblock filter, non_zero_count_cache init ... |
3473 | memset(h->non_zero_count[mb_xy], 16, 16); | |
980a82b7 | 3474 | s->current_picture.qscale_table[mb_xy]= s->qscale; |
0da71265 MN |
3475 | |
3476 | return 0; | |
3477 | } | |
3478 | ||
3479 | fill_caches(h, mb_type); | |
3480 | ||
3481 | //mb_pred | |
3482 | if(IS_INTRA(mb_type)){ | |
3483 | // init_top_left_availability(h); | |
3484 | if(IS_INTRA4x4(mb_type)){ | |
3485 | int i; | |
3486 | ||
3487 | // fill_intra4x4_pred_table(h); | |
3488 | for(i=0; i<16; i++){ | |
3489 | const int mode_coded= !get_bits1(&s->gb); | |
3490 | const int predicted_mode= pred_intra_mode(h, i); | |
3491 | int mode; | |
3492 | ||
3493 | if(mode_coded){ | |
3494 | const int rem_mode= get_bits(&s->gb, 3); | |
3495 | if(rem_mode<predicted_mode) | |
3496 | mode= rem_mode; | |
3497 | else | |
3498 | mode= rem_mode + 1; | |
3499 | }else{ | |
3500 | mode= predicted_mode; | |
3501 | } | |
3502 | ||
3503 | h->intra4x4_pred_mode_cache[ scan8[i] ] = mode; | |
3504 | } | |
3505 | write_back_intra_pred_mode(h); | |
3506 | if( check_intra4x4_pred_mode(h) < 0) | |
3507 | return -1; | |
3508 | }else{ | |
3509 | h->intra16x16_pred_mode= check_intra_pred_mode(h, h->intra16x16_pred_mode); | |
3510 | if(h->intra16x16_pred_mode < 0) | |
3511 | return -1; | |
3512 | } | |
3513 | h->chroma_pred_mode= get_ue_golomb(&s->gb); | |
3514 | ||
3515 | h->chroma_pred_mode= check_intra_pred_mode(h, h->chroma_pred_mode); | |
3516 | if(h->chroma_pred_mode < 0) | |
3517 | return -1; | |
3518 | }else if(partition_count==4){ | |
3519 | int i, j, sub_partition_count[4], list, ref[2][4]; | |
3520 | ||
3521 | if(h->slice_type == B_TYPE){ | |
3522 | for(i=0; i<4; i++){ | |
3523 | h->sub_mb_type[i]= get_ue_golomb(&s->gb); | |
3524 | if(h->sub_mb_type[i] >=13){ | |
9b879566 | 3525 | av_log(h->s.avctx, AV_LOG_ERROR, "B sub_mb_type %d out of range at %d %d\n", h->sub_mb_type[i], s->mb_x, s->mb_y); |
0da71265 MN |
3526 | return -1; |
3527 | } | |
3528 | sub_partition_count[i]= b_sub_mb_type_info[ h->sub_mb_type[i] ].partition_count; | |
3529 | h->sub_mb_type[i]= b_sub_mb_type_info[ h->sub_mb_type[i] ].type; | |
3530 | } | |
3531 | }else{ | |
3532 | assert(h->slice_type == P_TYPE || h->slice_type == SP_TYPE); //FIXME SP correct ? | |
3533 | for(i=0; i<4; i++){ | |
3534 | h->sub_mb_type[i]= get_ue_golomb(&s->gb); | |
3535 | if(h->sub_mb_type[i] >=4){ | |
9b879566 | 3536 | av_log(h->s.avctx, AV_LOG_ERROR, "P sub_mb_type %d out of range at %d %d\n", h->sub_mb_type[i], s->mb_x, s->mb_y); |
0da71265 MN |
3537 | return -1; |
3538 | } | |
3539 | sub_partition_count[i]= p_sub_mb_type_info[ h->sub_mb_type[i] ].partition_count; | |
3540 | h->sub_mb_type[i]= p_sub_mb_type_info[ h->sub_mb_type[i] ].type; | |
3541 | } | |
3542 | } | |
3543 | ||
3544 | for(list=0; list<2; list++){ | |
3545 | const int ref_count= IS_REF0(mb_type) ? 1 : h->ref_count[list]; | |
3546 | if(ref_count == 0) continue; | |
3547 | for(i=0; i<4; i++){ | |
3548 | if(IS_DIR(h->sub_mb_type[i], 0, list) && !IS_DIRECT(h->sub_mb_type[i])){ | |
3549 | ref[list][i] = get_te0_golomb(&s->gb, ref_count); //FIXME init to 0 before and skip? | |
3550 | }else{ | |
3551 | //FIXME | |
3552 | ref[list][i] = -1; | |
3553 | } | |
3554 | } | |
3555 | } | |
3556 | ||
3557 | for(list=0; list<2; list++){ | |
3558 | const int ref_count= IS_REF0(mb_type) ? 1 : h->ref_count[list]; | |
3559 | if(ref_count == 0) continue; | |
3560 | ||
3561 | for(i=0; i<4; i++){ | |
3562 | h->ref_cache[list][ scan8[4*i] ]=h->ref_cache[list][ scan8[4*i]+1 ]= | |
3563 | h->ref_cache[list][ scan8[4*i]+8 ]=h->ref_cache[list][ scan8[4*i]+9 ]= ref[list][i]; | |
3564 | ||
3565 | if(IS_DIR(h->sub_mb_type[i], 0, list) && !IS_DIRECT(h->sub_mb_type[i])){ | |
3566 | const int sub_mb_type= h->sub_mb_type[i]; | |
3567 | const int block_width= (sub_mb_type & (MB_TYPE_16x16|MB_TYPE_16x8)) ? 2 : 1; | |
3568 | for(j=0; j<sub_partition_count[i]; j++){ | |
3569 | int mx, my; | |
3570 | const int index= 4*i + block_width*j; | |
3571 | int16_t (* mv_cache)[2]= &h->mv_cache[list][ scan8[index] ]; | |
3572 | pred_motion(h, index, block_width, list, h->ref_cache[list][ scan8[index] ], &mx, &my); | |
3573 | mx += get_se_golomb(&s->gb); | |
3574 | my += get_se_golomb(&s->gb); | |
95c26348 MN |
3575 | tprintf("final mv:%d %d\n", mx, my); |
3576 | ||
0da71265 MN |
3577 | if(IS_SUB_8X8(sub_mb_type)){ |
3578 | mv_cache[ 0 ][0]= mv_cache[ 1 ][0]= | |
3579 | mv_cache[ 8 ][0]= mv_cache[ 9 ][0]= mx; | |
3580 | mv_cache[ 0 ][1]= mv_cache[ 1 ][1]= | |
3581 | mv_cache[ 8 ][1]= mv_cache[ 9 ][1]= my; | |
3582 | }else if(IS_SUB_8X4(sub_mb_type)){ | |
3583 | mv_cache[ 0 ][0]= mv_cache[ 1 ][0]= mx; | |
3584 | mv_cache[ 0 ][1]= mv_cache[ 1 ][1]= my; | |
3585 | }else if(IS_SUB_4X8(sub_mb_type)){ | |
3586 | mv_cache[ 0 ][0]= mv_cache[ 8 ][0]= mx; | |
3587 | mv_cache[ 0 ][1]= mv_cache[ 8 ][1]= my; | |
3588 | }else{ | |
3589 | assert(IS_SUB_4X4(sub_mb_type)); | |
3590 | mv_cache[ 0 ][0]= mx; | |
3591 | mv_cache[ 0 ][1]= my; | |
3592 | } | |
3593 | } | |
3594 | }else{ | |
3595 | uint32_t *p= (uint32_t *)&h->mv_cache[list][ scan8[4*i] ][0]; | |
3596 | p[0] = p[1]= | |
3597 | p[8] = p[9]= 0; | |
3598 | } | |
3599 | } | |
3600 | } | |
3601 | }else if(!IS_DIRECT(mb_type)){ | |
3602 | int list, mx, my, i; | |
3603 | //FIXME we should set ref_idx_l? to 0 if we use that later ... | |
3604 | if(IS_16X16(mb_type)){ | |
3605 | for(list=0; list<2; list++){ | |
3606 | if(h->ref_count[0]>0){ | |
3607 | if(IS_DIR(mb_type, 0, list)){ | |
3608 | const int val= get_te0_golomb(&s->gb, h->ref_count[list]); | |
3609 | fill_rectangle(&h->ref_cache[list][ scan8[0] ], 4, 4, 8, val, 1); | |
3610 | } | |
3611 | } | |
3612 | } | |
3613 | for(list=0; list<2; list++){ | |
3614 | if(IS_DIR(mb_type, 0, list)){ | |
3615 | pred_motion(h, 0, 4, list, h->ref_cache[list][ scan8[0] ], &mx, &my); | |
3616 | mx += get_se_golomb(&s->gb); | |
3617 | my += get_se_golomb(&s->gb); | |
95c26348 MN |
3618 | tprintf("final mv:%d %d\n", mx, my); |
3619 | ||
377ec888 | 3620 | fill_rectangle(h->mv_cache[list][ scan8[0] ], 4, 4, 8, pack16to32(mx,my), 4); |
0da71265 MN |
3621 | } |
3622 | } | |
3623 | } | |
3624 | else if(IS_16X8(mb_type)){ | |
3625 | for(list=0; list<2; list++){ | |
3626 | if(h->ref_count[list]>0){ | |
3627 | for(i=0; i<2; i++){ | |
3628 | if(IS_DIR(mb_type, i, list)){ | |
3629 | const int val= get_te0_golomb(&s->gb, h->ref_count[list]); | |
3630 | fill_rectangle(&h->ref_cache[list][ scan8[0] + 16*i ], 4, 2, 8, val, 1); | |
3631 | } | |
3632 | } | |
3633 | } | |
3634 | } | |
3635 | for(list=0; list<2; list++){ | |
3636 | for(i=0; i<2; i++){ | |
3637 | if(IS_DIR(mb_type, i, list)){ | |
3638 | pred_16x8_motion(h, 8*i, list, h->ref_cache[list][scan8[0] + 16*i], &mx, &my); | |
3639 | mx += get_se_golomb(&s->gb); | |
3640 | my += get_se_golomb(&s->gb); | |
95c26348 MN |
3641 | tprintf("final mv:%d %d\n", mx, my); |
3642 | ||
377ec888 | 3643 | fill_rectangle(h->mv_cache[list][ scan8[0] + 16*i ], 4, 2, 8, pack16to32(mx,my), 4); |
0da71265 MN |
3644 | } |
3645 | } | |
3646 | } | |
3647 | }else{ | |
3648 | assert(IS_8X16(mb_type)); | |
3649 | for(list=0; list<2; list++){ | |
3650 | if(h->ref_count[list]>0){ | |
3651 | for(i=0; i<2; i++){ | |
3652 | if(IS_DIR(mb_type, i, list)){ //FIXME optimize | |
3653 | const int val= get_te0_golomb(&s->gb, h->ref_count[list]); | |
3654 | fill_rectangle(&h->ref_cache[list][ scan8[0] + 2*i ], 2, 4, 8, val, 1); | |
3655 | } | |
3656 | } | |
3657 | } | |
3658 | } | |
3659 | for(list=0; list<2; list++){ | |
3660 | for(i=0; i<2; i++){ | |
3661 | if(IS_DIR(mb_type, i, list)){ | |
3662 | pred_8x16_motion(h, i*4, list, h->ref_cache[list][ scan8[0] + 2*i ], &mx, &my); | |
3663 | mx += get_se_golomb(&s->gb); | |
3664 | my += get_se_golomb(&s->gb); | |
95c26348 MN |
3665 | tprintf("final mv:%d %d\n", mx, my); |
3666 | ||
377ec888 | 3667 | fill_rectangle(h->mv_cache[list][ scan8[0] + 2*i ], 2, 4, 8, pack16to32(mx,my), 4); |
0da71265 MN |
3668 | } |
3669 | } | |
3670 | } | |
3671 | } | |
3672 | } | |
3673 | ||
3674 | if(IS_INTER(mb_type)) | |
3675 | write_back_motion(h, mb_type); | |
3676 | ||
3677 | if(!IS_INTRA16x16(mb_type)){ | |
3678 | cbp= get_ue_golomb(&s->gb); | |
3679 | if(cbp > 47){ | |
9b879566 | 3680 | av_log(h->s.avctx, AV_LOG_ERROR, "cbp too large (%d) at %d %d\n", cbp, s->mb_x, s->mb_y); |
0da71265 MN |
3681 | return -1; |
3682 | } | |
3683 | ||
3684 | if(IS_INTRA4x4(mb_type)) | |
3685 | cbp= golomb_to_intra4x4_cbp[cbp]; | |
3686 | else | |
3687 | cbp= golomb_to_inter_cbp[cbp]; | |
3688 | } | |
3689 | ||
3690 | if(cbp || IS_INTRA16x16(mb_type)){ | |
3691 | int i8x8, i4x4, chroma_idx; | |
3692 | int chroma_qp, dquant; | |
3693 | GetBitContext *gb= IS_INTRA(mb_type) ? h->intra_gb_ptr : h->inter_gb_ptr; | |
3694 | const uint8_t *scan, *dc_scan; | |
3695 | ||
3696 | // fill_non_zero_count_cache(h); | |
3697 | ||
3698 | if(IS_INTERLACED(mb_type)){ | |
3699 | scan= field_scan; | |
3700 | dc_scan= luma_dc_field_scan; | |
3701 | }else{ | |
3702 | scan= zigzag_scan; | |
3703 | dc_scan= luma_dc_zigzag_scan; | |
3704 | } | |
3705 | ||
3706 | dquant= get_se_golomb(&s->gb); | |
3707 | ||
3708 | if( dquant > 25 || dquant < -26 ){ | |
9b879566 | 3709 | av_log(h->s.avctx, AV_LOG_ERROR, "dquant out of range (%d) at %d %d\n", dquant, s->mb_x, s->mb_y); |
0da71265 MN |
3710 | return -1; |
3711 | } | |
3712 | ||
3713 | s->qscale += dquant; | |
3714 | if(((unsigned)s->qscale) > 51){ | |
3715 | if(s->qscale<0) s->qscale+= 52; | |
3716 | else s->qscale-= 52; | |
3717 | } | |
3718 | ||
3719 | h->chroma_qp= chroma_qp= get_chroma_qp(h, s->qscale); | |
3720 | if(IS_INTRA16x16(mb_type)){ | |
3721 | if( decode_residual(h, h->intra_gb_ptr, h->mb, LUMA_DC_BLOCK_INDEX, dc_scan, s->qscale, 16) < 0){ | |
3722 | return -1; //FIXME continue if partotioned and other retirn -1 too | |
3723 | } | |
3724 | ||
3725 | assert((cbp&15) == 0 || (cbp&15) == 15); | |
3726 | ||
3727 | if(cbp&15){ | |
3728 | for(i8x8=0; i8x8<4; i8x8++){ | |
3729 | for(i4x4=0; i4x4<4; i4x4++){ | |
3730 | const int index= i4x4 + 4*i8x8; | |
3731 | if( decode_residual(h, h->intra_gb_ptr, h->mb + 16*index, index, scan + 1, s->qscale, 15) < 0 ){ | |
3732 | return -1; | |
3733 | } | |
3734 | } | |
3735 | } | |
3736 | }else{ | |
68ca24e6 | 3737 | fill_rectangle(&h->non_zero_count_cache[scan8[0]], 4, 4, 8, 0, 1); |
0da71265 MN |
3738 | } |
3739 | }else{ | |
3740 | for(i8x8=0; i8x8<4; i8x8++){ | |
3741 | if(cbp & (1<<i8x8)){ | |
3742 | for(i4x4=0; i4x4<4; i4x4++){ | |
3743 | const int index= i4x4 + 4*i8x8; | |
3744 | ||
3745 | if( decode_residual(h, gb, h->mb + 16*index, index, scan, s->qscale, 16) <0 ){ | |
3746 | return -1; | |
3747 | } | |
3748 | } | |
3749 | }else{ | |
3750 | uint8_t * const nnz= &h->non_zero_count_cache[ scan8[4*i8x8] ]; | |
3751 | nnz[0] = nnz[1] = nnz[8] = nnz[9] = 0; | |
3752 | } | |
3753 | } | |
3754 | } | |
3755 | ||
3756 | if(cbp&0x30){ | |
3757 | for(chroma_idx=0; chroma_idx<2; chroma_idx++) | |
3758 | if( decode_residual(h, gb, h->mb + 256 + 16*4*chroma_idx, CHROMA_DC_BLOCK_INDEX, chroma_dc_scan, chroma_qp, 4) < 0){ | |
3759 | return -1; | |
3760 | } | |
3761 | } | |
3762 | ||
3763 | if(cbp&0x20){ | |
3764 | for(chroma_idx=0; chroma_idx<2; chroma_idx++){ | |
3765 | for(i4x4=0; i4x4<4; i4x4++){ | |
3766 | const int index= 16 + 4*chroma_idx + i4x4; | |
3767 | if( decode_residual(h, gb, h->mb + 16*index, index, scan + 1, chroma_qp, 15) < 0){ | |
3768 | return -1; | |
3769 | } | |
3770 | } | |
3771 | } | |
3772 | }else{ | |
3773 | uint8_t * const nnz= &h->non_zero_count_cache[0]; | |
3774 | nnz[ scan8[16]+0 ] = nnz[ scan8[16]+1 ] =nnz[ scan8[16]+8 ] =nnz[ scan8[16]+9 ] = | |
3775 | nnz[ scan8[20]+0 ] = nnz[ scan8[20]+1 ] =nnz[ scan8[20]+8 ] =nnz[ scan8[20]+9 ] = 0; | |
3776 | } | |
3777 | }else{ | |
53c05b1e MN |
3778 | uint8_t * const nnz= &h->non_zero_count_cache[0]; |
3779 | fill_rectangle(&nnz[scan8[0]], 4, 4, 8, 0, 1); | |
3780 | nnz[ scan8[16]+0 ] = nnz[ scan8[16]+1 ] =nnz[ scan8[16]+8 ] =nnz[ scan8[16]+9 ] = | |
3781 | nnz[ scan8[20]+0 ] = nnz[ scan8[20]+1 ] =nnz[ scan8[20]+8 ] =nnz[ scan8[20]+9 ] = 0; | |
0da71265 | 3782 | } |
980a82b7 | 3783 | s->current_picture.qscale_table[mb_xy]= s->qscale; |
0da71265 MN |
3784 | write_back_non_zero_count(h); |
3785 | ||
3786 | return 0; | |
3787 | } | |
3788 | ||
e5017ab8 LA |
3789 | static int decode_cabac_mb_type( H264Context *h ) { |
3790 | MpegEncContext * const s = &h->s; | |
3791 | ||
3792 | if( h->slice_type == I_TYPE ) { | |
3793 | const int mb_xy= s->mb_x + s->mb_y*s->mb_stride; | |
3794 | int ctx = 0; | |
3795 | int mb_type; | |
3796 | ||
3797 | if( s->mb_x > 0 && !IS_INTRA4x4( s->current_picture.mb_type[mb_xy-1] ) ) | |
3798 | ctx++; | |
3799 | if( s->mb_y > 0 && !IS_INTRA4x4( s->current_picture.mb_type[mb_xy-s->mb_stride] ) ) | |
3800 | ctx++; | |
3801 | ||
3802 | if( get_cabac( &h->cabac, &h->cabac_state[3+ctx] ) == 0 ) | |
3803 | return 0; /* I4x4 */ | |
3804 | ||
3805 | if( get_cabac_terminate( &h->cabac ) ) | |
3806 | return 25; /* PCM */ | |
3807 | ||
3808 | mb_type = 1; /* I16x16 */ | |
3809 | if( get_cabac( &h->cabac, &h->cabac_state[3+3] ) ) | |
3810 | mb_type += 12; /* cbp_luma != 0 */ | |
3811 | ||