Mercurial > libavcodec.hg
annotate h264.c @ 2441:358813ec4ca2 libavcodec
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
author | michael |
---|---|
date | Wed, 19 Jan 2005 17:35:51 +0000 |
parents | cf97353f94c6 |
children | 0237bb5ca0f0 |
rev | line source |
---|---|
1168 | 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 | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
34 #include "cabac.h" |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
35 |
1168 | 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; | |
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 | |
1371 | 72 int gaps_in_frame_num_allowed_flag; |
1168 | 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; | |
1371 | 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 | |
1168 | 83 int vui_parameters_present_flag; |
1548 | 84 AVRational sar; |
2174
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
85 int timing_info_present_flag; |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
86 uint32_t num_units_in_tick; |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
87 uint32_t time_scale; |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
88 int fixed_frame_rate_flag; |
1168 | 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 | |
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 | |
2227 | 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 | |
1168 | 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; | |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
178 uint8_t (*top_border)[16+2*8]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
179 uint8_t left_border[17+2*9]; |
1168 | 180 |
181 /** | |
182 * non zero coeff count cache. | |
183 * is 64 if not available. | |
184 */ | |
185 uint8_t non_zero_count_cache[6*8]; | |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
186 uint8_t (*non_zero_count)[16]; |
1168 | 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; | |
2395 | 206 int b_stride; //FIXME use s->b4_stride |
1168 | 207 int b8_stride; |
208 | |
1234 | 209 int halfpel_flag; |
210 int thirdpel_flag; | |
211 | |
1319 | 212 int unknown_svq3_flag; |
213 int next_slice_index; | |
214 | |
1168 | 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 | |
2415 | 258 int use_weight; |
259 int use_weight_chroma; | |
1168 | 260 int luma_log2_weight_denom; |
261 int chroma_log2_weight_denom; | |
262 int luma_weight[2][16]; | |
263 int luma_offset[2][16]; | |
264 int chroma_weight[2][16][2]; | |
265 int chroma_offset[2][16][2]; | |
2415 | 266 int implicit_weight[16][16]; |
1168 | 267 |
268 //deblock | |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
269 int deblocking_filter; ///< disable_deblocking_filter_idc with 1<->0 |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
270 int slice_alpha_c0_offset; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
271 int slice_beta_offset; |
1168 | 272 |
273 int redundant_pic_count; | |
274 | |
275 int direct_spatial_mv_pred; | |
2396 | 276 int dist_scale_factor[16]; |
1168 | 277 |
278 /** | |
279 * num_ref_idx_l0/1_active_minus1 + 1 | |
280 */ | |
281 int ref_count[2];// FIXME split for AFF | |
282 Picture *short_ref[16]; | |
283 Picture *long_ref[16]; | |
284 Picture default_ref_list[2][32]; | |
285 Picture ref_list[2][32]; //FIXME size? | |
286 Picture field_ref_list[2][32]; //FIXME size? | |
2409 | 287 Picture *delayed_pic[16]; //FIXME size? |
1168 | 288 |
289 /** | |
290 * memory management control operations buffer. | |
291 */ | |
292 MMCO mmco[MAX_MMCO_COUNT]; | |
293 int mmco_index; | |
294 | |
295 int long_ref_count; ///< number of actual long term references | |
296 int short_ref_count; ///< number of actual short term references | |
297 | |
298 //data partitioning | |
299 GetBitContext intra_gb; | |
300 GetBitContext inter_gb; | |
301 GetBitContext *intra_gb_ptr; | |
302 GetBitContext *inter_gb_ptr; | |
303 | |
304 DCTELEM mb[16*24] __align8; | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
305 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
306 /** |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
307 * Cabac |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
308 */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
309 CABACContext cabac; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
310 uint8_t cabac_state[399]; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
311 int cabac_init_idc; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
312 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
313 /* 0x100 -> non null luma_dc, 0x80/0x40 -> non null chroma_dc (cb/cr), 0x?0 -> chroma_cbp(0,1,2), 0x0? luma_cbp */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
314 uint16_t *cbp_table; |
2314 | 315 int top_cbp; |
316 int left_cbp; | |
1956
0eb2947f56f6
h264 hurry up fix and a tiny cabac clean patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1935
diff
changeset
|
317 /* chroma_pred_mode for i4x4 or i16x16, else 0 */ |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
318 uint8_t *chroma_pred_mode_table; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
319 int last_qscale_diff; |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
320 int16_t (*mvd_table[2])[2]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
321 int16_t mvd_cache[2][5*8][2]; |
2396 | 322 uint8_t *direct_table; |
323 uint8_t direct_cache[5*8]; | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
324 |
1168 | 325 }H264Context; |
326 | |
327 static VLC coeff_token_vlc[4]; | |
328 static VLC chroma_dc_coeff_token_vlc; | |
329 | |
330 static VLC total_zeros_vlc[15]; | |
331 static VLC chroma_dc_total_zeros_vlc[3]; | |
332 | |
333 static VLC run_vlc[6]; | |
334 static VLC run7_vlc; | |
335 | |
1234 | 336 static void svq3_luma_dc_dequant_idct_c(DCTELEM *block, int qp); |
337 static void svq3_add_idct_c(uint8_t *dst, DCTELEM *block, int stride, int qp, int dc); | |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
338 static void filter_mb( H264Context *h, int mb_x, int mb_y, uint8_t *img_y, uint8_t *img_cb, uint8_t *img_cr); |
1234 | 339 |
1269 | 340 static inline uint32_t pack16to32(int a, int b){ |
341 #ifdef WORDS_BIGENDIAN | |
342 return (b&0xFFFF) + (a<<16); | |
343 #else | |
344 return (a&0xFFFF) + (b<<16); | |
345 #endif | |
346 } | |
347 | |
1168 | 348 /** |
349 * fill a rectangle. | |
2392 | 350 * @param h height of the rectangle, should be a constant |
351 * @param w width of the rectangle, should be a constant | |
1168 | 352 * @param size the size of val (1 or 4), should be a constant |
353 */ | |
1187 | 354 static inline void fill_rectangle(void *vp, int w, int h, int stride, uint32_t val, int size){ //FIXME ensure this IS inlined |
355 uint8_t *p= (uint8_t*)vp; | |
1168 | 356 assert(size==1 || size==4); |
357 | |
358 w *= size; | |
359 stride *= size; | |
360 | |
361 //FIXME check what gcc generates for 64 bit on x86 and possible write a 32 bit ver of it | |
362 if(w==2 && h==2){ | |
363 *(uint16_t*)(p + 0)= | |
364 *(uint16_t*)(p + stride)= size==4 ? val : val*0x0101; | |
365 }else if(w==2 && h==4){ | |
366 *(uint16_t*)(p + 0*stride)= | |
367 *(uint16_t*)(p + 1*stride)= | |
368 *(uint16_t*)(p + 2*stride)= | |
369 *(uint16_t*)(p + 3*stride)= size==4 ? val : val*0x0101; | |
1252 | 370 }else if(w==4 && h==1){ |
371 *(uint32_t*)(p + 0*stride)= size==4 ? val : val*0x01010101; | |
1168 | 372 }else if(w==4 && h==2){ |
373 *(uint32_t*)(p + 0*stride)= | |
374 *(uint32_t*)(p + 1*stride)= size==4 ? val : val*0x01010101; | |
375 }else if(w==4 && h==4){ | |
376 *(uint32_t*)(p + 0*stride)= | |
377 *(uint32_t*)(p + 1*stride)= | |
378 *(uint32_t*)(p + 2*stride)= | |
379 *(uint32_t*)(p + 3*stride)= size==4 ? val : val*0x01010101; | |
380 }else if(w==8 && h==1){ | |
381 *(uint32_t*)(p + 0)= | |
382 *(uint32_t*)(p + 4)= size==4 ? val : val*0x01010101; | |
383 }else if(w==8 && h==2){ | |
384 *(uint32_t*)(p + 0 + 0*stride)= | |
385 *(uint32_t*)(p + 4 + 0*stride)= | |
386 *(uint32_t*)(p + 0 + 1*stride)= | |
387 *(uint32_t*)(p + 4 + 1*stride)= size==4 ? val : val*0x01010101; | |
388 }else if(w==8 && h==4){ | |
389 *(uint64_t*)(p + 0*stride)= | |
390 *(uint64_t*)(p + 1*stride)= | |
391 *(uint64_t*)(p + 2*stride)= | |
392 *(uint64_t*)(p + 3*stride)= size==4 ? val*0x0100000001ULL : val*0x0101010101010101ULL; | |
393 }else if(w==16 && h==2){ | |
394 *(uint64_t*)(p + 0+0*stride)= | |
395 *(uint64_t*)(p + 8+0*stride)= | |
396 *(uint64_t*)(p + 0+1*stride)= | |
397 *(uint64_t*)(p + 8+1*stride)= size==4 ? val*0x0100000001ULL : val*0x0101010101010101ULL; | |
398 }else if(w==16 && h==4){ | |
399 *(uint64_t*)(p + 0+0*stride)= | |
400 *(uint64_t*)(p + 8+0*stride)= | |
401 *(uint64_t*)(p + 0+1*stride)= | |
402 *(uint64_t*)(p + 8+1*stride)= | |
403 *(uint64_t*)(p + 0+2*stride)= | |
404 *(uint64_t*)(p + 8+2*stride)= | |
405 *(uint64_t*)(p + 0+3*stride)= | |
406 *(uint64_t*)(p + 8+3*stride)= size==4 ? val*0x0100000001ULL : val*0x0101010101010101ULL; | |
407 }else | |
408 assert(0); | |
409 } | |
410 | |
411 static inline void fill_caches(H264Context *h, int mb_type){ | |
412 MpegEncContext * const s = &h->s; | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1174
diff
changeset
|
413 const int mb_xy= s->mb_x + s->mb_y*s->mb_stride; |
1168 | 414 int topleft_xy, top_xy, topright_xy, left_xy[2]; |
415 int topleft_type, top_type, topright_type, left_type[2]; | |
416 int left_block[4]; | |
417 int i; | |
418 | |
419 //wow what a mess, why didnt they simplify the interlacing&intra stuff, i cant imagine that these complex rules are worth it | |
420 | |
421 if(h->sps.mb_aff){ | |
422 //FIXME | |
1453 | 423 topleft_xy = 0; /* avoid warning */ |
424 top_xy = 0; /* avoid warning */ | |
425 topright_xy = 0; /* avoid warning */ | |
1168 | 426 }else{ |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1174
diff
changeset
|
427 topleft_xy = mb_xy-1 - s->mb_stride; |
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1174
diff
changeset
|
428 top_xy = mb_xy - s->mb_stride; |
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1174
diff
changeset
|
429 topright_xy= mb_xy+1 - s->mb_stride; |
1168 | 430 left_xy[0] = mb_xy-1; |
431 left_xy[1] = mb_xy-1; | |
432 left_block[0]= 0; | |
433 left_block[1]= 1; | |
434 left_block[2]= 2; | |
435 left_block[3]= 3; | |
436 } | |
437 | |
438 topleft_type = h->slice_table[topleft_xy ] == h->slice_num ? s->current_picture.mb_type[topleft_xy] : 0; | |
439 top_type = h->slice_table[top_xy ] == h->slice_num ? s->current_picture.mb_type[top_xy] : 0; | |
440 topright_type= h->slice_table[topright_xy] == h->slice_num ? s->current_picture.mb_type[topright_xy]: 0; | |
441 left_type[0] = h->slice_table[left_xy[0] ] == h->slice_num ? s->current_picture.mb_type[left_xy[0]] : 0; | |
442 left_type[1] = h->slice_table[left_xy[1] ] == h->slice_num ? s->current_picture.mb_type[left_xy[1]] : 0; | |
443 | |
444 if(IS_INTRA(mb_type)){ | |
445 h->topleft_samples_available= | |
446 h->top_samples_available= | |
447 h->left_samples_available= 0xFFFF; | |
448 h->topright_samples_available= 0xEEEA; | |
449 | |
450 if(!IS_INTRA(top_type) && (top_type==0 || h->pps.constrained_intra_pred)){ | |
451 h->topleft_samples_available= 0xB3FF; | |
452 h->top_samples_available= 0x33FF; | |
453 h->topright_samples_available= 0x26EA; | |
454 } | |
455 for(i=0; i<2; i++){ | |
456 if(!IS_INTRA(left_type[i]) && (left_type[i]==0 || h->pps.constrained_intra_pred)){ | |
457 h->topleft_samples_available&= 0xDF5F; | |
458 h->left_samples_available&= 0x5F5F; | |
459 } | |
460 } | |
461 | |
462 if(!IS_INTRA(topleft_type) && (topleft_type==0 || h->pps.constrained_intra_pred)) | |
463 h->topleft_samples_available&= 0x7FFF; | |
464 | |
465 if(!IS_INTRA(topright_type) && (topright_type==0 || h->pps.constrained_intra_pred)) | |
466 h->topright_samples_available&= 0xFBFF; | |
467 | |
468 if(IS_INTRA4x4(mb_type)){ | |
469 if(IS_INTRA4x4(top_type)){ | |
470 h->intra4x4_pred_mode_cache[4+8*0]= h->intra4x4_pred_mode[top_xy][4]; | |
471 h->intra4x4_pred_mode_cache[5+8*0]= h->intra4x4_pred_mode[top_xy][5]; | |
472 h->intra4x4_pred_mode_cache[6+8*0]= h->intra4x4_pred_mode[top_xy][6]; | |
473 h->intra4x4_pred_mode_cache[7+8*0]= h->intra4x4_pred_mode[top_xy][3]; | |
474 }else{ | |
475 int pred; | |
476 if(IS_INTRA16x16(top_type) || (IS_INTER(top_type) && !h->pps.constrained_intra_pred)) | |
477 pred= 2; | |
478 else{ | |
479 pred= -1; | |
480 } | |
481 h->intra4x4_pred_mode_cache[4+8*0]= | |
482 h->intra4x4_pred_mode_cache[5+8*0]= | |
483 h->intra4x4_pred_mode_cache[6+8*0]= | |
484 h->intra4x4_pred_mode_cache[7+8*0]= pred; | |
485 } | |
486 for(i=0; i<2; i++){ | |
487 if(IS_INTRA4x4(left_type[i])){ | |
488 h->intra4x4_pred_mode_cache[3+8*1 + 2*8*i]= h->intra4x4_pred_mode[left_xy[i]][left_block[0+2*i]]; | |
489 h->intra4x4_pred_mode_cache[3+8*2 + 2*8*i]= h->intra4x4_pred_mode[left_xy[i]][left_block[1+2*i]]; | |
490 }else{ | |
491 int pred; | |
492 if(IS_INTRA16x16(left_type[i]) || (IS_INTER(left_type[i]) && !h->pps.constrained_intra_pred)) | |
493 pred= 2; | |
494 else{ | |
495 pred= -1; | |
496 } | |
497 h->intra4x4_pred_mode_cache[3+8*1 + 2*8*i]= | |
498 h->intra4x4_pred_mode_cache[3+8*2 + 2*8*i]= pred; | |
499 } | |
500 } | |
501 } | |
502 } | |
503 | |
504 | |
505 /* | |
506 0 . T T. T T T T | |
507 1 L . .L . . . . | |
508 2 L . .L . . . . | |
509 3 . T TL . . . . | |
510 4 L . .L . . . . | |
511 5 L . .. . . . . | |
512 */ | |
513 //FIXME constraint_intra_pred & partitioning & nnz (lets hope this is just a typo in the spec) | |
514 if(top_type){ | |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
515 h->non_zero_count_cache[4+8*0]= h->non_zero_count[top_xy][0]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
516 h->non_zero_count_cache[5+8*0]= h->non_zero_count[top_xy][1]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
517 h->non_zero_count_cache[6+8*0]= h->non_zero_count[top_xy][2]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
518 h->non_zero_count_cache[7+8*0]= h->non_zero_count[top_xy][3]; |
1168 | 519 |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
520 h->non_zero_count_cache[1+8*0]= h->non_zero_count[top_xy][7]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
521 h->non_zero_count_cache[2+8*0]= h->non_zero_count[top_xy][8]; |
1168 | 522 |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
523 h->non_zero_count_cache[1+8*3]= h->non_zero_count[top_xy][10]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
524 h->non_zero_count_cache[2+8*3]= h->non_zero_count[top_xy][11]; |
2314 | 525 |
526 h->top_cbp= h->cbp_table[top_xy]; | |
1168 | 527 }else{ |
528 h->non_zero_count_cache[4+8*0]= | |
529 h->non_zero_count_cache[5+8*0]= | |
530 h->non_zero_count_cache[6+8*0]= | |
531 h->non_zero_count_cache[7+8*0]= | |
532 | |
533 h->non_zero_count_cache[1+8*0]= | |
534 h->non_zero_count_cache[2+8*0]= | |
535 | |
536 h->non_zero_count_cache[1+8*3]= | |
2314 | 537 h->non_zero_count_cache[2+8*3]= h->pps.cabac && !IS_INTRA(mb_type) ? 0 : 64; |
538 | |
539 if(IS_INTRA(mb_type)) h->top_cbp= 0x1C0; | |
540 else h->top_cbp= 0; | |
1168 | 541 } |
542 | |
543 if(left_type[0]){ | |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
544 h->non_zero_count_cache[3+8*1]= h->non_zero_count[left_xy[0]][6]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
545 h->non_zero_count_cache[3+8*2]= h->non_zero_count[left_xy[0]][5]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
546 h->non_zero_count_cache[0+8*1]= h->non_zero_count[left_xy[0]][9]; //FIXME left_block |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
547 h->non_zero_count_cache[0+8*4]= h->non_zero_count[left_xy[0]][12]; |
2314 | 548 h->left_cbp= h->cbp_table[left_xy[0]]; //FIXME interlacing |
1168 | 549 }else{ |
550 h->non_zero_count_cache[3+8*1]= | |
551 h->non_zero_count_cache[3+8*2]= | |
552 h->non_zero_count_cache[0+8*1]= | |
2314 | 553 h->non_zero_count_cache[0+8*4]= h->pps.cabac && !IS_INTRA(mb_type) ? 0 : 64; |
554 | |
555 if(IS_INTRA(mb_type)) h->left_cbp= 0x1C0;//FIXME interlacing | |
556 else h->left_cbp= 0; | |
1168 | 557 } |
558 | |
559 if(left_type[1]){ | |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
560 h->non_zero_count_cache[3+8*3]= h->non_zero_count[left_xy[1]][4]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
561 h->non_zero_count_cache[3+8*4]= h->non_zero_count[left_xy[1]][3]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
562 h->non_zero_count_cache[0+8*2]= h->non_zero_count[left_xy[1]][8]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
563 h->non_zero_count_cache[0+8*5]= h->non_zero_count[left_xy[1]][11]; |
1168 | 564 }else{ |
565 h->non_zero_count_cache[3+8*3]= | |
566 h->non_zero_count_cache[3+8*4]= | |
567 h->non_zero_count_cache[0+8*2]= | |
2314 | 568 h->non_zero_count_cache[0+8*5]= h->pps.cabac && !IS_INTRA(mb_type) ? 0 : 64; |
1168 | 569 } |
570 | |
571 #if 1 | |
2396 | 572 //FIXME direct mb can skip much of this |
573 if(IS_INTER(mb_type) || (IS_DIRECT(mb_type) && h->direct_spatial_mv_pred)){ | |
1168 | 574 int list; |
575 for(list=0; list<2; list++){ | |
2396 | 576 if((!IS_8X8(mb_type)) && !USES_LIST(mb_type, list) && !IS_DIRECT(mb_type)){ |
1168 | 577 /*if(!h->mv_cache_clean[list]){ |
578 memset(h->mv_cache [list], 0, 8*5*2*sizeof(int16_t)); //FIXME clean only input? clean at all? | |
579 memset(h->ref_cache[list], PART_NOT_AVAILABLE, 8*5*sizeof(int8_t)); | |
580 h->mv_cache_clean[list]= 1; | |
581 }*/ | |
2396 | 582 continue; |
1168 | 583 } |
584 h->mv_cache_clean[list]= 0; | |
585 | |
586 if(IS_INTER(topleft_type)){ | |
587 const int b_xy = h->mb2b_xy[topleft_xy] + 3 + 3*h->b_stride; | |
588 const int b8_xy= h->mb2b8_xy[topleft_xy] + 1 + h->b8_stride; | |
589 *(uint32_t*)h->mv_cache[list][scan8[0] - 1 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy]; | |
590 h->ref_cache[list][scan8[0] - 1 - 1*8]= s->current_picture.ref_index[list][b8_xy]; | |
591 }else{ | |
592 *(uint32_t*)h->mv_cache[list][scan8[0] - 1 - 1*8]= 0; | |
593 h->ref_cache[list][scan8[0] - 1 - 1*8]= topleft_type ? LIST_NOT_USED : PART_NOT_AVAILABLE; | |
594 } | |
595 | |
596 if(IS_INTER(top_type)){ | |
597 const int b_xy= h->mb2b_xy[top_xy] + 3*h->b_stride; | |
598 const int b8_xy= h->mb2b8_xy[top_xy] + h->b8_stride; | |
599 *(uint32_t*)h->mv_cache[list][scan8[0] + 0 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + 0]; | |
600 *(uint32_t*)h->mv_cache[list][scan8[0] + 1 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + 1]; | |
601 *(uint32_t*)h->mv_cache[list][scan8[0] + 2 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + 2]; | |
602 *(uint32_t*)h->mv_cache[list][scan8[0] + 3 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + 3]; | |
603 h->ref_cache[list][scan8[0] + 0 - 1*8]= | |
604 h->ref_cache[list][scan8[0] + 1 - 1*8]= s->current_picture.ref_index[list][b8_xy + 0]; | |
605 h->ref_cache[list][scan8[0] + 2 - 1*8]= | |
606 h->ref_cache[list][scan8[0] + 3 - 1*8]= s->current_picture.ref_index[list][b8_xy + 1]; | |
607 }else{ | |
608 *(uint32_t*)h->mv_cache [list][scan8[0] + 0 - 1*8]= | |
609 *(uint32_t*)h->mv_cache [list][scan8[0] + 1 - 1*8]= | |
610 *(uint32_t*)h->mv_cache [list][scan8[0] + 2 - 1*8]= | |
611 *(uint32_t*)h->mv_cache [list][scan8[0] + 3 - 1*8]= 0; | |
612 *(uint32_t*)&h->ref_cache[list][scan8[0] + 0 - 1*8]= ((top_type ? LIST_NOT_USED : PART_NOT_AVAILABLE)&0xFF)*0x01010101; | |
613 } | |
614 | |
615 if(IS_INTER(topright_type)){ | |
616 const int b_xy= h->mb2b_xy[topright_xy] + 3*h->b_stride; | |
617 const int b8_xy= h->mb2b8_xy[topright_xy] + h->b8_stride; | |
618 *(uint32_t*)h->mv_cache[list][scan8[0] + 4 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy]; | |
619 h->ref_cache[list][scan8[0] + 4 - 1*8]= s->current_picture.ref_index[list][b8_xy]; | |
620 }else{ | |
621 *(uint32_t*)h->mv_cache [list][scan8[0] + 4 - 1*8]= 0; | |
622 h->ref_cache[list][scan8[0] + 4 - 1*8]= topright_type ? LIST_NOT_USED : PART_NOT_AVAILABLE; | |
623 } | |
624 | |
625 //FIXME unify cleanup or sth | |
626 if(IS_INTER(left_type[0])){ | |
627 const int b_xy= h->mb2b_xy[left_xy[0]] + 3; | |
628 const int b8_xy= h->mb2b8_xy[left_xy[0]] + 1; | |
629 *(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]]; | |
630 *(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]]; | |
631 h->ref_cache[list][scan8[0] - 1 + 0*8]= | |
632 h->ref_cache[list][scan8[0] - 1 + 1*8]= s->current_picture.ref_index[list][b8_xy + h->b8_stride*(left_block[0]>>1)]; | |
633 }else{ | |
634 *(uint32_t*)h->mv_cache [list][scan8[0] - 1 + 0*8]= | |
635 *(uint32_t*)h->mv_cache [list][scan8[0] - 1 + 1*8]= 0; | |
636 h->ref_cache[list][scan8[0] - 1 + 0*8]= | |
637 h->ref_cache[list][scan8[0] - 1 + 1*8]= left_type[0] ? LIST_NOT_USED : PART_NOT_AVAILABLE; | |
638 } | |
639 | |
640 if(IS_INTER(left_type[1])){ | |
641 const int b_xy= h->mb2b_xy[left_xy[1]] + 3; | |
642 const int b8_xy= h->mb2b8_xy[left_xy[1]] + 1; | |
643 *(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]]; | |
644 *(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]]; | |
645 h->ref_cache[list][scan8[0] - 1 + 2*8]= | |
646 h->ref_cache[list][scan8[0] - 1 + 3*8]= s->current_picture.ref_index[list][b8_xy + h->b8_stride*(left_block[2]>>1)]; | |
647 }else{ | |
648 *(uint32_t*)h->mv_cache [list][scan8[0] - 1 + 2*8]= | |
649 *(uint32_t*)h->mv_cache [list][scan8[0] - 1 + 3*8]= 0; | |
650 h->ref_cache[list][scan8[0] - 1 + 2*8]= | |
651 h->ref_cache[list][scan8[0] - 1 + 3*8]= left_type[0] ? LIST_NOT_USED : PART_NOT_AVAILABLE; | |
652 } | |
653 | |
654 h->ref_cache[list][scan8[5 ]+1] = | |
655 h->ref_cache[list][scan8[7 ]+1] = | |
656 h->ref_cache[list][scan8[13]+1] = //FIXME remove past 3 (init somewher else) | |
657 h->ref_cache[list][scan8[4 ]] = | |
658 h->ref_cache[list][scan8[12]] = PART_NOT_AVAILABLE; | |
659 *(uint32_t*)h->mv_cache [list][scan8[5 ]+1]= | |
660 *(uint32_t*)h->mv_cache [list][scan8[7 ]+1]= | |
661 *(uint32_t*)h->mv_cache [list][scan8[13]+1]= //FIXME remove past 3 (init somewher else) | |
662 *(uint32_t*)h->mv_cache [list][scan8[4 ]]= | |
663 *(uint32_t*)h->mv_cache [list][scan8[12]]= 0; | |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
664 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
665 if( h->pps.cabac ) { |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
666 /* XXX beurk, Load mvd */ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
667 if(IS_INTER(topleft_type)){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
668 const int b_xy = h->mb2b_xy[topleft_xy] + 3 + 3*h->b_stride; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
669 *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
670 }else{ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
671 *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 - 1*8]= 0; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
672 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
673 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
674 if(IS_INTER(top_type)){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
675 const int b_xy= h->mb2b_xy[top_xy] + 3*h->b_stride; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
676 *(uint32_t*)h->mvd_cache[list][scan8[0] + 0 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + 0]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
677 *(uint32_t*)h->mvd_cache[list][scan8[0] + 1 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + 1]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
678 *(uint32_t*)h->mvd_cache[list][scan8[0] + 2 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + 2]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
679 *(uint32_t*)h->mvd_cache[list][scan8[0] + 3 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + 3]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
680 }else{ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
681 *(uint32_t*)h->mvd_cache [list][scan8[0] + 0 - 1*8]= |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
682 *(uint32_t*)h->mvd_cache [list][scan8[0] + 1 - 1*8]= |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
683 *(uint32_t*)h->mvd_cache [list][scan8[0] + 2 - 1*8]= |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
684 *(uint32_t*)h->mvd_cache [list][scan8[0] + 3 - 1*8]= 0; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
685 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
686 if(IS_INTER(left_type[0])){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
687 const int b_xy= h->mb2b_xy[left_xy[0]] + 3; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
688 *(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]]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
689 *(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]]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
690 }else{ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
691 *(uint32_t*)h->mvd_cache [list][scan8[0] - 1 + 0*8]= |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
692 *(uint32_t*)h->mvd_cache [list][scan8[0] - 1 + 1*8]= 0; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
693 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
694 if(IS_INTER(left_type[1])){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
695 const int b_xy= h->mb2b_xy[left_xy[1]] + 3; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
696 *(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]]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
697 *(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]]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
698 }else{ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
699 *(uint32_t*)h->mvd_cache [list][scan8[0] - 1 + 2*8]= |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
700 *(uint32_t*)h->mvd_cache [list][scan8[0] - 1 + 3*8]= 0; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
701 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
702 *(uint32_t*)h->mvd_cache [list][scan8[5 ]+1]= |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
703 *(uint32_t*)h->mvd_cache [list][scan8[7 ]+1]= |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
704 *(uint32_t*)h->mvd_cache [list][scan8[13]+1]= //FIXME remove past 3 (init somewher else) |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
705 *(uint32_t*)h->mvd_cache [list][scan8[4 ]]= |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
706 *(uint32_t*)h->mvd_cache [list][scan8[12]]= 0; |
2396 | 707 |
708 if(h->slice_type == B_TYPE){ | |
709 fill_rectangle(&h->direct_cache[scan8[0]], 4, 4, 8, 0, 1); | |
710 | |
711 if(IS_DIRECT(top_type)){ | |
712 *(uint32_t*)&h->direct_cache[scan8[0] - 1*8]= 0x01010101; | |
713 }else if(IS_8X8(top_type)){ | |
714 int b8_xy = h->mb2b8_xy[top_xy] + h->b8_stride; | |
715 h->direct_cache[scan8[0] + 0 - 1*8]= h->direct_table[b8_xy]; | |
716 h->direct_cache[scan8[0] + 2 - 1*8]= h->direct_table[b8_xy + 1]; | |
717 }else{ | |
718 *(uint32_t*)&h->direct_cache[scan8[0] - 1*8]= 0; | |
719 } | |
720 | |
721 //FIXME interlacing | |
722 if(IS_DIRECT(left_type[0])){ | |
723 h->direct_cache[scan8[0] - 1 + 0*8]= | |
724 h->direct_cache[scan8[0] - 1 + 2*8]= 1; | |
725 }else if(IS_8X8(left_type[0])){ | |
726 int b8_xy = h->mb2b8_xy[left_xy[0]] + 1; | |
727 h->direct_cache[scan8[0] - 1 + 0*8]= h->direct_table[b8_xy]; | |
728 h->direct_cache[scan8[0] - 1 + 2*8]= h->direct_table[b8_xy + h->b8_stride]; | |
729 }else{ | |
730 h->direct_cache[scan8[0] - 1 + 0*8]= | |
731 h->direct_cache[scan8[0] - 1 + 2*8]= 0; | |
732 } | |
733 } | |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
734 } |
1168 | 735 } |
736 } | |
737 #endif | |
738 } | |
739 | |
740 static inline void write_back_intra_pred_mode(H264Context *h){ | |
741 MpegEncContext * const s = &h->s; | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1174
diff
changeset
|
742 const int mb_xy= s->mb_x + s->mb_y*s->mb_stride; |
1168 | 743 |
744 h->intra4x4_pred_mode[mb_xy][0]= h->intra4x4_pred_mode_cache[7+8*1]; | |
745 h->intra4x4_pred_mode[mb_xy][1]= h->intra4x4_pred_mode_cache[7+8*2]; | |
746 h->intra4x4_pred_mode[mb_xy][2]= h->intra4x4_pred_mode_cache[7+8*3]; | |
747 h->intra4x4_pred_mode[mb_xy][3]= h->intra4x4_pred_mode_cache[7+8*4]; | |
748 h->intra4x4_pred_mode[mb_xy][4]= h->intra4x4_pred_mode_cache[4+8*4]; | |
749 h->intra4x4_pred_mode[mb_xy][5]= h->intra4x4_pred_mode_cache[5+8*4]; | |
750 h->intra4x4_pred_mode[mb_xy][6]= h->intra4x4_pred_mode_cache[6+8*4]; | |
751 } | |
752 | |
753 /** | |
754 * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks. | |
755 */ | |
756 static inline int check_intra4x4_pred_mode(H264Context *h){ | |
757 MpegEncContext * const s = &h->s; | |
758 static const int8_t top [12]= {-1, 0,LEFT_DC_PRED,-1,-1,-1,-1,-1, 0}; | |
759 static const int8_t left[12]= { 0,-1, TOP_DC_PRED, 0,-1,-1,-1, 0,-1,DC_128_PRED}; | |
760 int i; | |
761 | |
762 if(!(h->top_samples_available&0x8000)){ | |
763 for(i=0; i<4; i++){ | |
764 int status= top[ h->intra4x4_pred_mode_cache[scan8[0] + i] ]; | |
765 if(status<0){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
766 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); |
1168 | 767 return -1; |
768 } else if(status){ | |
769 h->intra4x4_pred_mode_cache[scan8[0] + i]= status; | |
770 } | |
771 } | |
772 } | |
773 | |
774 if(!(h->left_samples_available&0x8000)){ | |
775 for(i=0; i<4; i++){ | |
776 int status= left[ h->intra4x4_pred_mode_cache[scan8[0] + 8*i] ]; | |
777 if(status<0){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
778 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); |
1168 | 779 return -1; |
780 } else if(status){ | |
781 h->intra4x4_pred_mode_cache[scan8[0] + 8*i]= status; | |
782 } | |
783 } | |
784 } | |
785 | |
786 return 0; | |
787 } //FIXME cleanup like next | |
788 | |
789 /** | |
790 * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks. | |
791 */ | |
792 static inline int check_intra_pred_mode(H264Context *h, int mode){ | |
793 MpegEncContext * const s = &h->s; | |
794 static const int8_t top [7]= {LEFT_DC_PRED8x8, 1,-1,-1}; | |
795 static const int8_t left[7]= { TOP_DC_PRED8x8,-1, 2,-1,DC_128_PRED8x8}; | |
796 | |
2392 | 797 if(mode < 0 || mode > 6) { |
798 av_log(h->s.avctx, AV_LOG_ERROR, "out of range intra chroma pred mode at %d %d\n", s->mb_x, s->mb_y); | |
2163 | 799 return -1; |
2392 | 800 } |
2163 | 801 |
1168 | 802 if(!(h->top_samples_available&0x8000)){ |
803 mode= top[ mode ]; | |
804 if(mode<0){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
805 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); |
1168 | 806 return -1; |
807 } | |
808 } | |
809 | |
810 if(!(h->left_samples_available&0x8000)){ | |
811 mode= left[ mode ]; | |
812 if(mode<0){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
813 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); |
1168 | 814 return -1; |
815 } | |
816 } | |
817 | |
818 return mode; | |
819 } | |
820 | |
821 /** | |
822 * gets the predicted intra4x4 prediction mode. | |
823 */ | |
824 static inline int pred_intra_mode(H264Context *h, int n){ | |
825 const int index8= scan8[n]; | |
826 const int left= h->intra4x4_pred_mode_cache[index8 - 1]; | |
827 const int top = h->intra4x4_pred_mode_cache[index8 - 8]; | |
828 const int min= FFMIN(left, top); | |
829 | |
1170 | 830 tprintf("mode:%d %d min:%d\n", left ,top, min); |
1168 | 831 |
832 if(min<0) return DC_PRED; | |
833 else return min; | |
834 } | |
835 | |
836 static inline void write_back_non_zero_count(H264Context *h){ | |
837 MpegEncContext * const s = &h->s; | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1174
diff
changeset
|
838 const int mb_xy= s->mb_x + s->mb_y*s->mb_stride; |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
839 |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
840 h->non_zero_count[mb_xy][0]= h->non_zero_count_cache[4+8*4]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
841 h->non_zero_count[mb_xy][1]= h->non_zero_count_cache[5+8*4]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
842 h->non_zero_count[mb_xy][2]= h->non_zero_count_cache[6+8*4]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
843 h->non_zero_count[mb_xy][3]= h->non_zero_count_cache[7+8*4]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
844 h->non_zero_count[mb_xy][4]= h->non_zero_count_cache[7+8*3]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
845 h->non_zero_count[mb_xy][5]= h->non_zero_count_cache[7+8*2]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
846 h->non_zero_count[mb_xy][6]= h->non_zero_count_cache[7+8*1]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
847 |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
848 h->non_zero_count[mb_xy][7]= h->non_zero_count_cache[1+8*2]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
849 h->non_zero_count[mb_xy][8]= h->non_zero_count_cache[2+8*2]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
850 h->non_zero_count[mb_xy][9]= h->non_zero_count_cache[2+8*1]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
851 |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
852 h->non_zero_count[mb_xy][10]=h->non_zero_count_cache[1+8*5]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
853 h->non_zero_count[mb_xy][11]=h->non_zero_count_cache[2+8*5]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
854 h->non_zero_count[mb_xy][12]=h->non_zero_count_cache[2+8*4]; |
1168 | 855 } |
856 | |
857 /** | |
858 * gets the predicted number of non zero coefficients. | |
859 * @param n block index | |
860 */ | |
861 static inline int pred_non_zero_count(H264Context *h, int n){ | |
862 const int index8= scan8[n]; | |
863 const int left= h->non_zero_count_cache[index8 - 1]; | |
864 const int top = h->non_zero_count_cache[index8 - 8]; | |
865 int i= left + top; | |
866 | |
867 if(i<64) i= (i+1)>>1; | |
868 | |
1170 | 869 tprintf("pred_nnz L%X T%X n%d s%d P%X\n", left, top, n, scan8[n], i&31); |
1168 | 870 |
871 return i&31; | |
872 } | |
873 | |
1169 | 874 static inline int fetch_diagonal_mv(H264Context *h, const int16_t **C, int i, int list, int part_width){ |
875 const int topright_ref= h->ref_cache[list][ i - 8 + part_width ]; | |
876 | |
877 if(topright_ref != PART_NOT_AVAILABLE){ | |
878 *C= h->mv_cache[list][ i - 8 + part_width ]; | |
879 return topright_ref; | |
880 }else{ | |
1170 | 881 tprintf("topright MV not available\n"); |
882 | |
1169 | 883 *C= h->mv_cache[list][ i - 8 - 1 ]; |
884 return h->ref_cache[list][ i - 8 - 1 ]; | |
885 } | |
886 } | |
887 | |
1168 | 888 /** |
889 * gets the predicted MV. | |
890 * @param n the block index | |
891 * @param part_width the width of the partition (4, 8,16) -> (1, 2, 4) | |
892 * @param mx the x component of the predicted motion vector | |
893 * @param my the y component of the predicted motion vector | |
894 */ | |
895 static inline void pred_motion(H264Context * const h, int n, int part_width, int list, int ref, int * const mx, int * const my){ | |
896 const int index8= scan8[n]; | |
897 const int top_ref= h->ref_cache[list][ index8 - 8 ]; | |
898 const int left_ref= h->ref_cache[list][ index8 - 1 ]; | |
899 const int16_t * const A= h->mv_cache[list][ index8 - 1 ]; | |
900 const int16_t * const B= h->mv_cache[list][ index8 - 8 ]; | |
1169 | 901 const int16_t * C; |
902 int diagonal_ref, match_count; | |
903 | |
1168 | 904 assert(part_width==1 || part_width==2 || part_width==4); |
1169 | 905 |
1168 | 906 /* mv_cache |
907 B . . A T T T T | |
908 U . . L . . , . | |
909 U . . L . . . . | |
910 U . . L . . , . | |
911 . . . L . . . . | |
912 */ | |
1169 | 913 |
914 diagonal_ref= fetch_diagonal_mv(h, &C, index8, list, part_width); | |
915 match_count= (diagonal_ref==ref) + (top_ref==ref) + (left_ref==ref); | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
916 tprintf("pred_motion match_count=%d\n", match_count); |
1169 | 917 if(match_count > 1){ //most common |
918 *mx= mid_pred(A[0], B[0], C[0]); | |
919 *my= mid_pred(A[1], B[1], C[1]); | |
920 }else if(match_count==1){ | |
921 if(left_ref==ref){ | |
922 *mx= A[0]; | |
923 *my= A[1]; | |
924 }else if(top_ref==ref){ | |
925 *mx= B[0]; | |
926 *my= B[1]; | |
927 }else{ | |
928 *mx= C[0]; | |
929 *my= C[1]; | |
930 } | |
931 }else{ | |
932 if(top_ref == PART_NOT_AVAILABLE && diagonal_ref == PART_NOT_AVAILABLE && left_ref != PART_NOT_AVAILABLE){ | |
933 *mx= A[0]; | |
934 *my= A[1]; | |
1168 | 935 }else{ |
936 *mx= mid_pred(A[0], B[0], C[0]); | |
937 *my= mid_pred(A[1], B[1], C[1]); | |
938 } | |
1169 | 939 } |
1168 | 940 |
1187 | 941 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); |
1168 | 942 } |
943 | |
944 /** | |
945 * gets the directionally predicted 16x8 MV. | |
946 * @param n the block index | |
947 * @param mx the x component of the predicted motion vector | |
948 * @param my the y component of the predicted motion vector | |
949 */ | |
950 static inline void pred_16x8_motion(H264Context * const h, int n, int list, int ref, int * const mx, int * const my){ | |
951 if(n==0){ | |
952 const int top_ref= h->ref_cache[list][ scan8[0] - 8 ]; | |
953 const int16_t * const B= h->mv_cache[list][ scan8[0] - 8 ]; | |
954 | |
2402
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
955 tprintf("pred_16x8: (%2d %2d %2d) at %2d %2d %d list %d\n", top_ref, B[0], B[1], h->s.mb_x, h->s.mb_y, n, list); |
1168 | 956 |
957 if(top_ref == ref){ | |
958 *mx= B[0]; | |
959 *my= B[1]; | |
960 return; | |
961 } | |
962 }else{ | |
963 const int left_ref= h->ref_cache[list][ scan8[8] - 1 ]; | |
964 const int16_t * const A= h->mv_cache[list][ scan8[8] - 1 ]; | |
965 | |
2402
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
966 tprintf("pred_16x8: (%2d %2d %2d) at %2d %2d %d list %d\n", left_ref, A[0], A[1], h->s.mb_x, h->s.mb_y, n, list); |
1168 | 967 |
968 if(left_ref == ref){ | |
969 *mx= A[0]; | |
970 *my= A[1]; | |
971 return; | |
972 } | |
973 } | |
974 | |
975 //RARE | |
976 pred_motion(h, n, 4, list, ref, mx, my); | |
977 } | |
978 | |
979 /** | |
980 * gets the directionally predicted 8x16 MV. | |
981 * @param n the block index | |
982 * @param mx the x component of the predicted motion vector | |
983 * @param my the y component of the predicted motion vector | |
984 */ | |
985 static inline void pred_8x16_motion(H264Context * const h, int n, int list, int ref, int * const mx, int * const my){ | |
986 if(n==0){ | |
987 const int left_ref= h->ref_cache[list][ scan8[0] - 1 ]; | |
988 const int16_t * const A= h->mv_cache[list][ scan8[0] - 1 ]; | |
989 | |
2402
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
990 tprintf("pred_8x16: (%2d %2d %2d) at %2d %2d %d list %d\n", left_ref, A[0], A[1], h->s.mb_x, h->s.mb_y, n, list); |
1168 | 991 |
992 if(left_ref == ref){ | |
993 *mx= A[0]; | |
994 *my= A[1]; | |
995 return; | |
996 } | |
997 }else{ | |
1169 | 998 const int16_t * C; |
999 int diagonal_ref; | |
1000 | |
1001 diagonal_ref= fetch_diagonal_mv(h, &C, scan8[4], list, 2); | |
1168 | 1002 |
2402
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
1003 tprintf("pred_8x16: (%2d %2d %2d) at %2d %2d %d list %d\n", diagonal_ref, C[0], C[1], h->s.mb_x, h->s.mb_y, n, list); |
1168 | 1004 |
1169 | 1005 if(diagonal_ref == ref){ |
1168 | 1006 *mx= C[0]; |
1007 *my= C[1]; | |
1008 return; | |
1009 } | |
1010 } | |
1011 | |
1012 //RARE | |
1013 pred_motion(h, n, 2, list, ref, mx, my); | |
1014 } | |
1015 | |
1016 static inline void pred_pskip_motion(H264Context * const h, int * const mx, int * const my){ | |
1017 const int top_ref = h->ref_cache[0][ scan8[0] - 8 ]; | |
1018 const int left_ref= h->ref_cache[0][ scan8[0] - 1 ]; | |
1019 | |
2392 | 1020 tprintf("pred_pskip: (%d) (%d) at %2d %2d\n", top_ref, left_ref, h->s.mb_x, h->s.mb_y); |
1168 | 1021 |
1022 if(top_ref == PART_NOT_AVAILABLE || left_ref == PART_NOT_AVAILABLE | |
1023 || (top_ref == 0 && *(uint32_t*)h->mv_cache[0][ scan8[0] - 8 ] == 0) | |
1024 || (left_ref == 0 && *(uint32_t*)h->mv_cache[0][ scan8[0] - 1 ] == 0)){ | |
1025 | |
1026 *mx = *my = 0; | |
1027 return; | |
1028 } | |
1029 | |
1030 pred_motion(h, 0, 4, 0, 0, mx, my); | |
1031 | |
1032 return; | |
1033 } | |
1034 | |
2396 | 1035 static inline void direct_dist_scale_factor(H264Context * const h){ |
1036 const int poc = h->s.current_picture_ptr->poc; | |
1037 const int poc1 = h->ref_list[1][0].poc; | |
1038 int i; | |
1039 for(i=0; i<h->ref_count[0]; i++){ | |
1040 int poc0 = h->ref_list[0][i].poc; | |
1041 int td = clip(poc1 - poc0, -128, 127); | |
1042 if(td == 0 /* FIXME || pic0 is a long-term ref */){ | |
1043 h->dist_scale_factor[i] = 256; | |
1044 }else{ | |
1045 int tb = clip(poc - poc0, -128, 127); | |
1046 int tx = (16384 + (ABS(td) >> 1)) / td; | |
1047 h->dist_scale_factor[i] = clip((tb*tx + 32) >> 6, -1024, 1023); | |
1048 } | |
1049 } | |
1050 } | |
1051 | |
1052 static inline void pred_direct_motion(H264Context * const h, int *mb_type){ | |
1053 MpegEncContext * const s = &h->s; | |
1054 const int mb_xy = s->mb_x + s->mb_y*s->mb_stride; | |
1055 const int b8_xy = 2*s->mb_x + 2*s->mb_y*h->b8_stride; | |
1056 const int b4_xy = 4*s->mb_x + 4*s->mb_y*h->b_stride; | |
1057 const int mb_type_col = h->ref_list[1][0].mb_type[mb_xy]; | |
1058 const int16_t (*l1mv0)[2] = (const int16_t (*)[2]) &h->ref_list[1][0].motion_val[0][b4_xy]; | |
1059 const int8_t *l1ref0 = &h->ref_list[1][0].ref_index[0][b8_xy]; | |
1060 const int is_b8x8 = IS_8X8(*mb_type); | |
1061 int sub_mb_type; | |
1062 int i8, i4; | |
1063 | |
1064 if(IS_8X8(mb_type_col) && !h->sps.direct_8x8_inference_flag){ | |
1065 /* FIXME save sub mb types from previous frames (or derive from MVs) | |
1066 * so we know exactly what block size to use */ | |
1067 sub_mb_type = MB_TYPE_8x8|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_SUB_4x4 */ | |
1068 *mb_type = MB_TYPE_8x8; | |
1069 }else if(!is_b8x8 && (IS_16X16(mb_type_col) || IS_INTRA(mb_type_col))){ | |
1070 sub_mb_type = MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_SUB_8x8 */ | |
1071 *mb_type = MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_16x16 */ | |
1072 }else{ | |
1073 sub_mb_type = MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_SUB_8x8 */ | |
1074 *mb_type = MB_TYPE_8x8; | |
1075 } | |
1076 if(!is_b8x8) | |
1077 *mb_type |= MB_TYPE_DIRECT2; | |
1078 | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
1079 tprintf("mb_type = %08x, sub_mb_type = %08x, is_b8x8 = %d, mb_type_col = %08x\n", *mb_type, sub_mb_type, is_b8x8, mb_type_col); |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
1080 |
2396 | 1081 if(h->direct_spatial_mv_pred){ |
1082 int ref[2]; | |
1083 int mv[2][2]; | |
1084 int list; | |
1085 | |
1086 /* ref = min(neighbors) */ | |
1087 for(list=0; list<2; list++){ | |
1088 int refa = h->ref_cache[list][scan8[0] - 1]; | |
1089 int refb = h->ref_cache[list][scan8[0] - 8]; | |
1090 int refc = h->ref_cache[list][scan8[0] - 8 + 4]; | |
1091 if(refc == -2) | |
1092 refc = h->ref_cache[list][scan8[0] - 8 - 1]; | |
1093 ref[list] = refa; | |
1094 if(ref[list] < 0 || (refb < ref[list] && refb >= 0)) | |
1095 ref[list] = refb; | |
1096 if(ref[list] < 0 || (refc < ref[list] && refc >= 0)) | |
1097 ref[list] = refc; | |
1098 if(ref[list] < 0) | |
1099 ref[list] = -1; | |
1100 } | |
1101 | |
1102 if(ref[0] < 0 && ref[1] < 0){ | |
1103 ref[0] = ref[1] = 0; | |
1104 mv[0][0] = mv[0][1] = | |
1105 mv[1][0] = mv[1][1] = 0; | |
1106 }else{ | |
1107 for(list=0; list<2; list++){ | |
1108 if(ref[list] >= 0) | |
1109 pred_motion(h, 0, 4, list, ref[list], &mv[list][0], &mv[list][1]); | |
1110 else | |
1111 mv[list][0] = mv[list][1] = 0; | |
1112 } | |
1113 } | |
1114 | |
1115 if(ref[1] < 0){ | |
1116 *mb_type &= ~MB_TYPE_P0L1; | |
1117 sub_mb_type &= ~MB_TYPE_P0L1; | |
1118 }else if(ref[0] < 0){ | |
1119 *mb_type &= ~MB_TYPE_P0L0; | |
1120 sub_mb_type &= ~MB_TYPE_P0L0; | |
1121 } | |
1122 | |
1123 if(IS_16X16(*mb_type)){ | |
1124 fill_rectangle(&h->ref_cache[0][scan8[0]], 4, 4, 8, ref[0], 1); | |
1125 fill_rectangle(&h->ref_cache[1][scan8[0]], 4, 4, 8, ref[1], 1); | |
1126 if(!IS_INTRA(mb_type_col) && l1ref0[0] == 0 && | |
1127 ABS(l1mv0[0][0]) <= 1 && ABS(l1mv0[0][1]) <= 1){ | |
1128 if(ref[0] > 0) | |
1129 fill_rectangle(&h->mv_cache[0][scan8[0]], 4, 4, 8, pack16to32(mv[0][0],mv[0][1]), 4); | |
1130 else | |
1131 fill_rectangle(&h->mv_cache[0][scan8[0]], 4, 4, 8, 0, 4); | |
1132 if(ref[1] > 0) | |
1133 fill_rectangle(&h->mv_cache[1][scan8[0]], 4, 4, 8, pack16to32(mv[1][0],mv[1][1]), 4); | |
1134 else | |
1135 fill_rectangle(&h->mv_cache[1][scan8[0]], 4, 4, 8, 0, 4); | |
1136 }else{ | |
1137 fill_rectangle(&h->mv_cache[0][scan8[0]], 4, 4, 8, pack16to32(mv[0][0],mv[0][1]), 4); | |
1138 fill_rectangle(&h->mv_cache[1][scan8[0]], 4, 4, 8, pack16to32(mv[1][0],mv[1][1]), 4); | |
1139 } | |
1140 }else{ | |
1141 for(i8=0; i8<4; i8++){ | |
1142 const int x8 = i8&1; | |
1143 const int y8 = i8>>1; | |
1144 | |
1145 if(is_b8x8 && !IS_DIRECT(h->sub_mb_type[i8])) | |
1146 continue; | |
1147 h->sub_mb_type[i8] = sub_mb_type; | |
1148 | |
1149 fill_rectangle(&h->mv_cache[0][scan8[i8*4]], 2, 2, 8, pack16to32(mv[0][0],mv[0][1]), 4); | |
1150 fill_rectangle(&h->mv_cache[1][scan8[i8*4]], 2, 2, 8, pack16to32(mv[1][0],mv[1][1]), 4); | |
1151 fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, ref[0], 1); | |
1152 fill_rectangle(&h->ref_cache[1][scan8[i8*4]], 2, 2, 8, ref[1], 1); | |
1153 | |
1154 /* col_zero_flag */ | |
1155 if(!IS_INTRA(mb_type_col) && l1ref0[x8 + y8*h->b8_stride] == 0){ | |
1156 for(i4=0; i4<4; i4++){ | |
1157 const int16_t *mv_col = l1mv0[x8*2 + (i4&1) + (y8*2 + (i4>>1))*h->b_stride]; | |
1158 if(ABS(mv_col[0]) <= 1 && ABS(mv_col[1]) <= 1){ | |
1159 if(ref[0] == 0) | |
1160 *(uint32_t*)h->mv_cache[0][scan8[i8*4+i4]] = 0; | |
1161 if(ref[1] == 0) | |
1162 *(uint32_t*)h->mv_cache[1][scan8[i8*4+i4]] = 0; | |
1163 } | |
1164 } | |
1165 } | |
1166 } | |
1167 } | |
1168 }else{ /* direct temporal mv pred */ | |
1169 /* FIXME assumes that L1ref0 used the same ref lists as current frame */ | |
1170 if(IS_16X16(*mb_type)){ | |
1171 fill_rectangle(&h->ref_cache[1][scan8[0]], 4, 4, 8, 0, 1); | |
1172 if(IS_INTRA(mb_type_col)){ | |
1173 fill_rectangle(&h->ref_cache[0][scan8[0]], 4, 4, 8, 0, 1); | |
1174 fill_rectangle(&h-> mv_cache[0][scan8[0]], 4, 4, 8, 0, 4); | |
1175 fill_rectangle(&h-> mv_cache[1][scan8[0]], 4, 4, 8, 0, 4); | |
1176 }else{ | |
1177 const int ref0 = l1ref0[0]; | |
1178 const int dist_scale_factor = h->dist_scale_factor[ref0]; | |
1179 const int16_t *mv_col = l1mv0[0]; | |
1180 int mv_l0[2]; | |
1181 mv_l0[0] = (dist_scale_factor * mv_col[0] + 128) >> 8; | |
1182 mv_l0[1] = (dist_scale_factor * mv_col[1] + 128) >> 8; | |
1183 fill_rectangle(&h->ref_cache[0][scan8[0]], 4, 4, 8, ref0, 1); | |
1184 fill_rectangle(&h-> mv_cache[0][scan8[0]], 4, 4, 8, pack16to32(mv_l0[0],mv_l0[1]), 4); | |
1185 fill_rectangle(&h-> mv_cache[1][scan8[0]], 4, 4, 8, pack16to32(mv_l0[0]-mv_col[0],mv_l0[1]-mv_col[1]), 4); | |
1186 } | |
1187 }else{ | |
1188 for(i8=0; i8<4; i8++){ | |
1189 const int x8 = i8&1; | |
1190 const int y8 = i8>>1; | |
1191 int ref0, dist_scale_factor; | |
1192 | |
1193 if(is_b8x8 && !IS_DIRECT(h->sub_mb_type[i8])) | |
1194 continue; | |
1195 h->sub_mb_type[i8] = sub_mb_type; | |
1196 if(IS_INTRA(mb_type_col)){ | |
1197 fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, 0, 1); | |
1198 fill_rectangle(&h->ref_cache[1][scan8[i8*4]], 2, 2, 8, 0, 1); | |
1199 fill_rectangle(&h-> mv_cache[0][scan8[i8*4]], 2, 2, 8, 0, 4); | |
1200 fill_rectangle(&h-> mv_cache[1][scan8[i8*4]], 2, 2, 8, 0, 4); | |
1201 continue; | |
1202 } | |
1203 | |
1204 ref0 = l1ref0[x8 + y8*h->b8_stride]; | |
1205 dist_scale_factor = h->dist_scale_factor[ref0]; | |
1206 | |
1207 fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, ref0, 1); | |
1208 fill_rectangle(&h->ref_cache[1][scan8[i8*4]], 2, 2, 8, 0, 1); | |
1209 for(i4=0; i4<4; i4++){ | |
1210 const int16_t *mv_col = l1mv0[x8*2 + (i4&1) + (y8*2 + (i4>>1))*h->b_stride]; | |
1211 int16_t *mv_l0 = h->mv_cache[0][scan8[i8*4+i4]]; | |
1212 mv_l0[0] = (dist_scale_factor * mv_col[0] + 128) >> 8; | |
1213 mv_l0[1] = (dist_scale_factor * mv_col[1] + 128) >> 8; | |
1214 *(uint32_t*)h->mv_cache[1][scan8[i8*4+i4]] = | |
1215 pack16to32(mv_l0[0]-mv_col[0],mv_l0[1]-mv_col[1]); | |
1216 } | |
1217 } | |
1218 } | |
1219 } | |
1220 } | |
1221 | |
1168 | 1222 static inline void write_back_motion(H264Context *h, int mb_type){ |
1223 MpegEncContext * const s = &h->s; | |
1224 const int b_xy = 4*s->mb_x + 4*s->mb_y*h->b_stride; | |
1225 const int b8_xy= 2*s->mb_x + 2*s->mb_y*h->b8_stride; | |
1226 int list; | |
1227 | |
1228 for(list=0; list<2; list++){ | |
1229 int y; | |
1230 if((!IS_8X8(mb_type)) && !USES_LIST(mb_type, list)){ | |
1231 if(1){ //FIXME skip or never read if mb_type doesnt use it | |
1232 for(y=0; y<4; y++){ | |
1233 *(uint64_t*)s->current_picture.motion_val[list][b_xy + 0 + y*h->b_stride]= | |
1234 *(uint64_t*)s->current_picture.motion_val[list][b_xy + 2 + y*h->b_stride]= 0; | |
1235 } | |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
1236 if( h->pps.cabac ) { |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
1237 /* FIXME needed ? */ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
1238 for(y=0; y<4; y++){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
1239 *(uint64_t*)h->mvd_table[list][b_xy + 0 + y*h->b_stride]= |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
1240 *(uint64_t*)h->mvd_table[list][b_xy + 2 + y*h->b_stride]= 0; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
1241 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
1242 } |
1168 | 1243 for(y=0; y<2; y++){ |
2365
b76a4977447a
Fixed typo which caused incorrect motion prediction in B-frames. patch by (Loren Merritt <lorenm ta u tod washington tod edu>)
michael
parents:
2336
diff
changeset
|
1244 *(uint16_t*)&s->current_picture.ref_index[list][b8_xy + y*h->b8_stride]= (LIST_NOT_USED&0xFF)*0x0101; |
1168 | 1245 } |
1246 } | |
2396 | 1247 continue; |
1168 | 1248 } |
1249 | |
1250 for(y=0; y<4; y++){ | |
1251 *(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]; | |
1252 *(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]; | |
1253 } | |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
1254 if( h->pps.cabac ) { |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
1255 for(y=0; y<4; y++){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
1256 *(uint64_t*)h->mvd_table[list][b_xy + 0 + y*h->b_stride]= *(uint64_t*)h->mvd_cache[list][scan8[0]+0 + 8*y]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
1257 *(uint64_t*)h->mvd_table[list][b_xy + 2 + y*h->b_stride]= *(uint64_t*)h->mvd_cache[list][scan8[0]+2 + 8*y]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
1258 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
1259 } |
1168 | 1260 for(y=0; y<2; y++){ |
1261 s->current_picture.ref_index[list][b8_xy + 0 + y*h->b8_stride]= h->ref_cache[list][scan8[0]+0 + 16*y]; | |
1262 s->current_picture.ref_index[list][b8_xy + 1 + y*h->b8_stride]= h->ref_cache[list][scan8[0]+2 + 16*y]; | |
1263 } | |
1264 } | |
2396 | 1265 |
1266 if(h->slice_type == B_TYPE && h->pps.cabac){ | |
1267 if(IS_8X8(mb_type)){ | |
1268 h->direct_table[b8_xy+1+0*h->b8_stride] = IS_DIRECT(h->sub_mb_type[1]) ? 1 : 0; | |
1269 h->direct_table[b8_xy+0+1*h->b8_stride] = IS_DIRECT(h->sub_mb_type[2]) ? 1 : 0; | |
1270 h->direct_table[b8_xy+1+1*h->b8_stride] = IS_DIRECT(h->sub_mb_type[3]) ? 1 : 0; | |
1271 } | |
1272 } | |
1168 | 1273 } |
1274 | |
1275 /** | |
1276 * Decodes a network abstraction layer unit. | |
1277 * @param consumed is the number of bytes used as input | |
1278 * @param length is the length of the array | |
1279 * @param dst_length is the number of decoded bytes FIXME here or a decode rbsp ttailing? | |
1280 * @returns decoded bytes, might be src+1 if no escapes | |
1281 */ | |
1282 static uint8_t *decode_nal(H264Context *h, uint8_t *src, int *dst_length, int *consumed, int length){ | |
1283 int i, si, di; | |
1284 uint8_t *dst; | |
1285 | |
1286 // src[0]&0x80; //forbidden bit | |
1287 h->nal_ref_idc= src[0]>>5; | |
1288 h->nal_unit_type= src[0]&0x1F; | |
1289 | |
1290 src++; length--; | |
1291 #if 0 | |
1292 for(i=0; i<length; i++) | |
1293 printf("%2X ", src[i]); | |
1294 #endif | |
1295 for(i=0; i+1<length; i+=2){ | |
1296 if(src[i]) continue; | |
1297 if(i>0 && src[i-1]==0) i--; | |
1298 if(i+2<length && src[i+1]==0 && src[i+2]<=3){ | |
1299 if(src[i+2]!=3){ | |
1300 /* startcode, so we must be past the end */ | |
1301 length=i; | |
1302 } | |
1303 break; | |
1304 } | |
1305 } | |
1306 | |
1307 if(i>=length-1){ //no escaped 0 | |
1308 *dst_length= length; | |
1309 *consumed= length+1; //+1 for the header | |
1310 return src; | |
1311 } | |
1312 | |
1313 h->rbsp_buffer= av_fast_realloc(h->rbsp_buffer, &h->rbsp_buffer_size, length); | |
1314 dst= h->rbsp_buffer; | |
1315 | |
1316 //printf("deoding esc\n"); | |
1317 si=di=0; | |
1318 while(si<length){ | |
1319 //remove escapes (very rare 1:2^22) | |
1320 if(si+2<length && src[si]==0 && src[si+1]==0 && src[si+2]<=3){ | |
1321 if(src[si+2]==3){ //escape | |
1322 dst[di++]= 0; | |
1323 dst[di++]= 0; | |
1324 si+=3; | |
1957
54411768fa38
h264 nal decoding fix by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1956
diff
changeset
|
1325 continue; |
1168 | 1326 }else //next start code |
1327 break; | |
1328 } | |
1329 | |
1330 dst[di++]= src[si++]; | |
1331 } | |
1332 | |
1333 *dst_length= di; | |
1334 *consumed= si + 1;//+1 for the header | |
1335 //FIXME store exact number of bits in the getbitcontext (its needed for decoding) | |
1336 return dst; | |
1337 } | |
1338 | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
1339 #if 0 |
1168 | 1340 /** |
1341 * @param src the data which should be escaped | |
1342 * @param dst the target buffer, dst+1 == src is allowed as a special case | |
1343 * @param length the length of the src data | |
1344 * @param dst_length the length of the dst array | |
1345 * @returns length of escaped data in bytes or -1 if an error occured | |
1346 */ | |
1347 static int encode_nal(H264Context *h, uint8_t *dst, uint8_t *src, int length, int dst_length){ | |
1348 int i, escape_count, si, di; | |
1349 uint8_t *temp; | |
1350 | |
1351 assert(length>=0); | |
1352 assert(dst_length>0); | |
1353 | |
1354 dst[0]= (h->nal_ref_idc<<5) + h->nal_unit_type; | |
1355 | |
1356 if(length==0) return 1; | |
1357 | |
1358 escape_count= 0; | |
1359 for(i=0; i<length; i+=2){ | |
1360 if(src[i]) continue; | |
1361 if(i>0 && src[i-1]==0) | |
1362 i--; | |
1363 if(i+2<length && src[i+1]==0 && src[i+2]<=3){ | |
1364 escape_count++; | |
1365 i+=2; | |
1366 } | |
1367 } | |
1368 | |
1369 if(escape_count==0){ | |
1370 if(dst+1 != src) | |
1371 memcpy(dst+1, src, length); | |
1372 return length + 1; | |
1373 } | |
1374 | |
1375 if(length + escape_count + 1> dst_length) | |
1376 return -1; | |
1377 | |
1378 //this should be damn rare (hopefully) | |
1379 | |
1380 h->rbsp_buffer= av_fast_realloc(h->rbsp_buffer, &h->rbsp_buffer_size, length + escape_count); | |
1381 temp= h->rbsp_buffer; | |
1382 //printf("encoding esc\n"); | |
1383 | |
1384 si= 0; | |
1385 di= 0; | |
1386 while(si < length){ | |
1387 if(si+2<length && src[si]==0 && src[si+1]==0 && src[si+2]<=3){ | |
1388 temp[di++]= 0; si++; | |
1389 temp[di++]= 0; si++; | |
1390 temp[di++]= 3; | |
1391 temp[di++]= src[si++]; | |
1392 } | |
1393 else | |
1394 temp[di++]= src[si++]; | |
1395 } | |
1396 memcpy(dst+1, temp, length+escape_count); | |
1397 | |
1398 assert(di == length+escape_count); | |
1399 | |
1400 return di + 1; | |
1401 } | |
1402 | |
1403 /** | |
1404 * write 1,10,100,1000,... for alignment, yes its exactly inverse to mpeg4 | |
1405 */ | |
1406 static void encode_rbsp_trailing(PutBitContext *pb){ | |
1407 int length; | |
1408 put_bits(pb, 1, 1); | |
1786 | 1409 length= (-put_bits_count(pb))&7; |
1168 | 1410 if(length) put_bits(pb, length, 0); |
1411 } | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
1412 #endif |
1168 | 1413 |
1414 /** | |
1415 * identifies the exact end of the bitstream | |
1416 * @return the length of the trailing, or 0 if damaged | |
1417 */ | |
1418 static int decode_rbsp_trailing(uint8_t *src){ | |
1419 int v= *src; | |
1420 int r; | |
1421 | |
1170 | 1422 tprintf("rbsp trailing %X\n", v); |
1168 | 1423 |
1424 for(r=1; r<9; r++){ | |
1425 if(v&1) return r; | |
1426 v>>=1; | |
1427 } | |
1428 return 0; | |
1429 } | |
1430 | |
1431 /** | |
1432 * idct tranforms the 16 dc values and dequantize them. | |
1433 * @param qp quantization parameter | |
1434 */ | |
1435 static void h264_luma_dc_dequant_idct_c(DCTELEM *block, int qp){ | |
1436 const int qmul= dequant_coeff[qp][0]; | |
1437 #define stride 16 | |
1438 int i; | |
1439 int temp[16]; //FIXME check if this is a good idea | |
1440 static const int x_offset[4]={0, 1*stride, 4* stride, 5*stride}; | |
1441 static const int y_offset[4]={0, 2*stride, 8* stride, 10*stride}; | |
1442 | |
1443 //memset(block, 64, 2*256); | |
1444 //return; | |
1445 for(i=0; i<4; i++){ | |
1446 const int offset= y_offset[i]; | |
1447 const int z0= block[offset+stride*0] + block[offset+stride*4]; | |
1448 const int z1= block[offset+stride*0] - block[offset+stride*4]; | |
1449 const int z2= block[offset+stride*1] - block[offset+stride*5]; | |
1450 const int z3= block[offset+stride*1] + block[offset+stride*5]; | |
1451 | |
1452 temp[4*i+0]= z0+z3; | |
1453 temp[4*i+1]= z1+z2; | |
1454 temp[4*i+2]= z1-z2; | |
1455 temp[4*i+3]= z0-z3; | |
1456 } | |
1457 | |
1458 for(i=0; i<4; i++){ | |
1459 const int offset= x_offset[i]; | |
1460 const int z0= temp[4*0+i] + temp[4*2+i]; | |
1461 const int z1= temp[4*0+i] - temp[4*2+i]; | |
1462 const int z2= temp[4*1+i] - temp[4*3+i]; | |
1463 const int z3= temp[4*1+i] + temp[4*3+i]; | |
1464 | |
1465 block[stride*0 +offset]= ((z0 + z3)*qmul + 2)>>2; //FIXME think about merging this into decode_resdual | |
1466 block[stride*2 +offset]= ((z1 + z2)*qmul + 2)>>2; | |
1467 block[stride*8 +offset]= ((z1 - z2)*qmul + 2)>>2; | |
1468 block[stride*10+offset]= ((z0 - z3)*qmul + 2)>>2; | |
1469 } | |
1470 } | |
1471 | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
1472 #if 0 |
1168 | 1473 /** |
1474 * dct tranforms the 16 dc values. | |
1475 * @param qp quantization parameter ??? FIXME | |
1476 */ | |
1477 static void h264_luma_dc_dct_c(DCTELEM *block/*, int qp*/){ | |
1478 // const int qmul= dequant_coeff[qp][0]; | |
1479 int i; | |
1480 int temp[16]; //FIXME check if this is a good idea | |
1481 static const int x_offset[4]={0, 1*stride, 4* stride, 5*stride}; | |
1482 static const int y_offset[4]={0, 2*stride, 8* stride, 10*stride}; | |
1483 | |
1484 for(i=0; i<4; i++){ | |
1485 const int offset= y_offset[i]; | |
1486 const int z0= block[offset+stride*0] + block[offset+stride*4]; | |
1487 const int z1= block[offset+stride*0] - block[offset+stride*4]; | |
1488 const int z2= block[offset+stride*1] - block[offset+stride*5]; | |
1489 const int z3= block[offset+stride*1] + block[offset+stride*5]; | |
1490 | |
1491 temp[4*i+0]= z0+z3; | |
1492 temp[4*i+1]= z1+z2; | |
1493 temp[4*i+2]= z1-z2; | |
1494 temp[4*i+3]= z0-z3; | |
1495 } | |
1496 | |
1497 for(i=0; i<4; i++){ | |
1498 const int offset= x_offset[i]; | |
1499 const int z0= temp[4*0+i] + temp[4*2+i]; | |
1500 const int z1= temp[4*0+i] - temp[4*2+i]; | |
1501 const int z2= temp[4*1+i] - temp[4*3+i]; | |
1502 const int z3= temp[4*1+i] + temp[4*3+i]; | |
1503 | |
1504 block[stride*0 +offset]= (z0 + z3)>>1; | |
1505 block[stride*2 +offset]= (z1 + z2)>>1; | |
1506 block[stride*8 +offset]= (z1 - z2)>>1; | |
1507 block[stride*10+offset]= (z0 - z3)>>1; | |
1508 } | |
1509 } | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
1510 #endif |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
1511 |
1168 | 1512 #undef xStride |
1513 #undef stride | |
1514 | |
1515 static void chroma_dc_dequant_idct_c(DCTELEM *block, int qp){ | |
1516 const int qmul= dequant_coeff[qp][0]; | |
1517 const int stride= 16*2; | |
1518 const int xStride= 16; | |
1519 int a,b,c,d,e; | |
1520 | |
1521 a= block[stride*0 + xStride*0]; | |
1522 b= block[stride*0 + xStride*1]; | |
1523 c= block[stride*1 + xStride*0]; | |
1524 d= block[stride*1 + xStride*1]; | |
1525 | |
1526 e= a-b; | |
1527 a= a+b; | |
1528 b= c-d; | |
1529 c= c+d; | |
1530 | |
1531 block[stride*0 + xStride*0]= ((a+c)*qmul + 0)>>1; | |
1532 block[stride*0 + xStride*1]= ((e+b)*qmul + 0)>>1; | |
1533 block[stride*1 + xStride*0]= ((a-c)*qmul + 0)>>1; | |
1534 block[stride*1 + xStride*1]= ((e-b)*qmul + 0)>>1; | |
1535 } | |
1536 | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
1537 #if 0 |
1168 | 1538 static void chroma_dc_dct_c(DCTELEM *block){ |
1539 const int stride= 16*2; | |
1540 const int xStride= 16; | |
1541 int a,b,c,d,e; | |
1542 | |
1543 a= block[stride*0 + xStride*0]; | |
1544 b= block[stride*0 + xStride*1]; | |
1545 c= block[stride*1 + xStride*0]; | |
1546 d= block[stride*1 + xStride*1]; | |
1547 | |
1548 e= a-b; | |
1549 a= a+b; | |
1550 b= c-d; | |
1551 c= c+d; | |
1552 | |
1553 block[stride*0 + xStride*0]= (a+c); | |
1554 block[stride*0 + xStride*1]= (e+b); | |
1555 block[stride*1 + xStride*0]= (a-c); | |
1556 block[stride*1 + xStride*1]= (e-b); | |
1557 } | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
1558 #endif |
1168 | 1559 |
1560 /** | |
1561 * gets the chroma qp. | |
1562 */ | |
1563 static inline int get_chroma_qp(H264Context *h, int qscale){ | |
1564 | |
1565 return chroma_qp[clip(qscale + h->pps.chroma_qp_index_offset, 0, 51)]; | |
1566 } | |
1567 | |
1568 | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
1569 #if 0 |
1168 | 1570 static void h264_diff_dct_c(DCTELEM *block, uint8_t *src1, uint8_t *src2, int stride){ |
1571 int i; | |
1572 //FIXME try int temp instead of block | |
1573 | |
1574 for(i=0; i<4; i++){ | |
1575 const int d0= src1[0 + i*stride] - src2[0 + i*stride]; | |
1576 const int d1= src1[1 + i*stride] - src2[1 + i*stride]; | |
1577 const int d2= src1[2 + i*stride] - src2[2 + i*stride]; | |
1578 const int d3= src1[3 + i*stride] - src2[3 + i*stride]; | |
1579 const int z0= d0 + d3; | |
1580 const int z3= d0 - d3; | |
1581 const int z1= d1 + d2; | |
1582 const int z2= d1 - d2; | |
1583 | |
1584 block[0 + 4*i]= z0 + z1; | |
1585 block[1 + 4*i]= 2*z3 + z2; | |
1586 block[2 + 4*i]= z0 - z1; | |
1587 block[3 + 4*i]= z3 - 2*z2; | |
1588 } | |
1589 | |
1590 for(i=0; i<4; i++){ | |
1591 const int z0= block[0*4 + i] + block[3*4 + i]; | |
1592 const int z3= block[0*4 + i] - block[3*4 + i]; | |
1593 const int z1= block[1*4 + i] + block[2*4 + i]; | |
1594 const int z2= block[1*4 + i] - block[2*4 + i]; | |
1595 | |
1596 block[0*4 + i]= z0 + z1; | |
1597 block[1*4 + i]= 2*z3 + z2; | |
1598 block[2*4 + i]= z0 - z1; | |
1599 block[3*4 + i]= z3 - 2*z2; | |
1600 } | |
1601 } | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
1602 #endif |
1168 | 1603 |
1604 //FIXME need to check that this doesnt overflow signed 32 bit for low qp, iam not sure, its very close | |
1605 //FIXME check that gcc inlines this (and optimizes intra & seperate_dc stuff away) | |
1606 static inline int quantize_c(DCTELEM *block, uint8_t *scantable, int qscale, int intra, int seperate_dc){ | |
1607 int i; | |
1608 const int * const quant_table= quant_coeff[qscale]; | |
1609 const int bias= intra ? (1<<QUANT_SHIFT)/3 : (1<<QUANT_SHIFT)/6; | |
1610 const unsigned int threshold1= (1<<QUANT_SHIFT) - bias - 1; | |
1611 const unsigned int threshold2= (threshold1<<1); | |
1612 int last_non_zero; | |
1613 | |
1614 if(seperate_dc){ | |
1615 if(qscale<=18){ | |
1616 //avoid overflows | |
1617 const int dc_bias= intra ? (1<<(QUANT_SHIFT-2))/3 : (1<<(QUANT_SHIFT-2))/6; | |
1618 const unsigned int dc_threshold1= (1<<(QUANT_SHIFT-2)) - dc_bias - 1; | |
1619 const unsigned int dc_threshold2= (dc_threshold1<<1); | |
1620 | |
1621 int level= block[0]*quant_coeff[qscale+18][0]; | |
1622 if(((unsigned)(level+dc_threshold1))>dc_threshold2){ | |
1623 if(level>0){ | |
1624 level= (dc_bias + level)>>(QUANT_SHIFT-2); | |
1625 block[0]= level; | |
1626 }else{ | |
1627 level= (dc_bias - level)>>(QUANT_SHIFT-2); | |
1628 block[0]= -level; | |
1629 } | |
1630 // last_non_zero = i; | |
1631 }else{ | |
1632 block[0]=0; | |
1633 } | |
1634 }else{ | |
1635 const int dc_bias= intra ? (1<<(QUANT_SHIFT+1))/3 : (1<<(QUANT_SHIFT+1))/6; | |
1636 const unsigned int dc_threshold1= (1<<(QUANT_SHIFT+1)) - dc_bias - 1; | |
1637 const unsigned int dc_threshold2= (dc_threshold1<<1); | |
1638 | |
1639 int level= block[0]*quant_table[0]; | |
1640 if(((unsigned)(level+dc_threshold1))>dc_threshold2){ | |
1641 if(level>0){ | |
1642 level= (dc_bias + level)>>(QUANT_SHIFT+1); | |
1643 block[0]= level; | |
1644 }else{ | |
1645 level= (dc_bias - level)>>(QUANT_SHIFT+1); | |
1646 block[0]= -level; | |
1647 } | |
1648 // last_non_zero = i; | |
1649 }else{ | |
1650 block[0]=0; | |
1651 } | |
1652 } | |
1653 last_non_zero= 0; | |
1654 i=1; | |
1655 }else{ | |
1656 last_non_zero= -1; | |
1657 i=0; | |
1658 } | |
1659 | |
1660 for(; i<16; i++){ | |
1661 const int j= scantable[i]; | |
1662 int level= block[j]*quant_table[j]; | |
1663 | |
1664 // if( bias+level >= (1<<(QMAT_SHIFT - 3)) | |
1665 // || bias-level >= (1<<(QMAT_SHIFT - 3))){ | |
1666 if(((unsigned)(level+threshold1))>threshold2){ | |
1667 if(level>0){ | |
1668 level= (bias + level)>>QUANT_SHIFT; | |
1669 block[j]= level; | |
1670 }else{ | |
1671 level= (bias - level)>>QUANT_SHIFT; | |
1672 block[j]= -level; | |
1673 } | |
1674 last_non_zero = i; | |
1675 }else{ | |
1676 block[j]=0; | |
1677 } | |
1678 } | |
1679 | |
1680 return last_non_zero; | |
1681 } | |
1682 | |
1683 static void pred4x4_vertical_c(uint8_t *src, uint8_t *topright, int stride){ | |
1684 const uint32_t a= ((uint32_t*)(src-stride))[0]; | |
1685 ((uint32_t*)(src+0*stride))[0]= a; | |
1686 ((uint32_t*)(src+1*stride))[0]= a; | |
1687 ((uint32_t*)(src+2*stride))[0]= a; | |
1688 ((uint32_t*)(src+3*stride))[0]= a; | |
1689 } | |
1690 | |
1691 static void pred4x4_horizontal_c(uint8_t *src, uint8_t *topright, int stride){ | |
1692 ((uint32_t*)(src+0*stride))[0]= src[-1+0*stride]*0x01010101; | |
1693 ((uint32_t*)(src+1*stride))[0]= src[-1+1*stride]*0x01010101; | |
1694 ((uint32_t*)(src+2*stride))[0]= src[-1+2*stride]*0x01010101; | |
1695 ((uint32_t*)(src+3*stride))[0]= src[-1+3*stride]*0x01010101; | |
1696 } | |
1697 | |
1698 static void pred4x4_dc_c(uint8_t *src, uint8_t *topright, int stride){ | |
1699 const int dc= ( src[-stride] + src[1-stride] + src[2-stride] + src[3-stride] | |
1700 + src[-1+0*stride] + src[-1+1*stride] + src[-1+2*stride] + src[-1+3*stride] + 4) >>3; | |
1701 | |
1702 ((uint32_t*)(src+0*stride))[0]= | |
1703 ((uint32_t*)(src+1*stride))[0]= | |
1704 ((uint32_t*)(src+2*stride))[0]= | |
1705 ((uint32_t*)(src+3*stride))[0]= dc* 0x01010101; | |
1706 } | |
1707 | |
1708 static void pred4x4_left_dc_c(uint8_t *src, uint8_t *topright, int stride){ | |
1709 const int dc= ( src[-1+0*stride] + src[-1+1*stride] + src[-1+2*stride] + src[-1+3*stride] + 2) >>2; | |
1710 | |
1711 ((uint32_t*)(src+0*stride))[0]= | |
1712 ((uint32_t*)(src+1*stride))[0]= | |
1713 ((uint32_t*)(src+2*stride))[0]= | |
1714 ((uint32_t*)(src+3*stride))[0]= dc* 0x01010101; | |
1715 } | |
1716 | |
1717 static void pred4x4_top_dc_c(uint8_t *src, uint8_t *topright, int stride){ | |
1718 const int dc= ( src[-stride] + src[1-stride] + src[2-stride] + src[3-stride] + 2) >>2; | |
1719 | |
1720 ((uint32_t*)(src+0*stride))[0]= | |
1721 ((uint32_t*)(src+1*stride))[0]= | |
1722 ((uint32_t*)(src+2*stride))[0]= | |
1723 ((uint32_t*)(src+3*stride))[0]= dc* 0x01010101; | |
1724 } | |
1725 | |
1726 static void pred4x4_128_dc_c(uint8_t *src, uint8_t *topright, int stride){ | |
1727 ((uint32_t*)(src+0*stride))[0]= | |
1728 ((uint32_t*)(src+1*stride))[0]= | |
1729 ((uint32_t*)(src+2*stride))[0]= | |
1730 ((uint32_t*)(src+3*stride))[0]= 128U*0x01010101U; | |
1731 } | |
1732 | |
1733 | |
1734 #define LOAD_TOP_RIGHT_EDGE\ | |
1735 const int t4= topright[0];\ | |
1736 const int t5= topright[1];\ | |
1737 const int t6= topright[2];\ | |
1738 const int t7= topright[3];\ | |
1739 | |
1740 #define LOAD_LEFT_EDGE\ | |
1741 const int l0= src[-1+0*stride];\ | |
1742 const int l1= src[-1+1*stride];\ | |
1743 const int l2= src[-1+2*stride];\ | |
1744 const int l3= src[-1+3*stride];\ | |
1745 | |
1746 #define LOAD_TOP_EDGE\ | |
1747 const int t0= src[ 0-1*stride];\ | |
1748 const int t1= src[ 1-1*stride];\ | |
1749 const int t2= src[ 2-1*stride];\ | |
1750 const int t3= src[ 3-1*stride];\ | |
1751 | |
1752 static void pred4x4_down_right_c(uint8_t *src, uint8_t *topright, int stride){ | |
1753 const int lt= src[-1-1*stride]; | |
1754 LOAD_TOP_EDGE | |
1755 LOAD_LEFT_EDGE | |
1756 | |
1757 src[0+3*stride]=(l3 + 2*l2 + l1 + 2)>>2; | |
1758 src[0+2*stride]= | |
1759 src[1+3*stride]=(l2 + 2*l1 + l0 + 2)>>2; | |
1760 src[0+1*stride]= | |
1761 src[1+2*stride]= | |
1762 src[2+3*stride]=(l1 + 2*l0 + lt + 2)>>2; | |
1763 src[0+0*stride]= | |
1764 src[1+1*stride]= | |
1765 src[2+2*stride]= | |
1766 src[3+3*stride]=(l0 + 2*lt + t0 + 2)>>2; | |
1767 src[1+0*stride]= | |
1768 src[2+1*stride]= | |
1769 src[3+2*stride]=(lt + 2*t0 + t1 + 2)>>2; | |
1770 src[2+0*stride]= | |
1771 src[3+1*stride]=(t0 + 2*t1 + t2 + 2)>>2; | |
1772 src[3+0*stride]=(t1 + 2*t2 + t3 + 2)>>2; | |
1282 | 1773 } |
1168 | 1774 |
1775 static void pred4x4_down_left_c(uint8_t *src, uint8_t *topright, int stride){ | |
1776 LOAD_TOP_EDGE | |
1777 LOAD_TOP_RIGHT_EDGE | |
1778 // LOAD_LEFT_EDGE | |
1779 | |
1780 src[0+0*stride]=(t0 + t2 + 2*t1 + 2)>>2; | |
1781 src[1+0*stride]= | |
1782 src[0+1*stride]=(t1 + t3 + 2*t2 + 2)>>2; | |
1783 src[2+0*stride]= | |
1784 src[1+1*stride]= | |
1785 src[0+2*stride]=(t2 + t4 + 2*t3 + 2)>>2; | |
1786 src[3+0*stride]= | |
1787 src[2+1*stride]= | |
1788 src[1+2*stride]= | |
1789 src[0+3*stride]=(t3 + t5 + 2*t4 + 2)>>2; | |
1790 src[3+1*stride]= | |
1791 src[2+2*stride]= | |
1792 src[1+3*stride]=(t4 + t6 + 2*t5 + 2)>>2; | |
1793 src[3+2*stride]= | |
1794 src[2+3*stride]=(t5 + t7 + 2*t6 + 2)>>2; | |
1795 src[3+3*stride]=(t6 + 3*t7 + 2)>>2; | |
1282 | 1796 } |
1168 | 1797 |
1798 static void pred4x4_vertical_right_c(uint8_t *src, uint8_t *topright, int stride){ | |
1799 const int lt= src[-1-1*stride]; | |
1800 LOAD_TOP_EDGE | |
1801 LOAD_LEFT_EDGE | |
1802 const __attribute__((unused)) int unu= l3; | |
1803 | |
1804 src[0+0*stride]= | |
1805 src[1+2*stride]=(lt + t0 + 1)>>1; | |
1806 src[1+0*stride]= | |
1807 src[2+2*stride]=(t0 + t1 + 1)>>1; | |
1808 src[2+0*stride]= | |
1809 src[3+2*stride]=(t1 + t2 + 1)>>1; | |
1810 src[3+0*stride]=(t2 + t3 + 1)>>1; | |
1811 src[0+1*stride]= | |
1812 src[1+3*stride]=(l0 + 2*lt + t0 + 2)>>2; | |
1813 src[1+1*stride]= | |
1814 src[2+3*stride]=(lt + 2*t0 + t1 + 2)>>2; | |
1815 src[2+1*stride]= | |
1816 src[3+3*stride]=(t0 + 2*t1 + t2 + 2)>>2; | |
1817 src[3+1*stride]=(t1 + 2*t2 + t3 + 2)>>2; | |
1818 src[0+2*stride]=(lt + 2*l0 + l1 + 2)>>2; | |
1819 src[0+3*stride]=(l0 + 2*l1 + l2 + 2)>>2; | |
1282 | 1820 } |
1168 | 1821 |
1822 static void pred4x4_vertical_left_c(uint8_t *src, uint8_t *topright, int stride){ | |
1823 LOAD_TOP_EDGE | |
1824 LOAD_TOP_RIGHT_EDGE | |
1825 const __attribute__((unused)) int unu= t7; | |
1826 | |
1827 src[0+0*stride]=(t0 + t1 + 1)>>1; | |
1828 src[1+0*stride]= | |
1829 src[0+2*stride]=(t1 + t2 + 1)>>1; | |
1830 src[2+0*stride]= | |
1831 src[1+2*stride]=(t2 + t3 + 1)>>1; | |
1832 src[3+0*stride]= | |
1833 src[2+2*stride]=(t3 + t4+ 1)>>1; | |
1834 src[3+2*stride]=(t4 + t5+ 1)>>1; | |
1835 src[0+1*stride]=(t0 + 2*t1 + t2 + 2)>>2; | |
1836 src[1+1*stride]= | |
1837 src[0+3*stride]=(t1 + 2*t2 + t3 + 2)>>2; | |
1838 src[2+1*stride]= | |
1839 src[1+3*stride]=(t2 + 2*t3 + t4 + 2)>>2; | |
1840 src[3+1*stride]= | |
1841 src[2+3*stride]=(t3 + 2*t4 + t5 + 2)>>2; | |
1842 src[3+3*stride]=(t4 + 2*t5 + t6 + 2)>>2; | |
1282 | 1843 } |
1168 | 1844 |
1845 static void pred4x4_horizontal_up_c(uint8_t *src, uint8_t *topright, int stride){ | |
1846 LOAD_LEFT_EDGE | |
1847 | |
1848 src[0+0*stride]=(l0 + l1 + 1)>>1; | |
1849 src[1+0*stride]=(l0 + 2*l1 + l2 + 2)>>2; | |
1850 src[2+0*stride]= | |
1851 src[0+1*stride]=(l1 + l2 + 1)>>1; | |
1852 src[3+0*stride]= | |
1853 src[1+1*stride]=(l1 + 2*l2 + l3 + 2)>>2; | |
1854 src[2+1*stride]= | |
1855 src[0+2*stride]=(l2 + l3 + 1)>>1; | |
1856 src[3+1*stride]= | |
1857 src[1+2*stride]=(l2 + 2*l3 + l3 + 2)>>2; | |
1858 src[3+2*stride]= | |
1859 src[1+3*stride]= | |
1860 src[0+3*stride]= | |
1861 src[2+2*stride]= | |
1862 src[2+3*stride]= | |
1863 src[3+3*stride]=l3; | |
1282 | 1864 } |
1168 | 1865 |
1866 static void pred4x4_horizontal_down_c(uint8_t *src, uint8_t *topright, int stride){ | |
1867 const int lt= src[-1-1*stride]; | |
1868 LOAD_TOP_EDGE | |
1869 LOAD_LEFT_EDGE | |
1870 const __attribute__((unused)) int unu= t3; | |
1871 | |
1872 src[0+0*stride]= | |
1873 src[2+1*stride]=(lt + l0 + 1)>>1; | |
1874 src[1+0*stride]= | |
1875 src[3+1*stride]=(l0 + 2*lt + t0 + 2)>>2; | |
1876 src[2+0*stride]=(lt + 2*t0 + t1 + 2)>>2; | |
1877 src[3+0*stride]=(t0 + 2*t1 + t2 + 2)>>2; | |
1878 src[0+1*stride]= | |
1879 src[2+2*stride]=(l0 + l1 + 1)>>1; | |
1880 src[1+1*stride]= | |
1881 src[3+2*stride]=(lt + 2*l0 + l1 + 2)>>2; | |
1882 src[0+2*stride]= | |
1883 src[2+3*stride]=(l1 + l2+ 1)>>1; | |
1884 src[1+2*stride]= | |
1885 src[3+3*stride]=(l0 + 2*l1 + l2 + 2)>>2; | |
1886 src[0+3*stride]=(l2 + l3 + 1)>>1; | |
1887 src[1+3*stride]=(l1 + 2*l2 + l3 + 2)>>2; | |
1282 | 1888 } |
1168 | 1889 |
1890 static void pred16x16_vertical_c(uint8_t *src, int stride){ | |
1891 int i; | |
1892 const uint32_t a= ((uint32_t*)(src-stride))[0]; | |
1893 const uint32_t b= ((uint32_t*)(src-stride))[1]; | |
1894 const uint32_t c= ((uint32_t*)(src-stride))[2]; | |
1895 const uint32_t d= ((uint32_t*)(src-stride))[3]; | |
1896 | |
1897 for(i=0; i<16; i++){ | |
1898 ((uint32_t*)(src+i*stride))[0]= a; | |
1899 ((uint32_t*)(src+i*stride))[1]= b; | |
1900 ((uint32_t*)(src+i*stride))[2]= c; | |
1901 ((uint32_t*)(src+i*stride))[3]= d; | |
1902 } | |
1903 } | |
1904 | |
1905 static void pred16x16_horizontal_c(uint8_t *src, int stride){ | |
1906 int i; | |
1907 | |
1908 for(i=0; i<16; i++){ | |
1909 ((uint32_t*)(src+i*stride))[0]= | |
1910 ((uint32_t*)(src+i*stride))[1]= | |
1911 ((uint32_t*)(src+i*stride))[2]= | |
1912 ((uint32_t*)(src+i*stride))[3]= src[-1+i*stride]*0x01010101; | |
1913 } | |
1914 } | |
1915 | |
1916 static void pred16x16_dc_c(uint8_t *src, int stride){ | |
1917 int i, dc=0; | |
1918 | |
1919 for(i=0;i<16; i++){ | |
1920 dc+= src[-1+i*stride]; | |
1921 } | |
1922 | |
1923 for(i=0;i<16; i++){ | |
1924 dc+= src[i-stride]; | |
1925 } | |
1926 | |
1927 dc= 0x01010101*((dc + 16)>>5); | |
1928 | |
1929 for(i=0; i<16; i++){ | |
1930 ((uint32_t*)(src+i*stride))[0]= | |
1931 ((uint32_t*)(src+i*stride))[1]= | |
1932 ((uint32_t*)(src+i*stride))[2]= | |
1933 ((uint32_t*)(src+i*stride))[3]= dc; | |
1934 } | |
1935 } | |
1936 | |
1937 static void pred16x16_left_dc_c(uint8_t *src, int stride){ | |
1938 int i, dc=0; | |
1939 | |
1940 for(i=0;i<16; i++){ | |
1941 dc+= src[-1+i*stride]; | |
1942 } | |
1943 | |
1944 dc= 0x01010101*((dc + 8)>>4); | |
1945 | |
1946 for(i=0; i<16; i++){ | |
1947 ((uint32_t*)(src+i*stride))[0]= | |
1948 ((uint32_t*)(src+i*stride))[1]= | |
1949 ((uint32_t*)(src+i*stride))[2]= | |
1950 ((uint32_t*)(src+i*stride))[3]= dc; | |
1951 } | |
1952 } | |
1953 | |
1954 static void pred16x16_top_dc_c(uint8_t *src, int stride){ | |
1955 int i, dc=0; | |
1956 | |
1957 for(i=0;i<16; i++){ | |
1958 dc+= src[i-stride]; | |
1959 } | |
1960 dc= 0x01010101*((dc + 8)>>4); | |
1961 | |
1962 for(i=0; i<16; i++){ | |
1963 ((uint32_t*)(src+i*stride))[0]= | |
1964 ((uint32_t*)(src+i*stride))[1]= | |
1965 ((uint32_t*)(src+i*stride))[2]= | |
1966 ((uint32_t*)(src+i*stride))[3]= dc; | |
1967 } | |
1968 } | |
1969 | |
1970 static void pred16x16_128_dc_c(uint8_t *src, int stride){ | |
1971 int i; | |
1972 | |
1973 for(i=0; i<16; i++){ | |
1974 ((uint32_t*)(src+i*stride))[0]= | |
1975 ((uint32_t*)(src+i*stride))[1]= | |
1976 ((uint32_t*)(src+i*stride))[2]= | |
1977 ((uint32_t*)(src+i*stride))[3]= 0x01010101U*128U; | |
1978 } | |
1979 } | |
1980 | |
1234 | 1981 static inline void pred16x16_plane_compat_c(uint8_t *src, int stride, const int svq3){ |
1184
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
1982 int i, j, k; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
1983 int a; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
1984 uint8_t *cm = cropTbl + MAX_NEG_CROP; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
1985 const uint8_t * const src0 = src+7-stride; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
1986 const uint8_t *src1 = src+8*stride-1; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
1987 const uint8_t *src2 = src1-2*stride; // == src+6*stride-1; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
1988 int H = src0[1] - src0[-1]; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
1989 int V = src1[0] - src2[ 0]; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
1990 for(k=2; k<=8; ++k) { |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
1991 src1 += stride; src2 -= stride; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
1992 H += k*(src0[k] - src0[-k]); |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
1993 V += k*(src1[0] - src2[ 0]); |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
1994 } |
1234 | 1995 if(svq3){ |
1996 H = ( 5*(H/4) ) / 16; | |
1997 V = ( 5*(V/4) ) / 16; | |
1330
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1322
diff
changeset
|
1998 |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1322
diff
changeset
|
1999 /* required for 100% accuracy */ |
c05c381a9c47
- fix PLANE_PRED8x8 prediction (H/V are swapped, this is correct!)
tmmm
parents:
1322
diff
changeset
|
2000 i = H; H = V; V = i; |
1234 | 2001 }else{ |
2002 H = ( 5*H+32 ) >> 6; | |
2003 V = ( 5*V+32 ) >> 6; | |
2004 } | |
1184
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2005 |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2006 a = 16*(src1[0] + src2[16] + 1) - 7*(V+H); |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2007 for(j=16; j>0; --j) { |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2008 int b = a; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2009 a += V; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2010 for(i=-16; i<0; i+=4) { |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2011 src[16+i] = cm[ (b ) >> 5 ]; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2012 src[17+i] = cm[ (b+ H) >> 5 ]; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2013 src[18+i] = cm[ (b+2*H) >> 5 ]; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2014 src[19+i] = cm[ (b+3*H) >> 5 ]; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2015 b += 4*H; |
1168 | 2016 } |
1184
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2017 src += stride; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2018 } |
1168 | 2019 } |
2020 | |
1234 | 2021 static void pred16x16_plane_c(uint8_t *src, int stride){ |
2022 pred16x16_plane_compat_c(src, stride, 0); | |
2023 } | |
2024 | |
1168 | 2025 static void pred8x8_vertical_c(uint8_t *src, int stride){ |
2026 int i; | |
2027 const uint32_t a= ((uint32_t*)(src-stride))[0]; | |
2028 const uint32_t b= ((uint32_t*)(src-stride))[1]; | |
2029 | |
2030 for(i=0; i<8; i++){ | |
2031 ((uint32_t*)(src+i*stride))[0]= a; | |
2032 ((uint32_t*)(src+i*stride))[1]= b; | |
2033 } | |
2034 } | |
2035 | |
2036 static void pred8x8_horizontal_c(uint8_t *src, int stride){ | |
2037 int i; | |
2038 | |
2039 for(i=0; i<8; i++){ | |
2040 ((uint32_t*)(src+i*stride))[0]= | |
2041 ((uint32_t*)(src+i*stride))[1]= src[-1+i*stride]*0x01010101; | |
2042 } | |
2043 } | |
2044 | |
2045 static void pred8x8_128_dc_c(uint8_t *src, int stride){ | |
2046 int i; | |
2047 | |
2048 for(i=0; i<4; i++){ | |
2049 ((uint32_t*)(src+i*stride))[0]= | |
2050 ((uint32_t*)(src+i*stride))[1]= 0x01010101U*128U; | |
2051 } | |
2052 for(i=4; i<8; i++){ | |
2053 ((uint32_t*)(src+i*stride))[0]= | |
2054 ((uint32_t*)(src+i*stride))[1]= 0x01010101U*128U; | |
2055 } | |
2056 } | |
2057 | |
2058 static void pred8x8_left_dc_c(uint8_t *src, int stride){ | |
2059 int i; | |
2060 int dc0, dc2; | |
2061 | |
2062 dc0=dc2=0; | |
2063 for(i=0;i<4; i++){ | |
2064 dc0+= src[-1+i*stride]; | |
2065 dc2+= src[-1+(i+4)*stride]; | |
2066 } | |
2067 dc0= 0x01010101*((dc0 + 2)>>2); | |
2068 dc2= 0x01010101*((dc2 + 2)>>2); | |
2069 | |
2070 for(i=0; i<4; i++){ | |
2071 ((uint32_t*)(src+i*stride))[0]= | |
2072 ((uint32_t*)(src+i*stride))[1]= dc0; | |
2073 } | |
2074 for(i=4; i<8; i++){ | |
2075 ((uint32_t*)(src+i*stride))[0]= | |
2076 ((uint32_t*)(src+i*stride))[1]= dc2; | |
2077 } | |
2078 } | |
2079 | |
2080 static void pred8x8_top_dc_c(uint8_t *src, int stride){ | |
2081 int i; | |
2082 int dc0, dc1; | |
2083 | |
2084 dc0=dc1=0; | |
2085 for(i=0;i<4; i++){ | |
2086 dc0+= src[i-stride]; | |
2087 dc1+= src[4+i-stride]; | |
2088 } | |
2089 dc0= 0x01010101*((dc0 + 2)>>2); | |
2090 dc1= 0x01010101*((dc1 + 2)>>2); | |
2091 | |
2092 for(i=0; i<4; i++){ | |
2093 ((uint32_t*)(src+i*stride))[0]= dc0; | |
2094 ((uint32_t*)(src+i*stride))[1]= dc1; | |
2095 } | |
2096 for(i=4; i<8; i++){ | |
2097 ((uint32_t*)(src+i*stride))[0]= dc0; | |
2098 ((uint32_t*)(src+i*stride))[1]= dc1; | |
2099 } | |
2100 } | |
2101 | |
2102 | |
2103 static void pred8x8_dc_c(uint8_t *src, int stride){ | |
2104 int i; | |
2105 int dc0, dc1, dc2, dc3; | |
2106 | |
2107 dc0=dc1=dc2=0; | |
2108 for(i=0;i<4; i++){ | |
2109 dc0+= src[-1+i*stride] + src[i-stride]; | |
2110 dc1+= src[4+i-stride]; | |
2111 dc2+= src[-1+(i+4)*stride]; | |
2112 } | |
2113 dc3= 0x01010101*((dc1 + dc2 + 4)>>3); | |
2114 dc0= 0x01010101*((dc0 + 4)>>3); | |
2115 dc1= 0x01010101*((dc1 + 2)>>2); | |
2116 dc2= 0x01010101*((dc2 + 2)>>2); | |
2117 | |
2118 for(i=0; i<4; i++){ | |
2119 ((uint32_t*)(src+i*stride))[0]= dc0; | |
2120 ((uint32_t*)(src+i*stride))[1]= dc1; | |
2121 } | |
2122 for(i=4; i<8; i++){ | |
2123 ((uint32_t*)(src+i*stride))[0]= dc2; | |
2124 ((uint32_t*)(src+i*stride))[1]= dc3; | |
2125 } | |
2126 } | |
2127 | |
2128 static void pred8x8_plane_c(uint8_t *src, int stride){ | |
1184
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2129 int j, k; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2130 int a; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2131 uint8_t *cm = cropTbl + MAX_NEG_CROP; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2132 const uint8_t * const src0 = src+3-stride; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2133 const uint8_t *src1 = src+4*stride-1; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2134 const uint8_t *src2 = src1-2*stride; // == src+2*stride-1; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2135 int H = src0[1] - src0[-1]; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2136 int V = src1[0] - src2[ 0]; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2137 for(k=2; k<=4; ++k) { |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2138 src1 += stride; src2 -= stride; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2139 H += k*(src0[k] - src0[-k]); |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2140 V += k*(src1[0] - src2[ 0]); |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2141 } |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2142 H = ( 17*H+16 ) >> 5; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2143 V = ( 17*V+16 ) >> 5; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2144 |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2145 a = 16*(src1[0] + src2[8]+1) - 3*(V+H); |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2146 for(j=8; j>0; --j) { |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2147 int b = a; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2148 a += V; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2149 src[0] = cm[ (b ) >> 5 ]; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2150 src[1] = cm[ (b+ H) >> 5 ]; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2151 src[2] = cm[ (b+2*H) >> 5 ]; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2152 src[3] = cm[ (b+3*H) >> 5 ]; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2153 src[4] = cm[ (b+4*H) >> 5 ]; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2154 src[5] = cm[ (b+5*H) >> 5 ]; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2155 src[6] = cm[ (b+6*H) >> 5 ]; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2156 src[7] = cm[ (b+7*H) >> 5 ]; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2157 src += stride; |
05a2ac8978ad
faster 8x8 & 16x16 plane prediction by skal (massimin at planet-d dot net)
michaelni
parents:
1177
diff
changeset
|
2158 } |
1168 | 2159 } |
2160 | |
2161 static inline void mc_dir_part(H264Context *h, Picture *pic, int n, int square, int chroma_height, int delta, int list, | |
2162 uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, | |
2163 int src_x_offset, int src_y_offset, | |
2164 qpel_mc_func *qpix_op, h264_chroma_mc_func chroma_op){ | |
2165 MpegEncContext * const s = &h->s; | |
2166 const int mx= h->mv_cache[list][ scan8[n] ][0] + src_x_offset*8; | |
2167 const int my= h->mv_cache[list][ scan8[n] ][1] + src_y_offset*8; | |
2168 const int luma_xy= (mx&3) + ((my&3)<<2); | |
2169 uint8_t * src_y = pic->data[0] + (mx>>2) + (my>>2)*s->linesize; | |
2170 uint8_t * src_cb= pic->data[1] + (mx>>3) + (my>>3)*s->uvlinesize; | |
2171 uint8_t * src_cr= pic->data[2] + (mx>>3) + (my>>3)*s->uvlinesize; | |
2172 int extra_width= (s->flags&CODEC_FLAG_EMU_EDGE) ? 0 : 16; //FIXME increase edge?, IMHO not worth it | |
2173 int extra_height= extra_width; | |
2174 int emu=0; | |
2175 const int full_mx= mx>>2; | |
2176 const int full_my= my>>2; | |
2177 | |
2178 assert(pic->data[0]); | |
2179 | |
2180 if(mx&7) extra_width -= 3; | |
2181 if(my&7) extra_height -= 3; | |
2182 | |
2183 if( full_mx < 0-extra_width | |
2184 || full_my < 0-extra_height | |
2185 || full_mx + 16/*FIXME*/ > s->width + extra_width | |
2186 || full_my + 16/*FIXME*/ > s->height + extra_height){ | |
1317
26c44d2433c1
make ff_emulated_edge_mc() independant of MpegEncContext
michaelni
parents:
1282
diff
changeset
|
2187 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); |
1168 | 2188 src_y= s->edge_emu_buffer + 2 + 2*s->linesize; |
2189 emu=1; | |
2190 } | |
2191 | |
2192 qpix_op[luma_xy](dest_y, src_y, s->linesize); //FIXME try variable height perhaps? | |
2193 if(!square){ | |
2194 qpix_op[luma_xy](dest_y + delta, src_y + delta, s->linesize); | |
2195 } | |
2196 | |
2197 if(s->flags&CODEC_FLAG_GRAY) return; | |
2198 | |
2199 if(emu){ | |
1317
26c44d2433c1
make ff_emulated_edge_mc() independant of MpegEncContext
michaelni
parents:
1282
diff
changeset
|
2200 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); |
1168 | 2201 src_cb= s->edge_emu_buffer; |
2202 } | |
2203 chroma_op(dest_cb, src_cb, s->uvlinesize, chroma_height, mx&7, my&7); | |
2204 | |
2205 if(emu){ | |
1317
26c44d2433c1
make ff_emulated_edge_mc() independant of MpegEncContext
michaelni
parents:
1282
diff
changeset
|
2206 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); |
1168 | 2207 src_cr= s->edge_emu_buffer; |
2208 } | |
2209 chroma_op(dest_cr, src_cr, s->uvlinesize, chroma_height, mx&7, my&7); | |
2210 } | |
2211 | |
2415 | 2212 static inline void mc_part_std(H264Context *h, int n, int square, int chroma_height, int delta, |
1168 | 2213 uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, |
2214 int x_offset, int y_offset, | |
2215 qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put, | |
2216 qpel_mc_func *qpix_avg, h264_chroma_mc_func chroma_avg, | |
2217 int list0, int list1){ | |
2218 MpegEncContext * const s = &h->s; | |
2219 qpel_mc_func *qpix_op= qpix_put; | |
2220 h264_chroma_mc_func chroma_op= chroma_put; | |
2221 | |
2222 dest_y += 2*x_offset + 2*y_offset*s-> linesize; | |
2223 dest_cb += x_offset + y_offset*s->uvlinesize; | |
2224 dest_cr += x_offset + y_offset*s->uvlinesize; | |
2225 x_offset += 8*s->mb_x; | |
2226 y_offset += 8*s->mb_y; | |
2227 | |
2228 if(list0){ | |
1169 | 2229 Picture *ref= &h->ref_list[0][ h->ref_cache[0][ scan8[n] ] ]; |
1168 | 2230 mc_dir_part(h, ref, n, square, chroma_height, delta, 0, |
2231 dest_y, dest_cb, dest_cr, x_offset, y_offset, | |
2232 qpix_op, chroma_op); | |
2233 | |
2234 qpix_op= qpix_avg; | |
2235 chroma_op= chroma_avg; | |
2236 } | |
2237 | |
2238 if(list1){ | |
1169 | 2239 Picture *ref= &h->ref_list[1][ h->ref_cache[1][ scan8[n] ] ]; |
1168 | 2240 mc_dir_part(h, ref, n, square, chroma_height, delta, 1, |
2241 dest_y, dest_cb, dest_cr, x_offset, y_offset, | |
2242 qpix_op, chroma_op); | |
2243 } | |
2244 } | |
2245 | |
2415 | 2246 static inline void mc_part_weighted(H264Context *h, int n, int square, int chroma_height, int delta, |
2247 uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, | |
2248 int x_offset, int y_offset, | |
2249 qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put, | |
2250 h264_weight_func luma_weight_op, h264_weight_func chroma_weight_op, | |
2251 h264_biweight_func luma_weight_avg, h264_biweight_func chroma_weight_avg, | |
2252 int list0, int list1){ | |
2253 MpegEncContext * const s = &h->s; | |
2254 | |
2255 dest_y += 2*x_offset + 2*y_offset*s-> linesize; | |
2256 dest_cb += x_offset + y_offset*s->uvlinesize; | |
2257 dest_cr += x_offset + y_offset*s->uvlinesize; | |
2258 x_offset += 8*s->mb_x; | |
2259 y_offset += 8*s->mb_y; | |
2260 | |
2261 if(list0 && list1){ | |
2262 /* don't optimize for luma-only case, since B-frames usually | |
2263 * use implicit weights => chroma too. */ | |
2264 uint8_t *tmp_cb = s->obmc_scratchpad; | |
2265 uint8_t *tmp_cr = tmp_cb + 8*s->uvlinesize; | |
2266 uint8_t *tmp_y = tmp_cr + 8*s->uvlinesize; | |
2267 int refn0 = h->ref_cache[0][ scan8[n] ]; | |
2268 int refn1 = h->ref_cache[1][ scan8[n] ]; | |
2269 | |
2270 mc_dir_part(h, &h->ref_list[0][refn0], n, square, chroma_height, delta, 0, | |
2271 dest_y, dest_cb, dest_cr, | |
2272 x_offset, y_offset, qpix_put, chroma_put); | |
2273 mc_dir_part(h, &h->ref_list[1][refn1], n, square, chroma_height, delta, 1, | |
2274 tmp_y, tmp_cb, tmp_cr, | |
2275 x_offset, y_offset, qpix_put, chroma_put); | |
2276 | |
2277 if(h->use_weight == 2){ | |
2278 int weight0 = h->implicit_weight[refn0][refn1]; | |
2279 int weight1 = 64 - weight0; | |
2280 luma_weight_avg( dest_y, tmp_y, s-> linesize, 5, weight0, weight1, 0, 0); | |
2281 chroma_weight_avg(dest_cb, tmp_cb, s->uvlinesize, 5, weight0, weight1, 0, 0); | |
2282 chroma_weight_avg(dest_cr, tmp_cr, s->uvlinesize, 5, weight0, weight1, 0, 0); | |
2283 }else{ | |
2284 luma_weight_avg(dest_y, tmp_y, s->linesize, h->luma_log2_weight_denom, | |
2285 h->luma_weight[0][refn0], h->luma_weight[1][refn1], | |
2286 h->luma_offset[0][refn0], h->luma_offset[1][refn1]); | |
2287 chroma_weight_avg(dest_cb, tmp_cb, s->uvlinesize, h->chroma_log2_weight_denom, | |
2288 h->chroma_weight[0][refn0][0], h->chroma_weight[1][refn1][0], | |
2289 h->chroma_offset[0][refn0][0], h->chroma_offset[1][refn1][0]); | |
2290 chroma_weight_avg(dest_cr, tmp_cr, s->uvlinesize, h->chroma_log2_weight_denom, | |
2291 h->chroma_weight[0][refn0][1], h->chroma_weight[1][refn1][1], | |
2292 h->chroma_offset[0][refn0][1], h->chroma_offset[1][refn1][1]); | |
2293 } | |
2294 }else{ | |
2295 int list = list1 ? 1 : 0; | |
2296 int refn = h->ref_cache[list][ scan8[n] ]; | |
2297 Picture *ref= &h->ref_list[list][refn]; | |
2298 mc_dir_part(h, ref, n, square, chroma_height, delta, list, | |
2299 dest_y, dest_cb, dest_cr, x_offset, y_offset, | |
2300 qpix_put, chroma_put); | |
2301 | |
2302 luma_weight_op(dest_y, s->linesize, h->luma_log2_weight_denom, | |
2303 h->luma_weight[list][refn], h->luma_offset[list][refn]); | |
2304 if(h->use_weight_chroma){ | |
2305 chroma_weight_op(dest_cb, s->uvlinesize, h->chroma_log2_weight_denom, | |
2306 h->chroma_weight[list][refn][0], h->chroma_offset[list][refn][0]); | |
2307 chroma_weight_op(dest_cr, s->uvlinesize, h->chroma_log2_weight_denom, | |
2308 h->chroma_weight[list][refn][1], h->chroma_offset[list][refn][1]); | |
2309 } | |
2310 } | |
2311 } | |
2312 | |
2313 static inline void mc_part(H264Context *h, int n, int square, int chroma_height, int delta, | |
2314 uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, | |
2315 int x_offset, int y_offset, | |
2316 qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put, | |
2317 qpel_mc_func *qpix_avg, h264_chroma_mc_func chroma_avg, | |
2318 h264_weight_func *weight_op, h264_biweight_func *weight_avg, | |
2319 int list0, int list1){ | |
2320 if((h->use_weight==2 && list0 && list1 | |
2321 && (h->implicit_weight[ h->ref_cache[0][scan8[n]] ][ h->ref_cache[1][scan8[n]] ] != 32)) | |
2322 || h->use_weight==1) | |
2323 mc_part_weighted(h, n, square, chroma_height, delta, dest_y, dest_cb, dest_cr, | |
2324 x_offset, y_offset, qpix_put, chroma_put, | |
2325 weight_op[0], weight_op[3], weight_avg[0], weight_avg[3], list0, list1); | |
2326 else | |
2327 mc_part_std(h, n, square, chroma_height, delta, dest_y, dest_cb, dest_cr, | |
2328 x_offset, y_offset, qpix_put, chroma_put, qpix_avg, chroma_avg, list0, list1); | |
2329 } | |
2330 | |
1168 | 2331 static void hl_motion(H264Context *h, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, |
2332 qpel_mc_func (*qpix_put)[16], h264_chroma_mc_func (*chroma_put), | |
2415 | 2333 qpel_mc_func (*qpix_avg)[16], h264_chroma_mc_func (*chroma_avg), |
2334 h264_weight_func *weight_op, h264_biweight_func *weight_avg){ | |
1168 | 2335 MpegEncContext * const s = &h->s; |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1174
diff
changeset
|
2336 const int mb_xy= s->mb_x + s->mb_y*s->mb_stride; |
1168 | 2337 const int mb_type= s->current_picture.mb_type[mb_xy]; |
2338 | |
2339 assert(IS_INTER(mb_type)); | |
2340 | |
2341 if(IS_16X16(mb_type)){ | |
2342 mc_part(h, 0, 1, 8, 0, dest_y, dest_cb, dest_cr, 0, 0, | |
2343 qpix_put[0], chroma_put[0], qpix_avg[0], chroma_avg[0], | |
2415 | 2344 &weight_op[0], &weight_avg[0], |
1168 | 2345 IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1)); |
2346 }else if(IS_16X8(mb_type)){ | |
2347 mc_part(h, 0, 0, 4, 8, dest_y, dest_cb, dest_cr, 0, 0, | |
2348 qpix_put[1], chroma_put[0], qpix_avg[1], chroma_avg[0], | |
2415 | 2349 &weight_op[1], &weight_avg[1], |
1168 | 2350 IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1)); |
2351 mc_part(h, 8, 0, 4, 8, dest_y, dest_cb, dest_cr, 0, 4, | |
2352 qpix_put[1], chroma_put[0], qpix_avg[1], chroma_avg[0], | |
2415 | 2353 &weight_op[1], &weight_avg[1], |
1168 | 2354 IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1)); |
2355 }else if(IS_8X16(mb_type)){ | |
2356 mc_part(h, 0, 0, 8, 8*s->linesize, dest_y, dest_cb, dest_cr, 0, 0, | |
2357 qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1], | |
2415 | 2358 &weight_op[2], &weight_avg[2], |
1168 | 2359 IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1)); |
2360 mc_part(h, 4, 0, 8, 8*s->linesize, dest_y, dest_cb, dest_cr, 4, 0, | |
2361 qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1], | |
2415 | 2362 &weight_op[2], &weight_avg[2], |
1168 | 2363 IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1)); |
2364 }else{ | |
2365 int i; | |
2366 | |
2367 assert(IS_8X8(mb_type)); | |
2368 | |
2369 for(i=0; i<4; i++){ | |
2370 const int sub_mb_type= h->sub_mb_type[i]; | |
2371 const int n= 4*i; | |
2372 int x_offset= (i&1)<<2; | |
2373 int y_offset= (i&2)<<1; | |
2374 | |
2375 if(IS_SUB_8X8(sub_mb_type)){ | |
2376 mc_part(h, n, 1, 4, 0, dest_y, dest_cb, dest_cr, x_offset, y_offset, | |
2377 qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1], | |
2415 | 2378 &weight_op[3], &weight_avg[3], |
1168 | 2379 IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1)); |
2380 }else if(IS_SUB_8X4(sub_mb_type)){ | |
2381 mc_part(h, n , 0, 2, 4, dest_y, dest_cb, dest_cr, x_offset, y_offset, | |
2382 qpix_put[2], chroma_put[1], qpix_avg[2], chroma_avg[1], | |
2415 | 2383 &weight_op[4], &weight_avg[4], |
1168 | 2384 IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1)); |
2385 mc_part(h, n+2, 0, 2, 4, dest_y, dest_cb, dest_cr, x_offset, y_offset+2, | |
2386 qpix_put[2], chroma_put[1], qpix_avg[2], chroma_avg[1], | |
2415 | 2387 &weight_op[4], &weight_avg[4], |
1168 | 2388 IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1)); |
2389 }else if(IS_SUB_4X8(sub_mb_type)){ | |
2390 mc_part(h, n , 0, 4, 4*s->linesize, dest_y, dest_cb, dest_cr, x_offset, y_offset, | |
2391 qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2], | |
2415 | 2392 &weight_op[5], &weight_avg[5], |
1168 | 2393 IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1)); |
2394 mc_part(h, n+1, 0, 4, 4*s->linesize, dest_y, dest_cb, dest_cr, x_offset+2, y_offset, | |
2395 qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2], | |
2415 | 2396 &weight_op[5], &weight_avg[5], |
1168 | 2397 IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1)); |
2398 }else{ | |
2399 int j; | |
2400 assert(IS_SUB_4X4(sub_mb_type)); | |
2401 for(j=0; j<4; j++){ | |
2402 int sub_x_offset= x_offset + 2*(j&1); | |
2403 int sub_y_offset= y_offset + (j&2); | |
2404 mc_part(h, n+j, 1, 2, 0, dest_y, dest_cb, dest_cr, sub_x_offset, sub_y_offset, | |
2405 qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2], | |
2415 | 2406 &weight_op[6], &weight_avg[6], |
1168 | 2407 IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1)); |
2408 } | |
2409 } | |
2410 } | |
2411 } | |
2412 } | |
2413 | |
2414 static void decode_init_vlc(H264Context *h){ | |
2415 static int done = 0; | |
2416 | |
2417 if (!done) { | |
2418 int i; | |
2419 done = 1; | |
2420 | |
2421 init_vlc(&chroma_dc_coeff_token_vlc, CHROMA_DC_COEFF_TOKEN_VLC_BITS, 4*5, | |
2422 &chroma_dc_coeff_token_len [0], 1, 1, | |
2370
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2365
diff
changeset
|
2423 &chroma_dc_coeff_token_bits[0], 1, 1, 1); |
1168 | 2424 |
2425 for(i=0; i<4; i++){ | |
2426 init_vlc(&coeff_token_vlc[i], COEFF_TOKEN_VLC_BITS, 4*17, | |
2427 &coeff_token_len [i][0], 1, 1, | |
2370
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2365
diff
changeset
|
2428 &coeff_token_bits[i][0], 1, 1, 1); |
1168 | 2429 } |
2430 | |
2431 for(i=0; i<3; i++){ | |
2432 init_vlc(&chroma_dc_total_zeros_vlc[i], CHROMA_DC_TOTAL_ZEROS_VLC_BITS, 4, | |
2433 &chroma_dc_total_zeros_len [i][0], 1, 1, | |
2370
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2365
diff
changeset
|
2434 &chroma_dc_total_zeros_bits[i][0], 1, 1, 1); |
1168 | 2435 } |
2436 for(i=0; i<15; i++){ | |
2437 init_vlc(&total_zeros_vlc[i], TOTAL_ZEROS_VLC_BITS, 16, | |
2438 &total_zeros_len [i][0], 1, 1, | |
2370
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2365
diff
changeset
|
2439 &total_zeros_bits[i][0], 1, 1, 1); |
1168 | 2440 } |
2441 | |
2442 for(i=0; i<6; i++){ | |
2443 init_vlc(&run_vlc[i], RUN_VLC_BITS, 7, | |
2444 &run_len [i][0], 1, 1, | |
2370
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2365
diff
changeset
|
2445 &run_bits[i][0], 1, 1, 1); |
1168 | 2446 } |
2447 init_vlc(&run7_vlc, RUN7_VLC_BITS, 16, | |
2448 &run_len [6][0], 1, 1, | |
2370
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2365
diff
changeset
|
2449 &run_bits[6][0], 1, 1, 1); |
1168 | 2450 } |
2451 } | |
2452 | |
2453 /** | |
2454 * Sets the intra prediction function pointers. | |
2455 */ | |
2456 static void init_pred_ptrs(H264Context *h){ | |
2457 // MpegEncContext * const s = &h->s; | |
2458 | |
2459 h->pred4x4[VERT_PRED ]= pred4x4_vertical_c; | |
2460 h->pred4x4[HOR_PRED ]= pred4x4_horizontal_c; | |
2461 h->pred4x4[DC_PRED ]= pred4x4_dc_c; | |
2462 h->pred4x4[DIAG_DOWN_LEFT_PRED ]= pred4x4_down_left_c; | |
2463 h->pred4x4[DIAG_DOWN_RIGHT_PRED]= pred4x4_down_right_c; | |
2464 h->pred4x4[VERT_RIGHT_PRED ]= pred4x4_vertical_right_c; | |
2465 h->pred4x4[HOR_DOWN_PRED ]= pred4x4_horizontal_down_c; | |
2466 h->pred4x4[VERT_LEFT_PRED ]= pred4x4_vertical_left_c; | |
2467 h->pred4x4[HOR_UP_PRED ]= pred4x4_horizontal_up_c; | |
2468 h->pred4x4[LEFT_DC_PRED ]= pred4x4_left_dc_c; | |
2469 h->pred4x4[TOP_DC_PRED ]= pred4x4_top_dc_c; | |
2470 h->pred4x4[DC_128_PRED ]= pred4x4_128_dc_c; | |
2471 | |
2472 h->pred8x8[DC_PRED8x8 ]= pred8x8_dc_c; | |
2473 h->pred8x8[VERT_PRED8x8 ]= pred8x8_vertical_c; | |
2474 h->pred8x8[HOR_PRED8x8 ]= pred8x8_horizontal_c; | |
2475 h->pred8x8[PLANE_PRED8x8 ]= pred8x8_plane_c; | |
2476 h->pred8x8[LEFT_DC_PRED8x8]= pred8x8_left_dc_c; | |
2477 h->pred8x8[TOP_DC_PRED8x8 ]= pred8x8_top_dc_c; | |
2478 h->pred8x8[DC_128_PRED8x8 ]= pred8x8_128_dc_c; | |
2479 | |
2480 h->pred16x16[DC_PRED8x8 ]= pred16x16_dc_c; | |
2481 h->pred16x16[VERT_PRED8x8 ]= pred16x16_vertical_c; | |
2482 h->pred16x16[HOR_PRED8x8 ]= pred16x16_horizontal_c; | |
2483 h->pred16x16[PLANE_PRED8x8 ]= pred16x16_plane_c; | |
2484 h->pred16x16[LEFT_DC_PRED8x8]= pred16x16_left_dc_c; | |
2485 h->pred16x16[TOP_DC_PRED8x8 ]= pred16x16_top_dc_c; | |
2486 h->pred16x16[DC_128_PRED8x8 ]= pred16x16_128_dc_c; | |
2487 } | |
2488 | |
2489 static void free_tables(H264Context *h){ | |
2490 av_freep(&h->intra4x4_pred_mode); | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
2491 av_freep(&h->chroma_pred_mode_table); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
2492 av_freep(&h->cbp_table); |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
2493 av_freep(&h->mvd_table[0]); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
2494 av_freep(&h->mvd_table[1]); |
2396 | 2495 av_freep(&h->direct_table); |
1168 | 2496 av_freep(&h->non_zero_count); |
2497 av_freep(&h->slice_table_base); | |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2498 av_freep(&h->top_border); |
1168 | 2499 h->slice_table= NULL; |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
2500 |
1168 | 2501 av_freep(&h->mb2b_xy); |
2502 av_freep(&h->mb2b8_xy); | |
2415 | 2503 |
2504 av_freep(&h->s.obmc_scratchpad); | |
1168 | 2505 } |
2506 | |
2507 /** | |
2508 * allocates tables. | |
2509 * needs widzh/height | |
2510 */ | |
2511 static int alloc_tables(H264Context *h){ | |
2512 MpegEncContext * const s = &h->s; | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1174
diff
changeset
|
2513 const int big_mb_num= s->mb_stride * (s->mb_height+1); |
1168 | 2514 int x,y; |
2515 | |
2516 CHECKED_ALLOCZ(h->intra4x4_pred_mode, big_mb_num * 8 * sizeof(uint8_t)) | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
2517 |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2518 CHECKED_ALLOCZ(h->non_zero_count , big_mb_num * 16 * sizeof(uint8_t)) |
1168 | 2519 CHECKED_ALLOCZ(h->slice_table_base , big_mb_num * sizeof(uint8_t)) |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2520 CHECKED_ALLOCZ(h->top_border , s->mb_width * (16+8+8) * sizeof(uint8_t)) |
2336 | 2521 CHECKED_ALLOCZ(h->cbp_table, big_mb_num * sizeof(uint16_t)) |
1168 | 2522 |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
2523 if( h->pps.cabac ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
2524 CHECKED_ALLOCZ(h->chroma_pred_mode_table, big_mb_num * sizeof(uint8_t)) |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
2525 CHECKED_ALLOCZ(h->mvd_table[0], 32*big_mb_num * sizeof(uint16_t)); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
2526 CHECKED_ALLOCZ(h->mvd_table[1], 32*big_mb_num * sizeof(uint16_t)); |
2396 | 2527 CHECKED_ALLOCZ(h->direct_table, 32*big_mb_num * sizeof(uint8_t)); |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
2528 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
2529 |
1168 | 2530 memset(h->slice_table_base, -1, big_mb_num * sizeof(uint8_t)); |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1174
diff
changeset
|
2531 h->slice_table= h->slice_table_base + s->mb_stride + 1; |
1168 | 2532 |
2533 CHECKED_ALLOCZ(h->mb2b_xy , big_mb_num * sizeof(uint16_t)); | |
2534 CHECKED_ALLOCZ(h->mb2b8_xy , big_mb_num * sizeof(uint16_t)); | |
2535 for(y=0; y<s->mb_height; y++){ | |
2536 for(x=0; x<s->mb_width; x++){ | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1174
diff
changeset
|
2537 const int mb_xy= x + y*s->mb_stride; |
1168 | 2538 const int b_xy = 4*x + 4*y*h->b_stride; |
2539 const int b8_xy= 2*x + 2*y*h->b8_stride; | |
2540 | |
2541 h->mb2b_xy [mb_xy]= b_xy; | |
2542 h->mb2b8_xy[mb_xy]= b8_xy; | |
2543 } | |
2544 } | |
2415 | 2545 |
2417 | 2546 s->obmc_scratchpad = NULL; |
2547 | |
1168 | 2548 return 0; |
2549 fail: | |
2550 free_tables(h); | |
2551 return -1; | |
2552 } | |
2553 | |
2554 static void common_init(H264Context *h){ | |
2555 MpegEncContext * const s = &h->s; | |
2556 | |
2557 s->width = s->avctx->width; | |
2558 s->height = s->avctx->height; | |
2559 s->codec_id= s->avctx->codec->id; | |
2560 | |
2561 init_pred_ptrs(h); | |
2562 | |
1698 | 2563 s->unrestricted_mv=1; |
1168 | 2564 s->decode=1; //FIXME |
2565 } | |
2566 | |
2567 static int decode_init(AVCodecContext *avctx){ | |
2568 H264Context *h= avctx->priv_data; | |
2569 MpegEncContext * const s = &h->s; | |
2570 | |
1892 | 2571 MPV_decode_defaults(s); |
2572 | |
1168 | 2573 s->avctx = avctx; |
2574 common_init(h); | |
2575 | |
2576 s->out_format = FMT_H264; | |
2577 s->workaround_bugs= avctx->workaround_bugs; | |
2578 | |
2579 // set defaults | |
2580 // s->decode_mb= ff_h263_decode_mb; | |
2581 s->low_delay= 1; | |
2582 avctx->pix_fmt= PIX_FMT_YUV420P; | |
2583 | |
2584 decode_init_vlc(h); | |
2585 | |
2384 | 2586 if(avctx->codec_tag != 0x31637661 && avctx->codec_tag != 0x31435641) // avc1 |
2227 | 2587 h->is_avc = 0; |
2588 else { | |
2589 if((avctx->extradata_size == 0) || (avctx->extradata == NULL)) { | |
2590 av_log(avctx, AV_LOG_ERROR, "AVC codec requires avcC data\n"); | |
2591 return -1; | |
2592 } | |
2593 h->is_avc = 1; | |
2594 h->got_avcC = 0; | |
2595 } | |
2596 | |
1168 | 2597 return 0; |
2598 } | |
2599 | |
2600 static void frame_start(H264Context *h){ | |
2601 MpegEncContext * const s = &h->s; | |
2602 int i; | |
2603 | |
2604 MPV_frame_start(s, s->avctx); | |
2605 ff_er_frame_start(s); | |
2606 | |
2607 assert(s->linesize && s->uvlinesize); | |
2608 | |
2609 for(i=0; i<16; i++){ | |
2610 h->block_offset[i]= 4*((scan8[i] - scan8[0])&7) + 4*s->linesize*((scan8[i] - scan8[0])>>3); | |
2611 h->chroma_subblock_offset[i]= 2*((scan8[i] - scan8[0])&7) + 2*s->uvlinesize*((scan8[i] - scan8[0])>>3); | |
2612 } | |
2613 for(i=0; i<4; i++){ | |
2614 h->block_offset[16+i]= | |
2615 h->block_offset[20+i]= 4*((scan8[i] - scan8[0])&7) + 4*s->uvlinesize*((scan8[i] - scan8[0])>>3); | |
2616 } | |
2617 | |
2416
06b7d678b582
10l: scratchpad could be allocated before its size was known.
lorenm
parents:
2415
diff
changeset
|
2618 /* can't be in alloc_tables because linesize isn't known there. |
06b7d678b582
10l: scratchpad could be allocated before its size was known.
lorenm
parents:
2415
diff
changeset
|
2619 * FIXME: redo bipred weight to not require extra buffer? */ |
06b7d678b582
10l: scratchpad could be allocated before its size was known.
lorenm
parents:
2415
diff
changeset
|
2620 if(!s->obmc_scratchpad) |
06b7d678b582
10l: scratchpad could be allocated before its size was known.
lorenm
parents:
2415
diff
changeset
|
2621 s->obmc_scratchpad = av_malloc(16*s->linesize + 2*8*s->uvlinesize); |
06b7d678b582
10l: scratchpad could be allocated before its size was known.
lorenm
parents:
2415
diff
changeset
|
2622 |
1168 | 2623 // s->decode= (s->flags&CODEC_FLAG_PSNR) || !s->encoding || s->current_picture.reference /*|| h->contains_intra*/ || 1; |
2624 } | |
2625 | |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2626 static inline void backup_mb_border(H264Context *h, uint8_t *src_y, uint8_t *src_cb, uint8_t *src_cr, int linesize, int uvlinesize){ |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2627 MpegEncContext * const s = &h->s; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2628 int i; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2629 |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2630 src_y -= linesize; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2631 src_cb -= uvlinesize; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2632 src_cr -= uvlinesize; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2633 |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2634 h->left_border[0]= h->top_border[s->mb_x][15]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2635 for(i=1; i<17; i++){ |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2636 h->left_border[i]= src_y[15+i* linesize]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2637 } |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2638 |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2639 *(uint64_t*)(h->top_border[s->mb_x]+0)= *(uint64_t*)(src_y + 16*linesize); |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2640 *(uint64_t*)(h->top_border[s->mb_x]+8)= *(uint64_t*)(src_y +8+16*linesize); |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2641 |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2642 if(!(s->flags&CODEC_FLAG_GRAY)){ |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2643 h->left_border[17 ]= h->top_border[s->mb_x][16+7]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2644 h->left_border[17+9]= h->top_border[s->mb_x][24+7]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2645 for(i=1; i<9; i++){ |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2646 h->left_border[i+17 ]= src_cb[7+i*uvlinesize]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2647 h->left_border[i+17+9]= src_cr[7+i*uvlinesize]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2648 } |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2649 *(uint64_t*)(h->top_border[s->mb_x]+16)= *(uint64_t*)(src_cb+8*uvlinesize); |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2650 *(uint64_t*)(h->top_border[s->mb_x]+24)= *(uint64_t*)(src_cr+8*uvlinesize); |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2651 } |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2652 } |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2653 |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2654 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){ |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2655 MpegEncContext * const s = &h->s; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2656 int temp8, i; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2657 uint64_t temp64; |
2200
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2658 int deblock_left = (s->mb_x > 0); |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2659 int deblock_top = (s->mb_y > 0); |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2660 |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2661 src_y -= linesize + 1; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2662 src_cb -= uvlinesize + 1; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2663 src_cr -= uvlinesize + 1; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2664 |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2665 #define XCHG(a,b,t,xchg)\ |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2666 t= a;\ |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2667 if(xchg)\ |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2668 a= b;\ |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2669 b= t; |
2200
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2670 |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2671 if(deblock_left){ |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2672 for(i = !deblock_top; i<17; i++){ |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2673 XCHG(h->left_border[i ], src_y [i* linesize], temp8, xchg); |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2674 } |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2675 } |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2676 |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2677 if(deblock_top){ |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2678 XCHG(*(uint64_t*)(h->top_border[s->mb_x]+0), *(uint64_t*)(src_y +1), temp64, xchg); |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2679 XCHG(*(uint64_t*)(h->top_border[s->mb_x]+8), *(uint64_t*)(src_y +9), temp64, 1); |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2680 } |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2681 |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2682 if(!(s->flags&CODEC_FLAG_GRAY)){ |
2200
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2683 if(deblock_left){ |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2684 for(i = !deblock_top; i<9; i++){ |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2685 XCHG(h->left_border[i+17 ], src_cb[i*uvlinesize], temp8, xchg); |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2686 XCHG(h->left_border[i+17+9], src_cr[i*uvlinesize], temp8, xchg); |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2687 } |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2688 } |
2200
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2689 if(deblock_top){ |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2690 XCHG(*(uint64_t*)(h->top_border[s->mb_x]+16), *(uint64_t*)(src_cb+1), temp64, 1); |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2691 XCHG(*(uint64_t*)(h->top_border[s->mb_x]+24), *(uint64_t*)(src_cr+1), temp64, 1); |
733c60a6e30c
h264 deblocking crash patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2175
diff
changeset
|
2692 } |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2693 } |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2694 } |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2695 |
1168 | 2696 static void hl_decode_mb(H264Context *h){ |
2697 MpegEncContext * const s = &h->s; | |
2698 const int mb_x= s->mb_x; | |
2699 const int mb_y= s->mb_y; | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1174
diff
changeset
|
2700 const int mb_xy= mb_x + mb_y*s->mb_stride; |
1168 | 2701 const int mb_type= s->current_picture.mb_type[mb_xy]; |
2702 uint8_t *dest_y, *dest_cb, *dest_cr; | |
2703 int linesize, uvlinesize /*dct_offset*/; | |
2704 int i; | |
2705 | |
2706 if(!s->decode) | |
2707 return; | |
2708 | |
2709 if(s->mb_skiped){ | |
2710 } | |
2711 | |
2712 dest_y = s->current_picture.data[0] + (mb_y * 16* s->linesize ) + mb_x * 16; | |
2713 dest_cb = s->current_picture.data[1] + (mb_y * 8 * s->uvlinesize) + mb_x * 8; | |
2714 dest_cr = s->current_picture.data[2] + (mb_y * 8 * s->uvlinesize) + mb_x * 8; | |
2715 | |
2716 if (h->mb_field_decoding_flag) { | |
2717 linesize = s->linesize * 2; | |
2718 uvlinesize = s->uvlinesize * 2; | |
2719 if(mb_y&1){ //FIXME move out of this func? | |
2720 dest_y -= s->linesize*15; | |
2721 dest_cb-= s->linesize*7; | |
2722 dest_cr-= s->linesize*7; | |
2723 } | |
2724 } else { | |
2725 linesize = s->linesize; | |
2726 uvlinesize = s->uvlinesize; | |
2727 // dct_offset = s->linesize * 16; | |
2728 } | |
2729 | |
2730 if(IS_INTRA(mb_type)){ | |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2731 if(h->deblocking_filter) |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2732 xchg_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 1); |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2733 |
1168 | 2734 if(!(s->flags&CODEC_FLAG_GRAY)){ |
2735 h->pred8x8[ h->chroma_pred_mode ](dest_cb, uvlinesize); | |
2736 h->pred8x8[ h->chroma_pred_mode ](dest_cr, uvlinesize); | |
2737 } | |
2738 | |
2739 if(IS_INTRA4x4(mb_type)){ | |
2740 if(!s->encoding){ | |
2741 for(i=0; i<16; i++){ | |
2742 uint8_t * const ptr= dest_y + h->block_offset[i]; | |
2383 | 2743 uint8_t *topright; |
1168 | 2744 const int dir= h->intra4x4_pred_mode_cache[ scan8[i] ]; |
2745 int tr; | |
2746 | |
2383 | 2747 if(dir == DIAG_DOWN_LEFT_PRED || dir == VERT_LEFT_PRED){ |
2748 const int topright_avail= (h->topright_samples_available<<i)&0x8000; | |
2749 assert(mb_y || linesize <= h->block_offset[i]); | |
2750 if(!topright_avail){ | |
2751 tr= ptr[3 - linesize]*0x01010101; | |
2752 topright= (uint8_t*) &tr; | |
2753 }else if(i==5 && h->deblocking_filter){ | |
2754 tr= *(uint32_t*)h->top_border[mb_x+1]; | |
2755 topright= (uint8_t*) &tr; | |
2756 }else | |
2757 topright= ptr + 4 - linesize; | |
2758 }else | |
2759 topright= NULL; | |
1168 | 2760 |
2761 h->pred4x4[ dir ](ptr, topright, linesize); | |
1234 | 2762 if(h->non_zero_count_cache[ scan8[i] ]){ |
2763 if(s->codec_id == CODEC_ID_H264) | |
2272
cd43603c46f9
move h264 idct to its own file and call via function pointer in DspContext
michael
parents:
2255
diff
changeset
|
2764 s->dsp.h264_idct_add(ptr, h->mb + i*16, linesize); |
1234 | 2765 else |
2766 svq3_add_idct_c(ptr, h->mb + i*16, linesize, s->qscale, 0); | |
2767 } | |
1168 | 2768 } |
2769 } | |
2770 }else{ | |
2771 h->pred16x16[ h->intra16x16_pred_mode ](dest_y , linesize); | |
1234 | 2772 if(s->codec_id == CODEC_ID_H264) |
2773 h264_luma_dc_dequant_idct_c(h->mb, s->qscale); | |
2774 else | |
2775 svq3_luma_dc_dequant_idct_c(h->mb, s->qscale); | |
1168 | 2776 } |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2777 if(h->deblocking_filter) |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2778 xchg_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 0); |
1234 | 2779 }else if(s->codec_id == CODEC_ID_H264){ |
1168 | 2780 hl_motion(h, dest_y, dest_cb, dest_cr, |
2781 s->dsp.put_h264_qpel_pixels_tab, s->dsp.put_h264_chroma_pixels_tab, | |
2415 | 2782 s->dsp.avg_h264_qpel_pixels_tab, s->dsp.avg_h264_chroma_pixels_tab, |
2783 s->dsp.weight_h264_pixels_tab, s->dsp.biweight_h264_pixels_tab); | |
1168 | 2784 } |
2785 | |
2786 | |
2787 if(!IS_INTRA4x4(mb_type)){ | |
1250 | 2788 if(s->codec_id == CODEC_ID_H264){ |
2789 for(i=0; i<16; i++){ | |
2790 if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){ //FIXME benchmark weird rule, & below | |
2791 uint8_t * const ptr= dest_y + h->block_offset[i]; | |
2272
cd43603c46f9
move h264 idct to its own file and call via function pointer in DspContext
michael
parents:
2255
diff
changeset
|
2792 s->dsp.h264_idct_add(ptr, h->mb + i*16, linesize); |
1250 | 2793 } |
2794 } | |
2795 }else{ | |
2796 for(i=0; i<16; i++){ | |
2797 if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){ //FIXME benchmark weird rule, & below | |
2798 uint8_t * const ptr= dest_y + h->block_offset[i]; | |
1234 | 2799 svq3_add_idct_c(ptr, h->mb + i*16, linesize, s->qscale, IS_INTRA(mb_type) ? 1 : 0); |
1250 | 2800 } |
1168 | 2801 } |
2802 } | |
2803 } | |
2804 | |
2805 if(!(s->flags&CODEC_FLAG_GRAY)){ | |
2806 chroma_dc_dequant_idct_c(h->mb + 16*16, h->chroma_qp); | |
2807 chroma_dc_dequant_idct_c(h->mb + 16*16+4*16, h->chroma_qp); | |
1250 | 2808 if(s->codec_id == CODEC_ID_H264){ |
2809 for(i=16; i<16+4; i++){ | |
2810 if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){ | |
2811 uint8_t * const ptr= dest_cb + h->block_offset[i]; | |
2272
cd43603c46f9
move h264 idct to its own file and call via function pointer in DspContext
michael
parents:
2255
diff
changeset
|
2812 s->dsp.h264_idct_add(ptr, h->mb + i*16, uvlinesize); |
1250 | 2813 } |
2814 } | |
2815 for(i=20; i<20+4; i++){ | |
2816 if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){ | |
2817 uint8_t * const ptr= dest_cr + h->block_offset[i]; | |
2272
cd43603c46f9
move h264 idct to its own file and call via function pointer in DspContext
michael
parents:
2255
diff
changeset
|
2818 s->dsp.h264_idct_add(ptr, h->mb + i*16, uvlinesize); |
1250 | 2819 } |
1168 | 2820 } |
1250 | 2821 }else{ |
2822 for(i=16; i<16+4; i++){ | |
2823 if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){ | |
2824 uint8_t * const ptr= dest_cb + h->block_offset[i]; | |
1234 | 2825 svq3_add_idct_c(ptr, h->mb + i*16, uvlinesize, chroma_qp[s->qscale + 12] - 12, 2); |
1250 | 2826 } |
2827 } | |
2828 for(i=20; i<20+4; i++){ | |
2829 if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){ | |
2830 uint8_t * const ptr= dest_cr + h->block_offset[i]; | |
2831 svq3_add_idct_c(ptr, h->mb + i*16, uvlinesize, chroma_qp[s->qscale + 12] - 12, 2); | |
2832 } | |
1168 | 2833 } |
2834 } | |
2835 } | |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2836 if(h->deblocking_filter) { |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2837 backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize); |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2838 filter_mb(h, mb_x, mb_y, dest_y, dest_cb, dest_cr); |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
2839 } |
1168 | 2840 } |
2841 | |
2842 /** | |
2843 * fills the default_ref_list. | |
2844 */ | |
2845 static int fill_default_ref_list(H264Context *h){ | |
2846 MpegEncContext * const s = &h->s; | |
2847 int i; | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2848 int smallest_poc_greater_than_current = -1; |
1168 | 2849 Picture sorted_short_ref[16]; |
2850 | |
2851 if(h->slice_type==B_TYPE){ | |
2852 int out_i; | |
2853 int limit= -1; | |
2854 | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2855 /* sort frame according to poc in B slice */ |
1168 | 2856 for(out_i=0; out_i<h->short_ref_count; out_i++){ |
2857 int best_i=-1; | |
2255
507690ff49a2
assertion when playing AVC/H.264 streams fix by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2254
diff
changeset
|
2858 int best_poc=INT_MAX; |
1168 | 2859 |
2860 for(i=0; i<h->short_ref_count; i++){ | |
2861 const int poc= h->short_ref[i]->poc; | |
2862 if(poc > limit && poc < best_poc){ | |
2863 best_poc= poc; | |
2864 best_i= i; | |
2865 } | |
2866 } | |
2867 | |
2868 assert(best_i != -1); | |
2869 | |
2870 limit= best_poc; | |
2871 sorted_short_ref[out_i]= *h->short_ref[best_i]; | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2872 tprintf("sorted poc: %d->%d poc:%d fn:%d\n", best_i, out_i, sorted_short_ref[out_i].poc, sorted_short_ref[out_i].frame_num); |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2873 if (-1 == smallest_poc_greater_than_current) { |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2874 if (h->short_ref[best_i]->poc >= s->current_picture_ptr->poc) { |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2875 smallest_poc_greater_than_current = out_i; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2876 } |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2877 } |
1168 | 2878 } |
2879 } | |
2880 | |
2881 if(s->picture_structure == PICT_FRAME){ | |
2882 if(h->slice_type==B_TYPE){ | |
2883 int list; | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2884 tprintf("current poc: %d, smallest_poc_greater_than_current: %d\n", s->current_picture_ptr->poc, smallest_poc_greater_than_current); |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2885 |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2886 // find the largest poc |
1168 | 2887 for(list=0; list<2; list++){ |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2888 int index = 0; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2889 int swap_first_L1 = 0; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2890 |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2891 if (0 == list) { |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2892 for(i=smallest_poc_greater_than_current-1; i>=0 && index < h->ref_count[list]; i--) { |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2893 if(sorted_short_ref[i].reference != 3) continue; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2894 h->default_ref_list[list][index ]= sorted_short_ref[i]; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2895 h->default_ref_list[list][index++].pic_id= sorted_short_ref[i].frame_num; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2896 } |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2897 for(i=smallest_poc_greater_than_current; i<h->short_ref_count && index < h->ref_count[list]; i++) { |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2898 if(sorted_short_ref[i].reference != 3) continue; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2899 h->default_ref_list[list][index ]= sorted_short_ref[i]; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2900 h->default_ref_list[list][index++].pic_id= sorted_short_ref[i].frame_num; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2901 } |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2902 } else { |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2903 for(i=smallest_poc_greater_than_current; i<h->short_ref_count && index < h->ref_count[list]; i++) { |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2904 if(sorted_short_ref[i].reference != 3) continue; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2905 swap_first_L1 |= 1; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2906 h->default_ref_list[list][index ]= sorted_short_ref[i]; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2907 h->default_ref_list[list][index++].pic_id= sorted_short_ref[i].frame_num; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2908 } |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2909 for(i=smallest_poc_greater_than_current-1; i>=0 && index < h->ref_count[list]; i--) { |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2910 if(sorted_short_ref[i].reference != 3) continue; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2911 swap_first_L1 |= 2; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2912 h->default_ref_list[list][index ]= sorted_short_ref[i]; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2913 h->default_ref_list[list][index++].pic_id= sorted_short_ref[i].frame_num; |
1168 | 2914 } |
2915 } | |
2916 | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2917 for(i = 0; i < 16 && index < h->ref_count[ list ]; i++){ |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2918 if(h->long_ref[i] == NULL) continue; |
1168 | 2919 if(h->long_ref[i]->reference != 3) continue; |
2920 | |
2921 h->default_ref_list[ list ][index ]= *h->long_ref[i]; | |
2922 h->default_ref_list[ list ][index++].pic_id= i;; | |
2923 } | |
2924 | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2925 if(list && (3 == swap_first_L1) && (1 < index)){ |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2926 // swap the two first elements of L1 when |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2927 // L0 and L1 are identical |
1168 | 2928 Picture temp= h->default_ref_list[1][0]; |
2929 h->default_ref_list[1][0] = h->default_ref_list[1][1]; | |
2930 h->default_ref_list[1][0] = temp; | |
2931 } | |
2932 | |
2933 if(index < h->ref_count[ list ]) | |
2934 memset(&h->default_ref_list[list][index], 0, sizeof(Picture)*(h->ref_count[ list ] - index)); | |
2935 } | |
2936 }else{ | |
2937 int index=0; | |
2938 for(i=0; i<h->short_ref_count && index < h->ref_count[0]; i++){ | |
2939 if(h->short_ref[i]->reference != 3) continue; //FIXME refernce field shit | |
2940 h->default_ref_list[0][index ]= *h->short_ref[i]; | |
2941 h->default_ref_list[0][index++].pic_id= h->short_ref[i]->frame_num; | |
2942 } | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2943 for(i = 0; i < 16 && index < h->ref_count[0]; i++){ |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2944 if(h->long_ref[i] == NULL) continue; |
1168 | 2945 if(h->long_ref[i]->reference != 3) continue; |
2946 h->default_ref_list[0][index ]= *h->long_ref[i]; | |
2947 h->default_ref_list[0][index++].pic_id= i;; | |
2948 } | |
2949 if(index < h->ref_count[0]) | |
2950 memset(&h->default_ref_list[0][index], 0, sizeof(Picture)*(h->ref_count[0] - index)); | |
2951 } | |
2952 }else{ //FIELD | |
2953 if(h->slice_type==B_TYPE){ | |
2954 }else{ | |
2955 //FIXME second field balh | |
2956 } | |
2957 } | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2958 #ifdef TRACE |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2959 for (i=0; i<h->ref_count[0]; i++) { |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2960 tprintf("List0: %s fn:%d 0x%p\n", (h->default_ref_list[0][i].long_ref ? "LT" : "ST"), h->default_ref_list[0][i].pic_id, h->default_ref_list[0][i].data[0]); |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2961 } |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2962 if(h->slice_type==B_TYPE){ |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2963 for (i=0; i<h->ref_count[1]; i++) { |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2964 tprintf("List1: %s fn:%d 0x%p\n", (h->default_ref_list[1][i].long_ref ? "LT" : "ST"), h->default_ref_list[1][i].pic_id, h->default_ref_list[0][i].data[0]); |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2965 } |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2966 } |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2967 #endif |
1168 | 2968 return 0; |
2969 } | |
2970 | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2971 static void print_short_term(H264Context *h); |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2972 static void print_long_term(H264Context *h); |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2973 |
1168 | 2974 static int decode_ref_pic_list_reordering(H264Context *h){ |
2975 MpegEncContext * const s = &h->s; | |
2976 int list; | |
2977 | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2978 print_short_term(h); |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
2979 print_long_term(h); |
1168 | 2980 if(h->slice_type==I_TYPE || h->slice_type==SI_TYPE) return 0; //FIXME move beofre func |
2981 | |
2982 for(list=0; list<2; list++){ | |
2983 memcpy(h->ref_list[list], h->default_ref_list[list], sizeof(Picture)*h->ref_count[list]); | |
2984 | |
2985 if(get_bits1(&s->gb)){ | |
2986 int pred= h->curr_pic_num; | |
2987 int index; | |
2988 | |
2989 for(index=0; ; index++){ | |
2990 int reordering_of_pic_nums_idc= get_ue_golomb(&s->gb); | |
2991 int pic_id; | |
2992 int i; | |
2993 | |
2284
6d26e105f68f
h.264 ref list reordering bugfix patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2272
diff
changeset
|
2994 if(reordering_of_pic_nums_idc==3) |
6d26e105f68f
h.264 ref list reordering bugfix patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2272
diff
changeset
|
2995 break; |
1168 | 2996 |
2997 if(index >= h->ref_count[list]){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
2998 av_log(h->s.avctx, AV_LOG_ERROR, "reference count overflow\n"); |
1168 | 2999 return -1; |
3000 } | |
3001 | |
3002 if(reordering_of_pic_nums_idc<3){ | |
3003 if(reordering_of_pic_nums_idc<2){ | |
3004 const int abs_diff_pic_num= get_ue_golomb(&s->gb) + 1; | |
3005 | |
3006 if(abs_diff_pic_num >= h->max_pic_num){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3007 av_log(h->s.avctx, AV_LOG_ERROR, "abs_diff_pic_num overflow\n"); |
1168 | 3008 return -1; |
3009 } | |
3010 | |
3011 if(reordering_of_pic_nums_idc == 0) pred-= abs_diff_pic_num; | |
3012 else pred+= abs_diff_pic_num; | |
3013 pred &= h->max_pic_num - 1; | |
3014 | |
3015 for(i= h->ref_count[list]-1; i>=index; i--){ | |
3016 if(h->ref_list[list][i].pic_id == pred && h->ref_list[list][i].long_ref==0) | |
3017 break; | |
3018 } | |
3019 }else{ | |
3020 pic_id= get_ue_golomb(&s->gb); //long_term_pic_idx | |
3021 | |
3022 for(i= h->ref_count[list]-1; i>=index; i--){ | |
3023 if(h->ref_list[list][i].pic_id == pic_id && h->ref_list[list][i].long_ref==1) | |
3024 break; | |
3025 } | |
3026 } | |
3027 | |
3028 if(i < index){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3029 av_log(h->s.avctx, AV_LOG_ERROR, "reference picture missing during reorder\n"); |
1168 | 3030 memset(&h->ref_list[list][index], 0, sizeof(Picture)); //FIXME |
3031 }else if(i > index){ | |
3032 Picture tmp= h->ref_list[list][i]; | |
3033 for(; i>index; i--){ | |
3034 h->ref_list[list][i]= h->ref_list[list][i-1]; | |
3035 } | |
3036 h->ref_list[list][index]= tmp; | |
3037 } | |
2284
6d26e105f68f
h.264 ref list reordering bugfix patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2272
diff
changeset
|
3038 }else{ |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3039 av_log(h->s.avctx, AV_LOG_ERROR, "illegal reordering_of_pic_nums_idc\n"); |
1168 | 3040 return -1; |
3041 } | |
3042 } | |
3043 } | |
3044 | |
3045 if(h->slice_type!=B_TYPE) break; | |
3046 } | |
2396 | 3047 |
3048 if(h->slice_type==B_TYPE && !h->direct_spatial_mv_pred) | |
3049 direct_dist_scale_factor(h); | |
1168 | 3050 return 0; |
3051 } | |
3052 | |
3053 static int pred_weight_table(H264Context *h){ | |
3054 MpegEncContext * const s = &h->s; | |
3055 int list, i; | |
2415 | 3056 int luma_def, chroma_def; |
1168 | 3057 |
2415 | 3058 h->use_weight= 0; |
3059 h->use_weight_chroma= 0; | |
1168 | 3060 h->luma_log2_weight_denom= get_ue_golomb(&s->gb); |
3061 h->chroma_log2_weight_denom= get_ue_golomb(&s->gb); | |
2415 | 3062 luma_def = 1<<h->luma_log2_weight_denom; |
3063 chroma_def = 1<<h->chroma_log2_weight_denom; | |
1168 | 3064 |
3065 for(list=0; list<2; list++){ | |
3066 for(i=0; i<h->ref_count[list]; i++){ | |
3067 int luma_weight_flag, chroma_weight_flag; | |
3068 | |
3069 luma_weight_flag= get_bits1(&s->gb); | |
3070 if(luma_weight_flag){ | |
3071 h->luma_weight[list][i]= get_se_golomb(&s->gb); | |
3072 h->luma_offset[list][i]= get_se_golomb(&s->gb); | |
2415 | 3073 if( h->luma_weight[list][i] != luma_def |
3074 || h->luma_offset[list][i] != 0) | |
3075 h->use_weight= 1; | |
3076 }else{ | |
3077 h->luma_weight[list][i]= luma_def; | |
3078 h->luma_offset[list][i]= 0; | |
1168 | 3079 } |
3080 | |
3081 chroma_weight_flag= get_bits1(&s->gb); | |
3082 if(chroma_weight_flag){ | |
3083 int j; | |
3084 for(j=0; j<2; j++){ | |
3085 h->chroma_weight[list][i][j]= get_se_golomb(&s->gb); | |
3086 h->chroma_offset[list][i][j]= get_se_golomb(&s->gb); | |
2415 | 3087 if( h->chroma_weight[list][i][j] != chroma_def |
3088 || h->chroma_offset[list][i][j] != 0) | |
3089 h->use_weight_chroma= 1; | |
3090 } | |
3091 }else{ | |
3092 int j; | |
3093 for(j=0; j<2; j++){ | |
3094 h->chroma_weight[list][i][j]= chroma_def; | |
3095 h->chroma_offset[list][i][j]= 0; | |
1168 | 3096 } |
3097 } | |
3098 } | |
3099 if(h->slice_type != B_TYPE) break; | |
3100 } | |
2415 | 3101 h->use_weight= h->use_weight || h->use_weight_chroma; |
1168 | 3102 return 0; |
3103 } | |
3104 | |
2415 | 3105 static void implicit_weight_table(H264Context *h){ |
3106 MpegEncContext * const s = &h->s; | |
3107 int ref0, ref1; | |
3108 int cur_poc = s->current_picture_ptr->poc; | |
3109 | |
3110 if( h->ref_count[0] == 1 && h->ref_count[1] == 1 | |
3111 && h->ref_list[0][0].poc + h->ref_list[1][0].poc == 2*cur_poc){ | |
3112 h->use_weight= 0; | |
3113 h->use_weight_chroma= 0; | |
3114 return; | |
3115 } | |
3116 | |
3117 h->use_weight= 2; | |
3118 h->use_weight_chroma= 2; | |
3119 h->luma_log2_weight_denom= 5; | |
3120 h->chroma_log2_weight_denom= 5; | |
3121 | |
3122 /* FIXME: MBAFF */ | |
3123 for(ref0=0; ref0 < h->ref_count[0]; ref0++){ | |
3124 int poc0 = h->ref_list[0][ref0].poc; | |
3125 for(ref1=0; ref1 < h->ref_count[1]; ref1++){ | |
3126 int poc1 = h->ref_list[0][ref1].poc; | |
3127 int td = clip(poc1 - poc0, -128, 127); | |
3128 if(td){ | |
3129 int tb = clip(cur_poc - poc0, -128, 127); | |
3130 int tx = (16384 + (ABS(td) >> 1)) / td; | |
3131 int dist_scale_factor = clip((tb*tx + 32) >> 6, -1024, 1023) >> 2; | |
3132 if(dist_scale_factor < -64 || dist_scale_factor > 128) | |
3133 h->implicit_weight[ref0][ref1] = 32; | |
3134 else | |
3135 h->implicit_weight[ref0][ref1] = 64 - dist_scale_factor; | |
3136 }else | |
3137 h->implicit_weight[ref0][ref1] = 32; | |
3138 } | |
3139 } | |
3140 } | |
3141 | |
1168 | 3142 /** |
2392 | 3143 * instantaneous decoder refresh. |
1168 | 3144 */ |
3145 static void idr(H264Context *h){ | |
2409 | 3146 int i,j; |
3147 | |
3148 #define CHECK_DELAY(pic) \ | |
3149 for(j = 0; h->delayed_pic[j]; j++) \ | |
3150 if(pic == h->delayed_pic[j]){ \ | |
3151 pic->reference=1; \ | |
3152 break; \ | |
3153 } | |
1168 | 3154 |
3155 for(i=0; i<h->long_ref_count; i++){ | |
3156 h->long_ref[i]->reference=0; | |
2409 | 3157 CHECK_DELAY(h->long_ref[i]); |
1168 | 3158 h->long_ref[i]= NULL; |
3159 } | |
3160 h->long_ref_count=0; | |
3161 | |
3162 for(i=0; i<h->short_ref_count; i++){ | |
3163 h->short_ref[i]->reference=0; | |
2409 | 3164 CHECK_DELAY(h->short_ref[i]); |
1168 | 3165 h->short_ref[i]= NULL; |
3166 } | |
3167 h->short_ref_count=0; | |
3168 } | |
2409 | 3169 #undef CHECK_DELAY |
1168 | 3170 |
3171 /** | |
3172 * | |
3173 * @return the removed picture or NULL if an error occures | |
3174 */ | |
3175 static Picture * remove_short(H264Context *h, int frame_num){ | |
1169 | 3176 MpegEncContext * const s = &h->s; |
1168 | 3177 int i; |
3178 | |
1169 | 3179 if(s->avctx->debug&FF_DEBUG_MMCO) |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3180 av_log(h->s.avctx, AV_LOG_DEBUG, "remove short %d count %d\n", frame_num, h->short_ref_count); |
1169 | 3181 |
1168 | 3182 for(i=0; i<h->short_ref_count; i++){ |
3183 Picture *pic= h->short_ref[i]; | |
1169 | 3184 if(s->avctx->debug&FF_DEBUG_MMCO) |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3185 av_log(h->s.avctx, AV_LOG_DEBUG, "%d %d %p\n", i, pic->frame_num, pic); |
1168 | 3186 if(pic->frame_num == frame_num){ |
3187 h->short_ref[i]= NULL; | |
3188 memmove(&h->short_ref[i], &h->short_ref[i+1], (h->short_ref_count - i - 1)*sizeof(Picture*)); | |
3189 h->short_ref_count--; | |
3190 return pic; | |
3191 } | |
3192 } | |
3193 return NULL; | |
3194 } | |
3195 | |
3196 /** | |
3197 * | |
3198 * @return the removed picture or NULL if an error occures | |
3199 */ | |
3200 static Picture * remove_long(H264Context *h, int i){ | |
3201 Picture *pic; | |
3202 | |
3203 pic= h->long_ref[i]; | |
3204 h->long_ref[i]= NULL; | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3205 if(pic) h->long_ref_count--; |
1168 | 3206 |
3207 return pic; | |
3208 } | |
3209 | |
3210 /** | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3211 * print short term list |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3212 */ |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3213 static void print_short_term(H264Context *h) { |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3214 uint32_t i; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3215 if(h->s.avctx->debug&FF_DEBUG_MMCO) { |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3216 av_log(h->s.avctx, AV_LOG_DEBUG, "short term list:\n"); |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3217 for(i=0; i<h->short_ref_count; i++){ |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3218 Picture *pic= h->short_ref[i]; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3219 av_log(h->s.avctx, AV_LOG_DEBUG, "%d fn:%d poc:%d %p\n", i, pic->frame_num, pic->poc, pic->data[0]); |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3220 } |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3221 } |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3222 } |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3223 |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3224 /** |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3225 * print long term list |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3226 */ |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3227 static void print_long_term(H264Context *h) { |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3228 uint32_t i; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3229 if(h->s.avctx->debug&FF_DEBUG_MMCO) { |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3230 av_log(h->s.avctx, AV_LOG_DEBUG, "long term list:\n"); |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3231 for(i = 0; i < 16; i++){ |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3232 Picture *pic= h->long_ref[i]; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3233 if (pic) { |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3234 av_log(h->s.avctx, AV_LOG_DEBUG, "%d fn:%d poc:%d %p\n", i, pic->frame_num, pic->poc, pic->data[0]); |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3235 } |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3236 } |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3237 } |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3238 } |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3239 |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3240 /** |
1168 | 3241 * Executes the reference picture marking (memory management control operations). |
3242 */ | |
3243 static int execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){ | |
3244 MpegEncContext * const s = &h->s; | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3245 int i, j; |
1168 | 3246 int current_is_long=0; |
3247 Picture *pic; | |
3248 | |
3249 if((s->avctx->debug&FF_DEBUG_MMCO) && mmco_count==0) | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3250 av_log(h->s.avctx, AV_LOG_DEBUG, "no mmco here\n"); |
1168 | 3251 |
3252 for(i=0; i<mmco_count; i++){ | |
3253 if(s->avctx->debug&FF_DEBUG_MMCO) | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3254 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); |
1168 | 3255 |
3256 switch(mmco[i].opcode){ | |
3257 case MMCO_SHORT2UNUSED: | |
3258 pic= remove_short(h, mmco[i].short_frame_num); | |
3259 if(pic==NULL) return -1; | |
3260 pic->reference= 0; | |
3261 break; | |
3262 case MMCO_SHORT2LONG: | |
3263 pic= remove_long(h, mmco[i].long_index); | |
3264 if(pic) pic->reference=0; | |
3265 | |
3266 h->long_ref[ mmco[i].long_index ]= remove_short(h, mmco[i].short_frame_num); | |
3267 h->long_ref[ mmco[i].long_index ]->long_ref=1; | |
3268 break; | |
3269 case MMCO_LONG2UNUSED: | |
3270 pic= remove_long(h, mmco[i].long_index); | |
3271 if(pic==NULL) return -1; | |
3272 pic->reference= 0; | |
3273 break; | |
3274 case MMCO_LONG: | |
3275 pic= remove_long(h, mmco[i].long_index); | |
3276 if(pic) pic->reference=0; | |
3277 | |
3278 h->long_ref[ mmco[i].long_index ]= s->current_picture_ptr; | |
3279 h->long_ref[ mmco[i].long_index ]->long_ref=1; | |
3280 h->long_ref_count++; | |
3281 | |
3282 current_is_long=1; | |
3283 break; | |
3284 case MMCO_SET_MAX_LONG: | |
3285 assert(mmco[i].long_index <= 16); | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3286 // just remove the long term which index is greater than new max |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3287 for(j = mmco[i].long_index; j<16; j++){ |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3288 pic = remove_long(h, j); |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3289 if (pic) pic->reference=0; |
1168 | 3290 } |
3291 break; | |
3292 case MMCO_RESET: | |
3293 while(h->short_ref_count){ | |
3294 pic= remove_short(h, h->short_ref[0]->frame_num); | |
3295 pic->reference=0; | |
3296 } | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3297 for(j = 0; j < 16; j++) { |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3298 pic= remove_long(h, j); |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3299 if(pic) pic->reference=0; |
1168 | 3300 } |
3301 break; | |
3302 default: assert(0); | |
3303 } | |
3304 } | |
3305 | |
3306 if(!current_is_long){ | |
3307 pic= remove_short(h, s->current_picture_ptr->frame_num); | |
3308 if(pic){ | |
3309 pic->reference=0; | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3310 av_log(h->s.avctx, AV_LOG_ERROR, "illegal short term buffer state detected\n"); |
1168 | 3311 } |
3312 | |
3313 if(h->short_ref_count) | |
1169 | 3314 memmove(&h->short_ref[1], &h->short_ref[0], h->short_ref_count*sizeof(Picture*)); |
3315 | |
3316 h->short_ref[0]= s->current_picture_ptr; | |
1168 | 3317 h->short_ref[0]->long_ref=0; |
3318 h->short_ref_count++; | |
3319 } | |
3320 | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3321 print_short_term(h); |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
3322 print_long_term(h); |
1168 | 3323 return 0; |
3324 } | |
3325 | |
3326 static int decode_ref_pic_marking(H264Context *h){ | |
3327 MpegEncContext * const s = &h->s; | |
3328 int i; | |
3329 | |
3330 if(h->nal_unit_type == NAL_IDR_SLICE){ //FIXME fields | |
3331 s->broken_link= get_bits1(&s->gb) -1; | |
3332 h->mmco[0].long_index= get_bits1(&s->gb) - 1; // current_long_term_idx | |
3333 if(h->mmco[0].long_index == -1) | |
3334 h->mmco_index= 0; | |
3335 else{ | |
3336 h->mmco[0].opcode= MMCO_LONG; | |
3337 h->mmco_index= 1; | |
3338 } | |
3339 }else{ | |
3340 if(get_bits1(&s->gb)){ // adaptive_ref_pic_marking_mode_flag | |
2402
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
3341 for(i= 0; i<MAX_MMCO_COUNT; i++) { |
1168 | 3342 MMCOOpcode opcode= get_ue_golomb(&s->gb);; |
3343 | |
3344 h->mmco[i].opcode= opcode; | |
3345 if(opcode==MMCO_SHORT2UNUSED || opcode==MMCO_SHORT2LONG){ | |
3346 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 | |
3347 /* if(h->mmco[i].short_frame_num >= h->short_ref_count || h->short_ref[ h->mmco[i].short_frame_num ] == NULL){ | |
3348 fprintf(stderr, "illegal short ref in memory management control operation %d\n", mmco); | |
3349 return -1; | |
3350 }*/ | |
3351 } | |
3352 if(opcode==MMCO_SHORT2LONG || opcode==MMCO_LONG2UNUSED || opcode==MMCO_LONG || opcode==MMCO_SET_MAX_LONG){ | |
3353 h->mmco[i].long_index= get_ue_golomb(&s->gb); | |
3354 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){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3355 av_log(h->s.avctx, AV_LOG_ERROR, "illegal long ref in memory management control operation %d\n", opcode); |
1168 | 3356 return -1; |
3357 } | |
3358 } | |
3359 | |
3360 if(opcode > MMCO_LONG){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3361 av_log(h->s.avctx, AV_LOG_ERROR, "illegal memory management control operation %d\n", opcode); |
1168 | 3362 return -1; |
3363 } | |
2255
507690ff49a2
assertion when playing AVC/H.264 streams fix by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2254
diff
changeset
|
3364 if(opcode == MMCO_END) |
507690ff49a2
assertion when playing AVC/H.264 streams fix by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2254
diff
changeset
|
3365 break; |
1168 | 3366 } |
3367 h->mmco_index= i; | |
3368 }else{ | |
3369 assert(h->long_ref_count + h->short_ref_count <= h->sps.ref_frame_count); | |
3370 | |
3371 if(h->long_ref_count + h->short_ref_count == h->sps.ref_frame_count){ //FIXME fields | |
3372 h->mmco[0].opcode= MMCO_SHORT2UNUSED; | |
3373 h->mmco[0].short_frame_num= h->short_ref[ h->short_ref_count - 1 ]->frame_num; | |
3374 h->mmco_index= 1; | |
3375 }else | |
3376 h->mmco_index= 0; | |
3377 } | |
3378 } | |
3379 | |
3380 return 0; | |
3381 } | |
3382 | |
3383 static int init_poc(H264Context *h){ | |
3384 MpegEncContext * const s = &h->s; | |
3385 const int max_frame_num= 1<<h->sps.log2_max_frame_num; | |
3386 int field_poc[2]; | |
3387 | |
3388 if(h->nal_unit_type == NAL_IDR_SLICE){ | |
3389 h->frame_num_offset= 0; | |
3390 }else{ | |
3391 if(h->frame_num < h->prev_frame_num) | |
3392 h->frame_num_offset= h->prev_frame_num_offset + max_frame_num; | |
3393 else | |
3394 h->frame_num_offset= h->prev_frame_num_offset; | |
3395 } | |
3396 | |
3397 if(h->sps.poc_type==0){ | |
3398 const int max_poc_lsb= 1<<h->sps.log2_max_poc_lsb; | |
3399 | |
3400 if (h->poc_lsb < h->prev_poc_lsb && h->prev_poc_lsb - h->poc_lsb >= max_poc_lsb/2) | |
3401 h->poc_msb = h->prev_poc_msb + max_poc_lsb; | |
3402 else if(h->poc_lsb > h->prev_poc_lsb && h->prev_poc_lsb - h->poc_lsb < -max_poc_lsb/2) | |
3403 h->poc_msb = h->prev_poc_msb - max_poc_lsb; | |
3404 else | |
3405 h->poc_msb = h->prev_poc_msb; | |
3406 //printf("poc: %d %d\n", h->poc_msb, h->poc_lsb); | |
3407 field_poc[0] = | |
3408 field_poc[1] = h->poc_msb + h->poc_lsb; | |
3409 if(s->picture_structure == PICT_FRAME) | |
3410 field_poc[1] += h->delta_poc_bottom; | |
3411 }else if(h->sps.poc_type==1){ | |
3412 int abs_frame_num, expected_delta_per_poc_cycle, expectedpoc; | |
3413 int i; | |
3414 | |
3415 if(h->sps.poc_cycle_length != 0) | |
3416 abs_frame_num = h->frame_num_offset + h->frame_num; | |
3417 else | |
3418 abs_frame_num = 0; | |
3419 | |
3420 if(h->nal_ref_idc==0 && abs_frame_num > 0) | |
3421 abs_frame_num--; | |
3422 | |
3423 expected_delta_per_poc_cycle = 0; | |
3424 for(i=0; i < h->sps.poc_cycle_length; i++) | |
3425 expected_delta_per_poc_cycle += h->sps.offset_for_ref_frame[ i ]; //FIXME integrate during sps parse | |
3426 | |
3427 if(abs_frame_num > 0){ | |
3428 int poc_cycle_cnt = (abs_frame_num - 1) / h->sps.poc_cycle_length; | |
3429 int frame_num_in_poc_cycle = (abs_frame_num - 1) % h->sps.poc_cycle_length; | |
3430 | |
3431 expectedpoc = poc_cycle_cnt * expected_delta_per_poc_cycle; | |
3432 for(i = 0; i <= frame_num_in_poc_cycle; i++) | |
3433 expectedpoc = expectedpoc + h->sps.offset_for_ref_frame[ i ]; | |
3434 } else | |
3435 expectedpoc = 0; | |
3436 | |
3437 if(h->nal_ref_idc == 0) | |
3438 expectedpoc = expectedpoc + h->sps.offset_for_non_ref_pic; | |
3439 | |
3440 field_poc[0] = expectedpoc + h->delta_poc[0]; | |
3441 field_poc[1] = field_poc[0] + h->sps.offset_for_top_to_bottom_field; | |
3442 | |
3443 if(s->picture_structure == PICT_FRAME) | |
3444 field_poc[1] += h->delta_poc[1]; | |
3445 }else{ | |
3446 int poc; | |
3447 if(h->nal_unit_type == NAL_IDR_SLICE){ | |
3448 poc= 0; | |
3449 }else{ | |
3450 if(h->nal_ref_idc) poc= 2*(h->frame_num_offset + h->frame_num); | |
3451 else poc= 2*(h->frame_num_offset + h->frame_num) - 1; | |
3452 } | |
3453 field_poc[0]= poc; | |
3454 field_poc[1]= poc; | |
3455 } | |
3456 | |
3457 if(s->picture_structure != PICT_BOTTOM_FIELD) | |
3458 s->current_picture_ptr->field_poc[0]= field_poc[0]; | |
3459 if(s->picture_structure != PICT_TOP_FIELD) | |
3460 s->current_picture_ptr->field_poc[1]= field_poc[1]; | |
3461 if(s->picture_structure == PICT_FRAME) // FIXME field pix? | |
3462 s->current_picture_ptr->poc= FFMIN(field_poc[0], field_poc[1]); | |
3463 | |
3464 return 0; | |
3465 } | |
3466 | |
3467 /** | |
3468 * decodes a slice header. | |
3469 * this will allso call MPV_common_init() and frame_start() as needed | |
3470 */ | |
3471 static int decode_slice_header(H264Context *h){ | |
3472 MpegEncContext * const s = &h->s; | |
3473 int first_mb_in_slice, pps_id; | |
3474 int num_ref_idx_active_override_flag; | |
3475 static const uint8_t slice_type_map[5]= {P_TYPE, B_TYPE, I_TYPE, SP_TYPE, SI_TYPE}; | |
3476 | |
3477 s->current_picture.reference= h->nal_ref_idc != 0; | |
3478 | |
3479 first_mb_in_slice= get_ue_golomb(&s->gb); | |
3480 | |
3481 h->slice_type= get_ue_golomb(&s->gb); | |
3482 if(h->slice_type > 9){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3483 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); |
2392 | 3484 return -1; |
1168 | 3485 } |
3486 if(h->slice_type > 4){ | |
3487 h->slice_type -= 5; | |
3488 h->slice_type_fixed=1; | |
3489 }else | |
3490 h->slice_type_fixed=0; | |
3491 | |
3492 h->slice_type= slice_type_map[ h->slice_type ]; | |
3493 | |
3494 s->pict_type= h->slice_type; // to make a few old func happy, its wrong though | |
3495 | |
3496 pps_id= get_ue_golomb(&s->gb); | |
3497 if(pps_id>255){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3498 av_log(h->s.avctx, AV_LOG_ERROR, "pps_id out of range\n"); |
1168 | 3499 return -1; |
3500 } | |
3501 h->pps= h->pps_buffer[pps_id]; | |
1174 | 3502 if(h->pps.slice_group_count == 0){ |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3503 av_log(h->s.avctx, AV_LOG_ERROR, "non existing PPS referenced\n"); |
1174 | 3504 return -1; |
3505 } | |
3506 | |
1168 | 3507 h->sps= h->sps_buffer[ h->pps.sps_id ]; |
1174 | 3508 if(h->sps.log2_max_frame_num == 0){ |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3509 av_log(h->s.avctx, AV_LOG_ERROR, "non existing SPS referenced\n"); |
1174 | 3510 return -1; |
3511 } | |
1168 | 3512 |
3513 s->mb_width= h->sps.mb_width; | |
3514 s->mb_height= h->sps.mb_height; | |
3515 | |
2395 | 3516 h->b_stride= s->mb_width*4 + 1; |
3517 h->b8_stride= s->mb_width*2 + 1; | |
1168 | 3518 |
2392 | 3519 s->resync_mb_x = s->mb_x = first_mb_in_slice % s->mb_width; |
3520 s->resync_mb_y = s->mb_y = first_mb_in_slice / s->mb_width; //FIXME AFFW | |
1168 | 3521 |
1371 | 3522 s->width = 16*s->mb_width - 2*(h->sps.crop_left + h->sps.crop_right ); |
1168 | 3523 if(h->sps.frame_mbs_only_flag) |
1371 | 3524 s->height= 16*s->mb_height - 2*(h->sps.crop_top + h->sps.crop_bottom); |
1168 | 3525 else |
1371 | 3526 s->height= 16*s->mb_height - 4*(h->sps.crop_top + h->sps.crop_bottom); //FIXME recheck |
1168 | 3527 |
3528 if (s->context_initialized | |
1548 | 3529 && ( s->width != s->avctx->width || s->height != s->avctx->height)) { |
1168 | 3530 free_tables(h); |
3531 MPV_common_end(s); | |
3532 } | |
3533 if (!s->context_initialized) { | |
3534 if (MPV_common_init(s) < 0) | |
3535 return -1; | |
3536 | |
3537 alloc_tables(h); | |
3538 | |
3539 s->avctx->width = s->width; | |
3540 s->avctx->height = s->height; | |
1548 | 3541 s->avctx->sample_aspect_ratio= h->sps.sar; |
2440 | 3542 if(!s->avctx->sample_aspect_ratio.den) |
3543 s->avctx->sample_aspect_ratio.den = 1; | |
2174
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
3544 |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
3545 if(h->sps.timing_info_present_flag && h->sps.fixed_frame_rate_flag){ |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
3546 s->avctx->frame_rate = h->sps.time_scale; |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
3547 s->avctx->frame_rate_base = h->sps.num_units_in_tick; |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
3548 } |
1168 | 3549 } |
3550 | |
2392 | 3551 if(h->slice_num == 0){ |
1168 | 3552 frame_start(h); |
3553 } | |
3554 | |
1169 | 3555 s->current_picture_ptr->frame_num= //FIXME frame_num cleanup |
1168 | 3556 h->frame_num= get_bits(&s->gb, h->sps.log2_max_frame_num); |
3557 | |
3558 if(h->sps.frame_mbs_only_flag){ | |
3559 s->picture_structure= PICT_FRAME; | |
3560 }else{ | |
3561 if(get_bits1(&s->gb)) //field_pic_flag | |
3562 s->picture_structure= PICT_TOP_FIELD + get_bits1(&s->gb); //bottom_field_flag | |
3563 else | |
3564 s->picture_structure= PICT_FRAME; | |
3565 } | |
3566 | |
3567 if(s->picture_structure==PICT_FRAME){ | |
3568 h->curr_pic_num= h->frame_num; | |
3569 h->max_pic_num= 1<< h->sps.log2_max_frame_num; | |
3570 }else{ | |
3571 h->curr_pic_num= 2*h->frame_num; | |
3572 h->max_pic_num= 1<<(h->sps.log2_max_frame_num + 1); | |
3573 } | |
3574 | |
3575 if(h->nal_unit_type == NAL_IDR_SLICE){ | |
1453 | 3576 get_ue_golomb(&s->gb); /* idr_pic_id */ |
1168 | 3577 } |
3578 | |
3579 if(h->sps.poc_type==0){ | |
3580 h->poc_lsb= get_bits(&s->gb, h->sps.log2_max_poc_lsb); | |
3581 | |
3582 if(h->pps.pic_order_present==1 && s->picture_structure==PICT_FRAME){ | |
3583 h->delta_poc_bottom= get_se_golomb(&s->gb); | |
3584 } | |
3585 } | |
3586 | |
3587 if(h->sps.poc_type==1 && !h->sps.delta_pic_order_always_zero_flag){ | |
3588 h->delta_poc[0]= get_se_golomb(&s->gb); | |
3589 | |
3590 if(h->pps.pic_order_present==1 && s->picture_structure==PICT_FRAME) | |
3591 h->delta_poc[1]= get_se_golomb(&s->gb); | |
3592 } | |
3593 | |
3594 init_poc(h); | |
3595 | |
3596 if(h->pps.redundant_pic_cnt_present){ | |
3597 h->redundant_pic_count= get_ue_golomb(&s->gb); | |
3598 } | |
3599 | |
3600 //set defaults, might be overriden a few line later | |
3601 h->ref_count[0]= h->pps.ref_count[0]; | |
3602 h->ref_count[1]= h->pps.ref_count[1]; | |
3603 | |
3604 if(h->slice_type == P_TYPE || h->slice_type == SP_TYPE || h->slice_type == B_TYPE){ | |
3605 if(h->slice_type == B_TYPE){ | |
3606 h->direct_spatial_mv_pred= get_bits1(&s->gb); | |
3607 } | |
3608 num_ref_idx_active_override_flag= get_bits1(&s->gb); | |
3609 | |
3610 if(num_ref_idx_active_override_flag){ | |
3611 h->ref_count[0]= get_ue_golomb(&s->gb) + 1; | |
3612 if(h->slice_type==B_TYPE) | |
3613 h->ref_count[1]= get_ue_golomb(&s->gb) + 1; | |
3614 | |
3615 if(h->ref_count[0] > 32 || h->ref_count[1] > 32){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3616 av_log(h->s.avctx, AV_LOG_ERROR, "reference overflow\n"); |
1168 | 3617 return -1; |
3618 } | |
3619 } | |
3620 } | |
3621 | |
2392 | 3622 if(h->slice_num == 0){ |
1168 | 3623 fill_default_ref_list(h); |
3624 } | |
3625 | |
3626 decode_ref_pic_list_reordering(h); | |
3627 | |
3628 if( (h->pps.weighted_pred && (h->slice_type == P_TYPE || h->slice_type == SP_TYPE )) | |
3629 || (h->pps.weighted_bipred_idc==1 && h->slice_type==B_TYPE ) ) | |
3630 pred_weight_table(h); | |
2415 | 3631 else if(h->pps.weighted_bipred_idc==2 && h->slice_type==B_TYPE) |
3632 implicit_weight_table(h); | |
3633 else | |
3634 h->use_weight = 0; | |
1168 | 3635 |
3636 if(s->current_picture.reference) | |
3637 decode_ref_pic_marking(h); | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
3638 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
3639 if( h->slice_type != I_TYPE && h->slice_type != SI_TYPE && h->pps.cabac ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
3640 h->cabac_init_idc = get_ue_golomb(&s->gb); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
3641 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
3642 h->last_qscale_diff = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
3643 s->qscale = h->pps.init_qp + get_se_golomb(&s->gb); |
1898 | 3644 if(s->qscale<0 || s->qscale>51){ |
3645 av_log(s->avctx, AV_LOG_ERROR, "QP %d out of range\n", s->qscale); | |
3646 return -1; | |
3647 } | |
2402
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
3648 h->chroma_qp = get_chroma_qp(h, s->qscale); |
1168 | 3649 //FIXME qscale / qp ... stuff |
3650 if(h->slice_type == SP_TYPE){ | |
1453 | 3651 get_bits1(&s->gb); /* sp_for_switch_flag */ |
1168 | 3652 } |
3653 if(h->slice_type==SP_TYPE || h->slice_type == SI_TYPE){ | |
1453 | 3654 get_se_golomb(&s->gb); /* slice_qs_delta */ |
1168 | 3655 } |
3656 | |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
3657 h->deblocking_filter = 1; |
1898 | 3658 h->slice_alpha_c0_offset = 0; |
3659 h->slice_beta_offset = 0; | |
1168 | 3660 if( h->pps.deblocking_filter_parameters_present ) { |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
3661 h->deblocking_filter= get_ue_golomb(&s->gb); |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
3662 if(h->deblocking_filter < 2) |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
3663 h->deblocking_filter^= 1; // 1<->0 |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
3664 |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
3665 if( h->deblocking_filter ) { |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
3666 h->slice_alpha_c0_offset = get_se_golomb(&s->gb) << 1; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
3667 h->slice_beta_offset = get_se_golomb(&s->gb) << 1; |
1168 | 3668 } |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
3669 } |
1168 | 3670 |
3671 #if 0 //FMO | |
3672 if( h->pps.num_slice_groups > 1 && h->pps.mb_slice_group_map_type >= 3 && h->pps.mb_slice_group_map_type <= 5) | |
3673 slice_group_change_cycle= get_bits(&s->gb, ?); | |
3674 #endif | |
3675 | |
2392 | 3676 h->slice_num++; |
3677 | |
1168 | 3678 if(s->avctx->debug&FF_DEBUG_PICT_INFO){ |
2415 | 3679 av_log(h->s.avctx, AV_LOG_DEBUG, "slice:%d mb:%d %c pps:%d frame:%d poc:%d/%d ref:%d/%d qp:%d loop:%d weight:%d%s\n", |
2392 | 3680 h->slice_num, first_mb_in_slice, |
1264 | 3681 av_get_pict_type_char(h->slice_type), |
1168 | 3682 pps_id, h->frame_num, |
3683 s->current_picture_ptr->field_poc[0], s->current_picture_ptr->field_poc[1], | |
3684 h->ref_count[0], h->ref_count[1], | |
3685 s->qscale, | |
2415 | 3686 h->deblocking_filter, |
3687 h->use_weight, | |
3688 h->use_weight==1 && h->use_weight_chroma ? "c" : "" | |
1168 | 3689 ); |
3690 } | |
3691 | |
3692 return 0; | |
3693 } | |
3694 | |
3695 /** | |
3696 * | |
3697 */ | |
3698 static inline int get_level_prefix(GetBitContext *gb){ | |
3699 unsigned int buf; | |
3700 int log; | |
3701 | |
3702 OPEN_READER(re, gb); | |
3703 UPDATE_CACHE(re, gb); | |
3704 buf=GET_CACHE(re, gb); | |
3705 | |
3706 log= 32 - av_log2(buf); | |
3707 #ifdef TRACE | |
3708 print_bin(buf>>(32-log), log); | |
2272
cd43603c46f9
move h264 idct to its own file and call via function pointer in DspContext
michael
parents:
2255
diff
changeset
|
3709 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__); |
1168 | 3710 #endif |
3711 | |
3712 LAST_SKIP_BITS(re, gb, log); | |
3713 CLOSE_READER(re, gb); | |
3714 | |
3715 return log-1; | |
3716 } | |
3717 | |
3718 /** | |
3719 * decodes a residual block. | |
3720 * @param n block index | |
3721 * @param scantable scantable | |
3722 * @param max_coeff number of coefficients in the block | |
3723 * @return <0 if an error occured | |
3724 */ | |
3725 static int decode_residual(H264Context *h, GetBitContext *gb, DCTELEM *block, int n, const uint8_t *scantable, int qp, int max_coeff){ | |
3726 MpegEncContext * const s = &h->s; | |
3727 const uint16_t *qmul= dequant_coeff[qp]; | |
3728 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}; | |
3729 int level[16], run[16]; | |
3730 int suffix_length, zeros_left, coeff_num, coeff_token, total_coeff, i, trailing_ones; | |
3731 | |
3732 //FIXME put trailing_onex into the context | |
3733 | |
3734 if(n == CHROMA_DC_BLOCK_INDEX){ | |
3735 coeff_token= get_vlc2(gb, chroma_dc_coeff_token_vlc.table, CHROMA_DC_COEFF_TOKEN_VLC_BITS, 1); | |
3736 total_coeff= coeff_token>>2; | |
3737 }else{ | |
3738 if(n == LUMA_DC_BLOCK_INDEX){ | |
3739 total_coeff= pred_non_zero_count(h, 0); | |
3740 coeff_token= get_vlc2(gb, coeff_token_vlc[ coeff_token_table_index[total_coeff] ].table, COEFF_TOKEN_VLC_BITS, 2); | |
3741 total_coeff= coeff_token>>2; | |
3742 }else{ | |
3743 total_coeff= pred_non_zero_count(h, n); | |
3744 coeff_token= get_vlc2(gb, coeff_token_vlc[ coeff_token_table_index[total_coeff] ].table, COEFF_TOKEN_VLC_BITS, 2); | |
3745 total_coeff= coeff_token>>2; | |
3746 h->non_zero_count_cache[ scan8[n] ]= total_coeff; | |
3747 } | |
3748 } | |
3749 | |
3750 //FIXME set last_non_zero? | |
3751 | |
3752 if(total_coeff==0) | |
3753 return 0; | |
3754 | |
3755 trailing_ones= coeff_token&3; | |
1170 | 3756 tprintf("trailing:%d, total:%d\n", trailing_ones, total_coeff); |
1168 | 3757 assert(total_coeff<=16); |
3758 | |
3759 for(i=0; i<trailing_ones; i++){ | |
3760 level[i]= 1 - 2*get_bits1(gb); | |
3761 } | |
3762 | |
3763 suffix_length= total_coeff > 10 && trailing_ones < 3; | |
3764 | |
3765 for(; i<total_coeff; i++){ | |
3766 const int prefix= get_level_prefix(gb); | |
3767 int level_code, mask; | |
3768 | |
3769 if(prefix<14){ //FIXME try to build a large unified VLC table for all this | |
3770 if(suffix_length) | |
3771 level_code= (prefix<<suffix_length) + get_bits(gb, suffix_length); //part | |
3772 else | |
3773 level_code= (prefix<<suffix_length); //part | |
3774 }else if(prefix==14){ | |
3775 if(suffix_length) | |
3776 level_code= (prefix<<suffix_length) + get_bits(gb, suffix_length); //part | |
3777 else | |
3778 level_code= prefix + get_bits(gb, 4); //part | |
3779 }else if(prefix==15){ | |
3780 level_code= (prefix<<suffix_length) + get_bits(gb, 12); //part | |
3781 if(suffix_length==0) level_code+=15; //FIXME doesnt make (much)sense | |
3782 }else{ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3783 av_log(h->s.avctx, AV_LOG_ERROR, "prefix too large at %d %d\n", s->mb_x, s->mb_y); |
1168 | 3784 return -1; |
3785 } | |
3786 | |
3787 if(i==trailing_ones && i<3) level_code+= 2; //FIXME split first iteration | |
3788 | |
3789 mask= -(level_code&1); | |
3790 level[i]= (((2+level_code)>>1) ^ mask) - mask; | |
3791 | |
3792 if(suffix_length==0) suffix_length=1; //FIXME split first iteration | |
3793 | |
3794 #if 1 | |
3795 if(ABS(level[i]) > (3<<(suffix_length-1)) && suffix_length<6) suffix_length++; | |
3796 #else | |
3797 if((2+level_code)>>1) > (3<<(suffix_length-1)) && suffix_length<6) suffix_length++; | |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
3798 /* ? == prefix > 2 or sth */ |
1168 | 3799 #endif |
1170 | 3800 tprintf("level: %d suffix_length:%d\n", level[i], suffix_length); |
1168 | 3801 } |
3802 | |
3803 if(total_coeff == max_coeff) | |
3804 zeros_left=0; | |
3805 else{ | |
3806 if(n == CHROMA_DC_BLOCK_INDEX) | |
3807 zeros_left= get_vlc2(gb, chroma_dc_total_zeros_vlc[ total_coeff-1 ].table, CHROMA_DC_TOTAL_ZEROS_VLC_BITS, 1); | |
3808 else | |
3809 zeros_left= get_vlc2(gb, total_zeros_vlc[ total_coeff-1 ].table, TOTAL_ZEROS_VLC_BITS, 1); | |
3810 } | |
3811 | |
3812 for(i=0; i<total_coeff-1; i++){ | |
3813 if(zeros_left <=0) | |
3814 break; | |
3815 else if(zeros_left < 7){ | |
3816 run[i]= get_vlc2(gb, run_vlc[zeros_left-1].table, RUN_VLC_BITS, 1); | |
3817 }else{ | |
3818 run[i]= get_vlc2(gb, run7_vlc.table, RUN7_VLC_BITS, 2); | |
3819 } | |
3820 zeros_left -= run[i]; | |
3821 } | |
3822 | |
3823 if(zeros_left<0){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3824 av_log(h->s.avctx, AV_LOG_ERROR, "negative number of zero coeffs at %d %d\n", s->mb_x, s->mb_y); |
1168 | 3825 return -1; |
3826 } | |
3827 | |
3828 for(; i<total_coeff-1; i++){ | |
3829 run[i]= 0; | |
3830 } | |
3831 | |
3832 run[i]= zeros_left; | |
3833 | |
3834 coeff_num=-1; | |
3835 if(n > 24){ | |
3836 for(i=total_coeff-1; i>=0; i--){ //FIXME merge into rundecode? | |
3837 int j; | |
3838 | |
3839 coeff_num += run[i] + 1; //FIXME add 1 earlier ? | |
3840 j= scantable[ coeff_num ]; | |
3841 | |
3842 block[j]= level[i]; | |
3843 } | |
3844 }else{ | |
3845 for(i=total_coeff-1; i>=0; i--){ //FIXME merge into rundecode? | |
3846 int j; | |
3847 | |
3848 coeff_num += run[i] + 1; //FIXME add 1 earlier ? | |
3849 j= scantable[ coeff_num ]; | |
3850 | |
3851 block[j]= level[i] * qmul[j]; | |
3852 // printf("%d %d ", block[j], qmul[j]); | |
3853 } | |
3854 } | |
3855 return 0; | |
3856 } | |
3857 | |
3858 /** | |
2396 | 3859 * decodes a P_SKIP or B_SKIP macroblock |
3860 */ | |
3861 static void decode_mb_skip(H264Context *h){ | |
3862 MpegEncContext * const s = &h->s; | |
3863 const int mb_xy= s->mb_x + s->mb_y*s->mb_stride; | |
3864 int mb_type; | |
3865 | |
3866 memset(h->non_zero_count[mb_xy], 0, 16); | |
3867 memset(h->non_zero_count_cache + 8, 0, 8*5); //FIXME ugly, remove pfui | |
3868 | |
3869 if( h->slice_type == B_TYPE ) | |
3870 { | |
3871 // just for fill_caches. pred_direct_motion will set the real mb_type | |
3872 mb_type= MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2|MB_TYPE_SKIP; | |
3873 //FIXME mbaff | |
3874 | |
3875 fill_caches(h, mb_type); //FIXME check what is needed and what not ... | |
3876 pred_direct_motion(h, &mb_type); | |
3877 if(h->pps.cabac){ | |
3878 fill_rectangle(h->mvd_cache[0][scan8[0]], 4, 4, 8, 0, 4); | |
3879 fill_rectangle(h->mvd_cache[1][scan8[0]], 4, 4, 8, 0, 4); | |
3880 } | |
3881 } | |
3882 else | |
3883 { | |
3884 int mx, my; | |
3885 mb_type= MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P1L0|MB_TYPE_SKIP; | |
3886 | |
3887 if(h->sps.mb_aff && s->mb_skip_run==0 && (s->mb_y&1)==0){ | |
3888 h->mb_field_decoding_flag= get_bits1(&s->gb); | |
3889 } | |
3890 if(h->mb_field_decoding_flag) | |
3891 mb_type|= MB_TYPE_INTERLACED; | |
3892 | |
3893 fill_caches(h, mb_type); //FIXME check what is needed and what not ... | |
3894 pred_pskip_motion(h, &mx, &my); | |
3895 fill_rectangle(&h->ref_cache[0][scan8[0]], 4, 4, 8, 0, 1); | |
3896 fill_rectangle( h->mv_cache[0][scan8[0]], 4, 4, 8, pack16to32(mx,my), 4); | |
3897 if(h->pps.cabac) | |
3898 fill_rectangle(h->mvd_cache[0][scan8[0]], 4, 4, 8, 0, 4); | |
3899 } | |
3900 | |
3901 write_back_motion(h, mb_type); | |
3902 s->current_picture.mb_type[mb_xy]= mb_type|MB_TYPE_SKIP; | |
3903 s->current_picture.qscale_table[mb_xy]= s->qscale; | |
3904 h->slice_table[ mb_xy ]= h->slice_num; | |
3905 h->prev_mb_skiped= 1; | |
3906 } | |
3907 | |
3908 /** | |
1168 | 3909 * decodes a macroblock |
3910 * @returns 0 if ok, AC_ERROR / DC_ERROR / MV_ERROR if an error is noticed | |
3911 */ | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
3912 static int decode_mb_cavlc(H264Context *h){ |
1168 | 3913 MpegEncContext * const s = &h->s; |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1174
diff
changeset
|
3914 const int mb_xy= s->mb_x + s->mb_y*s->mb_stride; |
1169 | 3915 int mb_type, partition_count, cbp; |
1168 | 3916 |
1252 | 3917 s->dsp.clear_blocks(h->mb); //FIXME avoid if allready clear (move after skip handlong? |
1168 | 3918 |
1170 | 3919 tprintf("pic:%d mb:%d/%d\n", h->frame_num, s->mb_x, s->mb_y); |
1453 | 3920 cbp = 0; /* avoid warning. FIXME: find a solution without slowing |
3921 down the code */ | |
1168 | 3922 if(h->slice_type != I_TYPE && h->slice_type != SI_TYPE){ |
3923 if(s->mb_skip_run==-1) | |
3924 s->mb_skip_run= get_ue_golomb(&s->gb); | |
3925 | |
3926 if (s->mb_skip_run--) { | |
2396 | 3927 decode_mb_skip(h); |
1168 | 3928 return 0; |
3929 } | |
3930 } | |
3931 if(h->sps.mb_aff /* && !field pic FIXME needed? */){ | |
3932 if((s->mb_y&1)==0) | |
3933 h->mb_field_decoding_flag = get_bits1(&s->gb); | |
3934 }else | |
3935 h->mb_field_decoding_flag=0; //FIXME som ed note ?! | |
3936 | |
3937 h->prev_mb_skiped= 0; | |
3938 | |
3939 mb_type= get_ue_golomb(&s->gb); | |
3940 if(h->slice_type == B_TYPE){ | |
3941 if(mb_type < 23){ | |
3942 partition_count= b_mb_type_info[mb_type].partition_count; | |
3943 mb_type= b_mb_type_info[mb_type].type; | |
3944 }else{ | |
3945 mb_type -= 23; | |
3946 goto decode_intra_mb; | |
3947 } | |
3948 }else if(h->slice_type == P_TYPE /*|| h->slice_type == SP_TYPE */){ | |
3949 if(mb_type < 5){ | |
3950 partition_count= p_mb_type_info[mb_type].partition_count; | |
3951 mb_type= p_mb_type_info[mb_type].type; | |
3952 }else{ | |
3953 mb_type -= 5; | |
3954 goto decode_intra_mb; | |
3955 } | |
3956 }else{ | |
3957 assert(h->slice_type == I_TYPE); | |
3958 decode_intra_mb: | |
3959 if(mb_type > 25){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
3960 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); |
1168 | 3961 return -1; |
3962 } | |
3963 partition_count=0; | |
3964 cbp= i_mb_type_info[mb_type].cbp; | |
3965 h->intra16x16_pred_mode= i_mb_type_info[mb_type].pred_mode; | |
3966 mb_type= i_mb_type_info[mb_type].type; | |
3967 } | |
3968 | |
3969 if(h->mb_field_decoding_flag) | |
3970 mb_type |= MB_TYPE_INTERLACED; | |
3971 | |
3972 s->current_picture.mb_type[mb_xy]= mb_type; | |
3973 h->slice_table[ mb_xy ]= h->slice_num; | |
3974 | |
3975 if(IS_INTRA_PCM(mb_type)){ | |
3976 const uint8_t *ptr; | |
1187 | 3977 int x, y; |
1168 | 3978 |
3979 // we assume these blocks are very rare so we dont optimize it | |
3980 align_get_bits(&s->gb); | |
3981 | |
3982 ptr= s->gb.buffer + get_bits_count(&s->gb); | |
3983 | |
3984 for(y=0; y<16; y++){ | |
3985 const int index= 4*(y&3) + 64*(y>>2); | |
3986 for(x=0; x<16; x++){ | |
3987 h->mb[index + (x&3) + 16*(x>>2)]= *(ptr++); | |
3988 } | |
3989 } | |
3990 for(y=0; y<8; y++){ | |
3991 const int index= 256 + 4*(y&3) + 32*(y>>2); | |
3992 for(x=0; x<8; x++){ | |
3993 h->mb[index + (x&3) + 16*(x>>2)]= *(ptr++); | |
3994 } | |
3995 } | |
3996 for(y=0; y<8; y++){ | |
3997 const int index= 256 + 64 + 4*(y&3) + 32*(y>>2); | |
3998 for(x=0; x<8; x++){ | |
3999 h->mb[index + (x&3) + 16*(x>>2)]= *(ptr++); | |
4000 } | |
4001 } | |
4002 | |
4003 skip_bits(&s->gb, 384); //FIXME check /fix the bitstream readers | |
4004 | |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
4005 //FIXME deblock filter, non_zero_count_cache init ... |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
4006 memset(h->non_zero_count[mb_xy], 16, 16); |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
4007 s->current_picture.qscale_table[mb_xy]= s->qscale; |
1168 | 4008 |
4009 return 0; | |
4010 } | |
4011 | |
4012 fill_caches(h, mb_type); | |
4013 | |
4014 //mb_pred | |
4015 if(IS_INTRA(mb_type)){ | |
4016 // init_top_left_availability(h); | |
4017 if(IS_INTRA4x4(mb_type)){ | |
4018 int i; | |
4019 | |
4020 // fill_intra4x4_pred_table(h); | |
4021 for(i=0; i<16; i++){ | |
4022 const int mode_coded= !get_bits1(&s->gb); | |
4023 const int predicted_mode= pred_intra_mode(h, i); | |
4024 int mode; | |
4025 | |
4026 if(mode_coded){ | |
4027 const int rem_mode= get_bits(&s->gb, 3); | |
4028 if(rem_mode<predicted_mode) | |
4029 mode= rem_mode; | |
4030 else | |
4031 mode= rem_mode + 1; | |
4032 }else{ | |
4033 mode= predicted_mode; | |
4034 } | |
4035 | |
4036 h->intra4x4_pred_mode_cache[ scan8[i] ] = mode; | |
4037 } | |
4038 write_back_intra_pred_mode(h); | |
4039 if( check_intra4x4_pred_mode(h) < 0) | |
4040 return -1; | |
4041 }else{ | |
4042 h->intra16x16_pred_mode= check_intra_pred_mode(h, h->intra16x16_pred_mode); | |
4043 if(h->intra16x16_pred_mode < 0) | |
4044 return -1; | |
4045 } | |
4046 h->chroma_pred_mode= get_ue_golomb(&s->gb); | |
4047 | |
4048 h->chroma_pred_mode= check_intra_pred_mode(h, h->chroma_pred_mode); | |
4049 if(h->chroma_pred_mode < 0) | |
4050 return -1; | |
4051 }else if(partition_count==4){ | |
4052 int i, j, sub_partition_count[4], list, ref[2][4]; | |
4053 | |
4054 if(h->slice_type == B_TYPE){ | |
4055 for(i=0; i<4; i++){ | |
4056 h->sub_mb_type[i]= get_ue_golomb(&s->gb); | |
4057 if(h->sub_mb_type[i] >=13){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
4058 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); |
1168 | 4059 return -1; |
4060 } | |
4061 sub_partition_count[i]= b_sub_mb_type_info[ h->sub_mb_type[i] ].partition_count; | |
4062 h->sub_mb_type[i]= b_sub_mb_type_info[ h->sub_mb_type[i] ].type; | |
4063 } | |
2396 | 4064 if( IS_DIRECT(h->sub_mb_type[0]) || IS_DIRECT(h->sub_mb_type[1]) |
4065 || IS_DIRECT(h->sub_mb_type[2]) || IS_DIRECT(h->sub_mb_type[3])) | |
4066 pred_direct_motion(h, &mb_type); | |
1168 | 4067 }else{ |
4068 assert(h->slice_type == P_TYPE || h->slice_type == SP_TYPE); //FIXME SP correct ? | |
4069 for(i=0; i<4; i++){ | |
4070 h->sub_mb_type[i]= get_ue_golomb(&s->gb); | |
4071 if(h->sub_mb_type[i] >=4){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
4072 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); |
1168 | 4073 return -1; |
4074 } | |
4075 sub_partition_count[i]= p_sub_mb_type_info[ h->sub_mb_type[i] ].partition_count; | |
4076 h->sub_mb_type[i]= p_sub_mb_type_info[ h->sub_mb_type[i] ].type; | |
4077 } | |
4078 } | |
4079 | |
4080 for(list=0; list<2; list++){ | |
4081 const int ref_count= IS_REF0(mb_type) ? 1 : h->ref_count[list]; | |
4082 if(ref_count == 0) continue; | |
4083 for(i=0; i<4; i++){ | |
2396 | 4084 if(IS_DIRECT(h->sub_mb_type[i])) continue; |
4085 if(IS_DIR(h->sub_mb_type[i], 0, list)){ | |
1168 | 4086 ref[list][i] = get_te0_golomb(&s->gb, ref_count); //FIXME init to 0 before and skip? |
4087 }else{ | |
4088 //FIXME | |
4089 ref[list][i] = -1; | |
4090 } | |
4091 } | |
4092 } | |
4093 | |
4094 for(list=0; list<2; list++){ | |
4095 const int ref_count= IS_REF0(mb_type) ? 1 : h->ref_count[list]; | |
4096 if(ref_count == 0) continue; | |
4097 | |
4098 for(i=0; i<4; i++){ | |
2396 | 4099 if(IS_DIRECT(h->sub_mb_type[i])) continue; |
1168 | 4100 h->ref_cache[list][ scan8[4*i] ]=h->ref_cache[list][ scan8[4*i]+1 ]= |
4101 h->ref_cache[list][ scan8[4*i]+8 ]=h->ref_cache[list][ scan8[4*i]+9 ]= ref[list][i]; | |
4102 | |
2396 | 4103 if(IS_DIR(h->sub_mb_type[i], 0, list)){ |
1168 | 4104 const int sub_mb_type= h->sub_mb_type[i]; |
4105 const int block_width= (sub_mb_type & (MB_TYPE_16x16|MB_TYPE_16x8)) ? 2 : 1; | |
4106 for(j=0; j<sub_partition_count[i]; j++){ | |
4107 int mx, my; | |
4108 const int index= 4*i + block_width*j; | |
4109 int16_t (* mv_cache)[2]= &h->mv_cache[list][ scan8[index] ]; | |
4110 pred_motion(h, index, block_width, list, h->ref_cache[list][ scan8[index] ], &mx, &my); | |
4111 mx += get_se_golomb(&s->gb); | |
4112 my += get_se_golomb(&s->gb); | |
1170 | 4113 tprintf("final mv:%d %d\n", mx, my); |
4114 | |
1168 | 4115 if(IS_SUB_8X8(sub_mb_type)){ |
4116 mv_cache[ 0 ][0]= mv_cache[ 1 ][0]= | |
4117 mv_cache[ 8 ][0]= mv_cache[ 9 ][0]= mx; | |
4118 mv_cache[ 0 ][1]= mv_cache[ 1 ][1]= | |
4119 mv_cache[ 8 ][1]= mv_cache[ 9 ][1]= my; | |
4120 }else if(IS_SUB_8X4(sub_mb_type)){ | |
4121 mv_cache[ 0 ][0]= mv_cache[ 1 ][0]= mx; | |
4122 mv_cache[ 0 ][1]= mv_cache[ 1 ][1]= my; | |
4123 }else if(IS_SUB_4X8(sub_mb_type)){ | |
4124 mv_cache[ 0 ][0]= mv_cache[ 8 ][0]= mx; | |
4125 mv_cache[ 0 ][1]= mv_cache[ 8 ][1]= my; | |
4126 }else{ | |
4127 assert(IS_SUB_4X4(sub_mb_type)); | |
4128 mv_cache[ 0 ][0]= mx; | |
4129 mv_cache[ 0 ][1]= my; | |
4130 } | |
4131 } | |
4132 }else{ | |
4133 uint32_t *p= (uint32_t *)&h->mv_cache[list][ scan8[4*i] ][0]; | |
4134 p[0] = p[1]= | |
4135 p[8] = p[9]= 0; | |
4136 } | |
4137 } | |
4138 } | |
2396 | 4139 }else if(IS_DIRECT(mb_type)){ |
4140 pred_direct_motion(h, &mb_type); | |
4141 s->current_picture.mb_type[mb_xy]= mb_type; | |
4142 }else{ | |
1168 | 4143 int list, mx, my, i; |
4144 //FIXME we should set ref_idx_l? to 0 if we use that later ... | |
4145 if(IS_16X16(mb_type)){ | |
4146 for(list=0; list<2; list++){ | |
2392 | 4147 if(h->ref_count[list]>0){ |
1168 | 4148 if(IS_DIR(mb_type, 0, list)){ |
4149 const int val= get_te0_golomb(&s->gb, h->ref_count[list]); | |
4150 fill_rectangle(&h->ref_cache[list][ scan8[0] ], 4, 4, 8, val, 1); | |
4151 } | |
4152 } | |
4153 } | |
4154 for(list=0; list<2; list++){ | |
4155 if(IS_DIR(mb_type, 0, list)){ | |
4156 pred_motion(h, 0, 4, list, h->ref_cache[list][ scan8[0] ], &mx, &my); | |
4157 mx += get_se_golomb(&s->gb); | |
4158 my += get_se_golomb(&s->gb); | |
1170 | 4159 tprintf("final mv:%d %d\n", mx, my); |
4160 | |
1269 | 4161 fill_rectangle(h->mv_cache[list][ scan8[0] ], 4, 4, 8, pack16to32(mx,my), 4); |
1168 | 4162 } |
4163 } | |
4164 } | |
4165 else if(IS_16X8(mb_type)){ | |
4166 for(list=0; list<2; list++){ | |
4167 if(h->ref_count[list]>0){ | |
4168 for(i=0; i<2; i++){ | |
4169 if(IS_DIR(mb_type, i, list)){ | |
4170 const int val= get_te0_golomb(&s->gb, h->ref_count[list]); | |
4171 fill_rectangle(&h->ref_cache[list][ scan8[0] + 16*i ], 4, 2, 8, val, 1); | |
2396 | 4172 }else // needed only for mixed refs (e.g. B_L0_L1_16x8) |
4173 fill_rectangle(&h->ref_cache[list][ scan8[0] + 16*i ], 4, 2, 8, (LIST_NOT_USED&0xFF), 1); | |
1168 | 4174 } |
4175 } | |
4176 } | |
4177 for(list=0; list<2; list++){ | |
4178 for(i=0; i<2; i++){ | |
4179 if(IS_DIR(mb_type, i, list)){ | |
4180 pred_16x8_motion(h, 8*i, list, h->ref_cache[list][scan8[0] + 16*i], &mx, &my); | |
4181 mx += get_se_golomb(&s->gb); | |
4182 my += get_se_golomb(&s->gb); | |
1170 | 4183 tprintf("final mv:%d %d\n", mx, my); |
4184 | |
1269 | 4185 fill_rectangle(h->mv_cache[list][ scan8[0] + 16*i ], 4, 2, 8, pack16to32(mx,my), 4); |
2396 | 4186 }else |
4187 fill_rectangle(h->mv_cache[list][ scan8[0] + 16*i ], 4, 2, 8, 0, 4); | |
1168 | 4188 } |
4189 } | |
4190 }else{ | |
4191 assert(IS_8X16(mb_type)); | |
4192 for(list=0; list<2; list++){ | |
4193 if(h->ref_count[list]>0){ | |
4194 for(i=0; i<2; i++){ | |
4195 if(IS_DIR(mb_type, i, list)){ //FIXME optimize | |
4196 const int val= get_te0_golomb(&s->gb, h->ref_count[list]); | |
4197 fill_rectangle(&h->ref_cache[list][ scan8[0] + 2*i ], 2, 4, 8, val, 1); | |
2396 | 4198 }else // needed only for mixed refs |
4199 fill_rectangle(&h->ref_cache[list][ scan8[0] + 2*i ], 2, 4, 8, (LIST_NOT_USED&0xFF), 1); | |
1168 | 4200 } |
4201 } | |
4202 } | |
4203 for(list=0; list<2; list++){ | |
4204 for(i=0; i<2; i++){ | |
4205 if(IS_DIR(mb_type, i, list)){ | |
4206 pred_8x16_motion(h, i*4, list, h->ref_cache[list][ scan8[0] + 2*i ], &mx, &my); | |
4207 mx += get_se_golomb(&s->gb); | |
4208 my += get_se_golomb(&s->gb); | |
1170 | 4209 tprintf("final mv:%d %d\n", mx, my); |
4210 | |
1269 | 4211 fill_rectangle(h->mv_cache[list][ scan8[0] + 2*i ], 2, 4, 8, pack16to32(mx,my), 4); |
2396 | 4212 }else |
4213 fill_rectangle(h->mv_cache[list][ scan8[0] + 2*i ], 2, 4, 8, 0, 4); | |
1168 | 4214 } |
4215 } | |
4216 } | |
4217 } | |
4218 | |
4219 if(IS_INTER(mb_type)) | |
4220 write_back_motion(h, mb_type); | |
4221 | |
4222 if(!IS_INTRA16x16(mb_type)){ | |
4223 cbp= get_ue_golomb(&s->gb); | |
4224 if(cbp > 47){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
4225 av_log(h->s.avctx, AV_LOG_ERROR, "cbp too large (%d) at %d %d\n", cbp, s->mb_x, s->mb_y); |
1168 | 4226 return -1; |
4227 } | |
4228 | |
4229 if(IS_INTRA4x4(mb_type)) | |
4230 cbp= golomb_to_intra4x4_cbp[cbp]; | |
4231 else | |
4232 cbp= golomb_to_inter_cbp[cbp]; | |
4233 } | |
4234 | |
4235 if(cbp || IS_INTRA16x16(mb_type)){ | |
4236 int i8x8, i4x4, chroma_idx; | |
4237 int chroma_qp, dquant; | |
4238 GetBitContext *gb= IS_INTRA(mb_type) ? h->intra_gb_ptr : h->inter_gb_ptr; | |
4239 const uint8_t *scan, *dc_scan; | |
4240 | |
4241 // fill_non_zero_count_cache(h); | |
4242 | |
4243 if(IS_INTERLACED(mb_type)){ | |
4244 scan= field_scan; | |
4245 dc_scan= luma_dc_field_scan; | |
4246 }else{ | |
4247 scan= zigzag_scan; | |
4248 dc_scan= luma_dc_zigzag_scan; | |
4249 } | |
4250 | |
4251 dquant= get_se_golomb(&s->gb); | |
4252 | |
4253 if( dquant > 25 || dquant < -26 ){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
4254 av_log(h->s.avctx, AV_LOG_ERROR, "dquant out of range (%d) at %d %d\n", dquant, s->mb_x, s->mb_y); |
1168 | 4255 return -1; |
4256 } | |
4257 | |
4258 s->qscale += dquant; | |
4259 if(((unsigned)s->qscale) > 51){ | |
4260 if(s->qscale<0) s->qscale+= 52; | |
4261 else s->qscale-= 52; | |
4262 } | |
4263 | |
4264 h->chroma_qp= chroma_qp= get_chroma_qp(h, s->qscale); | |
4265 if(IS_INTRA16x16(mb_type)){ | |
4266 if( decode_residual(h, h->intra_gb_ptr, h->mb, LUMA_DC_BLOCK_INDEX, dc_scan, s->qscale, 16) < 0){ | |
4267 return -1; //FIXME continue if partotioned and other retirn -1 too | |
4268 } | |
4269 | |
4270 assert((cbp&15) == 0 || (cbp&15) == 15); | |
4271 | |
4272 if(cbp&15){ | |
4273 for(i8x8=0; i8x8<4; i8x8++){ | |
4274 for(i4x4=0; i4x4<4; i4x4++){ | |
4275 const int index= i4x4 + 4*i8x8; | |
4276 if( decode_residual(h, h->intra_gb_ptr, h->mb + 16*index, index, scan + 1, s->qscale, 15) < 0 ){ | |
4277 return -1; | |
4278 } | |
4279 } | |
4280 } | |
4281 }else{ | |
1636 | 4282 fill_rectangle(&h->non_zero_count_cache[scan8[0]], 4, 4, 8, 0, 1); |
1168 | 4283 } |
4284 }else{ | |
4285 for(i8x8=0; i8x8<4; i8x8++){ | |
4286 if(cbp & (1<<i8x8)){ | |
4287 for(i4x4=0; i4x4<4; i4x4++){ | |
4288 const int index= i4x4 + 4*i8x8; | |
4289 | |
4290 if( decode_residual(h, gb, h->mb + 16*index, index, scan, s->qscale, 16) <0 ){ | |
4291 return -1; | |
4292 } | |
4293 } | |
4294 }else{ | |
4295 uint8_t * const nnz= &h->non_zero_count_cache[ scan8[4*i8x8] ]; | |
4296 nnz[0] = nnz[1] = nnz[8] = nnz[9] = 0; | |
4297 } | |
4298 } | |
4299 } | |
4300 | |
4301 if(cbp&0x30){ | |
4302 for(chroma_idx=0; chroma_idx<2; chroma_idx++) | |
4303 if( decode_residual(h, gb, h->mb + 256 + 16*4*chroma_idx, CHROMA_DC_BLOCK_INDEX, chroma_dc_scan, chroma_qp, 4) < 0){ | |
4304 return -1; | |
4305 } | |
4306 } | |
4307 | |
4308 if(cbp&0x20){ | |
4309 for(chroma_idx=0; chroma_idx<2; chroma_idx++){ | |
4310 for(i4x4=0; i4x4<4; i4x4++){ | |
4311 const int index= 16 + 4*chroma_idx + i4x4; | |
4312 if( decode_residual(h, gb, h->mb + 16*index, index, scan + 1, chroma_qp, 15) < 0){ | |
4313 return -1; | |
4314 } | |
4315 } | |
4316 } | |
4317 }else{ | |
4318 uint8_t * const nnz= &h->non_zero_count_cache[0]; | |
4319 nnz[ scan8[16]+0 ] = nnz[ scan8[16]+1 ] =nnz[ scan8[16]+8 ] =nnz[ scan8[16]+9 ] = | |
4320 nnz[ scan8[20]+0 ] = nnz[ scan8[20]+1 ] =nnz[ scan8[20]+8 ] =nnz[ scan8[20]+9 ] = 0; | |
4321 } | |
4322 }else{ | |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
4323 uint8_t * const nnz= &h->non_zero_count_cache[0]; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
4324 fill_rectangle(&nnz[scan8[0]], 4, 4, 8, 0, 1); |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
4325 nnz[ scan8[16]+0 ] = nnz[ scan8[16]+1 ] =nnz[ scan8[16]+8 ] =nnz[ scan8[16]+9 ] = |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
4326 nnz[ scan8[20]+0 ] = nnz[ scan8[20]+1 ] =nnz[ scan8[20]+8 ] =nnz[ scan8[20]+9 ] = 0; |
1168 | 4327 } |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
4328 s->current_picture.qscale_table[mb_xy]= s->qscale; |
1168 | 4329 write_back_non_zero_count(h); |
4330 | |
4331 return 0; | |
4332 } | |
4333 | |
2312 | 4334 static int decode_cabac_intra_mb_type(H264Context *h, int ctx_base, int intra_slice) { |
4335 uint8_t *state= &h->cabac_state[ctx_base]; | |
4336 int mb_type; | |
4337 | |
4338 if(intra_slice){ | |
4339 MpegEncContext * const s = &h->s; | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4340 const int mb_xy= s->mb_x + s->mb_y*s->mb_stride; |
2312 | 4341 int ctx=0; |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4342 if( s->mb_x > 0 && !IS_INTRA4x4( s->current_picture.mb_type[mb_xy-1] ) ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4343 ctx++; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4344 if( s->mb_y > 0 && !IS_INTRA4x4( s->current_picture.mb_type[mb_xy-s->mb_stride] ) ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4345 ctx++; |
2312 | 4346 if( get_cabac( &h->cabac, &state[ctx] ) == 0 ) |
4347 return 0; /* I4x4 */ | |
4348 state += 2; | |
4349 }else{ | |
4350 if( get_cabac( &h->cabac, &state[0] ) == 0 ) | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4351 return 0; /* I4x4 */ |
2312 | 4352 } |
4353 | |
4354 if( get_cabac_terminate( &h->cabac ) ) | |
4355 return 25; /* PCM */ | |
4356 | |
4357 mb_type = 1; /* I16x16 */ | |
4358 if( get_cabac( &h->cabac, &state[1] ) ) | |
4359 mb_type += 12; /* cbp_luma != 0 */ | |
4360 | |
4361 if( get_cabac( &h->cabac, &state[2] ) ) { | |
4362 if( get_cabac( &h->cabac, &state[2+intra_slice] ) ) | |
4363 mb_type += 4 * 2; /* cbp_chroma == 2 */ | |
4364 else | |
4365 mb_type += 4 * 1; /* cbp_chroma == 1 */ | |
4366 } | |
4367 if( get_cabac( &h->cabac, &state[3+intra_slice] ) ) | |
4368 mb_type += 2; | |
4369 if( get_cabac( &h->cabac, &state[3+2*intra_slice] ) ) | |
4370 mb_type += 1; | |
4371 return mb_type; | |
4372 } | |
4373 | |
4374 static int decode_cabac_mb_type( H264Context *h ) { | |
4375 MpegEncContext * const s = &h->s; | |
4376 | |
4377 if( h->slice_type == I_TYPE ) { | |
4378 return decode_cabac_intra_mb_type(h, 3, 1); | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4379 } else if( h->slice_type == P_TYPE ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4380 if( get_cabac( &h->cabac, &h->cabac_state[14] ) == 0 ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4381 /* P-type */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4382 if( get_cabac( &h->cabac, &h->cabac_state[15] ) == 0 ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4383 if( get_cabac( &h->cabac, &h->cabac_state[16] ) == 0 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4384 return 0; /* P_L0_D16x16; */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4385 else |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4386 return 3; /* P_8x8; */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4387 } else { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4388 if( get_cabac( &h->cabac, &h->cabac_state[17] ) == 0 ) |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4389 return 2; /* P_L0_D8x16; */ |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4390 else |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4391 return 1; /* P_L0_D16x8; */ |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4392 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4393 } else { |
2312 | 4394 return decode_cabac_intra_mb_type(h, 17, 0) + 5; |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4395 } |
2310
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4396 } else if( h->slice_type == B_TYPE ) { |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4397 const int mb_xy= s->mb_x + s->mb_y*s->mb_stride; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4398 int ctx = 0; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4399 int bits; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4400 |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4401 if( s->mb_x > 0 && !IS_SKIP( s->current_picture.mb_type[mb_xy-1] ) |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4402 && !IS_DIRECT( s->current_picture.mb_type[mb_xy-1] ) ) |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4403 ctx++; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4404 if( s->mb_y > 0 && !IS_SKIP( s->current_picture.mb_type[mb_xy-s->mb_stride] ) |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4405 && !IS_DIRECT( s->current_picture.mb_type[mb_xy-s->mb_stride] ) ) |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4406 ctx++; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4407 |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4408 if( !get_cabac( &h->cabac, &h->cabac_state[27+ctx] ) ) |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4409 return 0; /* B_Direct_16x16 */ |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4410 |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4411 if( !get_cabac( &h->cabac, &h->cabac_state[27+3] ) ) { |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4412 return 1 + get_cabac( &h->cabac, &h->cabac_state[27+5] ); /* B_L[01]_16x16 */ |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4413 } |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4414 |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4415 bits = get_cabac( &h->cabac, &h->cabac_state[27+4] ) << 3; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4416 bits|= get_cabac( &h->cabac, &h->cabac_state[27+5] ) << 2; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4417 bits|= get_cabac( &h->cabac, &h->cabac_state[27+5] ) << 1; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4418 bits|= get_cabac( &h->cabac, &h->cabac_state[27+5] ); |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4419 if( bits < 8 ) |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4420 return bits + 3; /* B_Bi_16x16 through B_L1_L0_16x8 */ |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4421 else if( bits == 13 ) { |
2312 | 4422 return decode_cabac_intra_mb_type(h, 32, 0) + 23; |
2310
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4423 } else if( bits == 14 ) |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4424 return 11; /* B_L1_L0_8x16 */ |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4425 else if( bits == 15 ) |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4426 return 22; /* B_8x8 */ |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4427 |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4428 bits= ( bits<<1 ) | get_cabac( &h->cabac, &h->cabac_state[27+5] ); |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4429 return bits - 4; /* B_L0_Bi_* through B_Bi_Bi_* */ |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4430 } else { |
2310
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4431 /* TODO SI/SP frames? */ |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4432 return -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4433 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4434 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4435 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4436 static int decode_cabac_mb_skip( H264Context *h) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4437 MpegEncContext * const s = &h->s; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4438 const int mb_xy = s->mb_x + s->mb_y*s->mb_stride; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4439 const int mba_xy = mb_xy - 1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4440 const int mbb_xy = mb_xy - s->mb_stride; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4441 int ctx = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4442 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4443 if( s->mb_x > 0 && !IS_SKIP( s->current_picture.mb_type[mba_xy] ) ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4444 ctx++; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4445 if( s->mb_y > 0 && !IS_SKIP( s->current_picture.mb_type[mbb_xy] ) ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4446 ctx++; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4447 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4448 if( h->slice_type == P_TYPE || h->slice_type == SP_TYPE) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4449 return get_cabac( &h->cabac, &h->cabac_state[11+ctx] ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4450 else /* B-frame */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4451 return get_cabac( &h->cabac, &h->cabac_state[24+ctx] ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4452 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4453 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4454 static int decode_cabac_mb_intra4x4_pred_mode( H264Context *h, int pred_mode ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4455 int mode = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4456 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4457 if( get_cabac( &h->cabac, &h->cabac_state[68] ) ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4458 return pred_mode; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4459 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4460 if( get_cabac( &h->cabac, &h->cabac_state[69] ) ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4461 mode += 1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4462 if( get_cabac( &h->cabac, &h->cabac_state[69] ) ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4463 mode += 2; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4464 if( get_cabac( &h->cabac, &h->cabac_state[69] ) ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4465 mode += 4; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4466 if( mode >= pred_mode ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4467 return mode + 1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4468 else |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4469 return mode; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4470 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4471 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4472 static int decode_cabac_mb_chroma_pre_mode( H264Context *h) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4473 MpegEncContext * const s = &h->s; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4474 const int mb_xy = s->mb_x + s->mb_y*s->mb_stride; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4475 const int mba_xy = mb_xy - 1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4476 const int mbb_xy = mb_xy - s->mb_stride; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4477 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4478 int ctx = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4479 |
1956
0eb2947f56f6
h264 hurry up fix and a tiny cabac clean patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1935
diff
changeset
|
4480 /* No need to test for IS_INTRA4x4 and IS_INTRA16x16, as we set chroma_pred_mode_table to 0 */ |
0eb2947f56f6
h264 hurry up fix and a tiny cabac clean patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1935
diff
changeset
|
4481 if( s->mb_x > 0 && h->chroma_pred_mode_table[mba_xy] != 0 ) |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4482 ctx++; |
1956
0eb2947f56f6
h264 hurry up fix and a tiny cabac clean patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1935
diff
changeset
|
4483 |
0eb2947f56f6
h264 hurry up fix and a tiny cabac clean patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1935
diff
changeset
|
4484 if( s->mb_y > 0 && h->chroma_pred_mode_table[mbb_xy] != 0 ) |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4485 ctx++; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4486 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4487 if( get_cabac( &h->cabac, &h->cabac_state[64+ctx] ) == 0 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4488 return 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4489 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4490 if( get_cabac( &h->cabac, &h->cabac_state[64+3] ) == 0 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4491 return 1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4492 if( get_cabac( &h->cabac, &h->cabac_state[64+3] ) == 0 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4493 return 2; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4494 else |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4495 return 3; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4496 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4497 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4498 static const uint8_t block_idx_x[16] = { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4499 0, 1, 0, 1, 2, 3, 2, 3, 0, 1, 0, 1, 2, 3, 2, 3 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4500 }; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4501 static const uint8_t block_idx_y[16] = { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4502 0, 0, 1, 1, 0, 0, 1, 1, 2, 2, 3, 3, 2, 2, 3, 3 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4503 }; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4504 static const uint8_t block_idx_xy[4][4] = { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4505 { 0, 2, 8, 10}, |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4506 { 1, 3, 9, 11}, |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4507 { 4, 6, 12, 14}, |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4508 { 5, 7, 13, 15} |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4509 }; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4510 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4511 static int decode_cabac_mb_cbp_luma( H264Context *h) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4512 MpegEncContext * const s = &h->s; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4513 const int mb_xy = s->mb_x + s->mb_y*s->mb_stride; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4514 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4515 int cbp = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4516 int i8x8; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4517 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4518 h->cbp_table[mb_xy] = 0; /* FIXME aaahahahah beurk */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4519 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4520 for( i8x8 = 0; i8x8 < 4; i8x8++ ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4521 int mba_xy = -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4522 int mbb_xy = -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4523 int x, y; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4524 int ctx = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4525 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4526 x = block_idx_x[4*i8x8]; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4527 y = block_idx_y[4*i8x8]; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4528 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4529 if( x > 0 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4530 mba_xy = mb_xy; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4531 else if( s->mb_x > 0 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4532 mba_xy = mb_xy - 1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4533 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4534 if( y > 0 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4535 mbb_xy = mb_xy; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4536 else if( s->mb_y > 0 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4537 mbb_xy = mb_xy - s->mb_stride; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4538 |
1956
0eb2947f56f6
h264 hurry up fix and a tiny cabac clean patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1935
diff
changeset
|
4539 /* No need to test for skip as we put 0 for skip block */ |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4540 if( mba_xy >= 0 ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4541 int i8x8a = block_idx_xy[(x-1)&0x03][y]/4; |
1956
0eb2947f56f6
h264 hurry up fix and a tiny cabac clean patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1935
diff
changeset
|
4542 if( ((h->cbp_table[mba_xy] >> i8x8a)&0x01) == 0 ) |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4543 ctx++; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4544 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4545 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4546 if( mbb_xy >= 0 ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4547 int i8x8b = block_idx_xy[x][(y-1)&0x03]/4; |
1956
0eb2947f56f6
h264 hurry up fix and a tiny cabac clean patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1935
diff
changeset
|
4548 if( ((h->cbp_table[mbb_xy] >> i8x8b)&0x01) == 0 ) |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4549 ctx += 2; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4550 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4551 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4552 if( get_cabac( &h->cabac, &h->cabac_state[73 + ctx] ) ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4553 cbp |= 1 << i8x8; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4554 h->cbp_table[mb_xy] = cbp; /* FIXME aaahahahah beurk */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4555 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4556 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4557 return cbp; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4558 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4559 static int decode_cabac_mb_cbp_chroma( H264Context *h) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4560 int ctx; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4561 int cbp_a, cbp_b; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4562 |
2314 | 4563 cbp_a = (h->left_cbp>>4)&0x03; |
4564 cbp_b = (h-> top_cbp>>4)&0x03; | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4565 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4566 ctx = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4567 if( cbp_a > 0 ) ctx++; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4568 if( cbp_b > 0 ) ctx += 2; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4569 if( get_cabac( &h->cabac, &h->cabac_state[77 + ctx] ) == 0 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4570 return 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4571 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4572 ctx = 4; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4573 if( cbp_a == 2 ) ctx++; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4574 if( cbp_b == 2 ) ctx += 2; |
2314 | 4575 return 1 + get_cabac( &h->cabac, &h->cabac_state[77 + ctx] ); |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4576 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4577 static int decode_cabac_mb_dqp( H264Context *h) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4578 MpegEncContext * const s = &h->s; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4579 int mbn_xy; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4580 int ctx = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4581 int val = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4582 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4583 if( s->mb_x > 0 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4584 mbn_xy = s->mb_x + s->mb_y*s->mb_stride - 1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4585 else |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4586 mbn_xy = s->mb_width - 1 + (s->mb_y-1)*s->mb_stride; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4587 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4588 if( mbn_xy >= 0 && h->last_qscale_diff != 0 && ( IS_INTRA16x16(s->current_picture.mb_type[mbn_xy] ) || (h->cbp_table[mbn_xy]&0x3f) ) ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4589 ctx++; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4590 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4591 while( get_cabac( &h->cabac, &h->cabac_state[60 + ctx] ) ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4592 if( ctx < 2 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4593 ctx = 2; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4594 else |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4595 ctx = 3; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4596 val++; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4597 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4598 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4599 if( val&0x01 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4600 return (val + 1)/2; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4601 else |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4602 return -(val + 1)/2; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4603 } |
2310
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4604 static int decode_cabac_p_mb_sub_type( H264Context *h ) { |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4605 if( get_cabac( &h->cabac, &h->cabac_state[21] ) ) |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4606 return 0; /* 8x8 */ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4607 if( !get_cabac( &h->cabac, &h->cabac_state[22] ) ) |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4608 return 1; /* 8x4 */ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4609 if( get_cabac( &h->cabac, &h->cabac_state[23] ) ) |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4610 return 2; /* 4x8 */ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4611 return 3; /* 4x4 */ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4612 } |
2310
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4613 static int decode_cabac_b_mb_sub_type( H264Context *h ) { |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4614 int type; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4615 if( !get_cabac( &h->cabac, &h->cabac_state[36] ) ) |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4616 return 0; /* B_Direct_8x8 */ |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4617 if( !get_cabac( &h->cabac, &h->cabac_state[37] ) ) |
2311
cdbb2f30e08b
small typo patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
2310
diff
changeset
|
4618 return 1 + get_cabac( &h->cabac, &h->cabac_state[39] ); /* B_L0_8x8, B_L1_8x8 */ |
2310
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4619 type = 3; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4620 if( get_cabac( &h->cabac, &h->cabac_state[38] ) ) { |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4621 if( get_cabac( &h->cabac, &h->cabac_state[39] ) ) |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4622 return 11 + get_cabac( &h->cabac, &h->cabac_state[39] ); /* B_L1_4x4, B_Bi_4x4 */ |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4623 type += 4; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4624 } |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4625 type += 2*get_cabac( &h->cabac, &h->cabac_state[39] ); |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4626 type += get_cabac( &h->cabac, &h->cabac_state[39] ); |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4627 return type; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4628 } |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4629 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4630 static int decode_cabac_mb_ref( H264Context *h, int list, int n ) { |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4631 int refa = h->ref_cache[list][scan8[n] - 1]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4632 int refb = h->ref_cache[list][scan8[n] - 8]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4633 int ref = 0; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4634 int ctx = 0; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4635 |
2396 | 4636 if( h->slice_type == B_TYPE) { |
4637 if( refa > 0 && !h->direct_cache[scan8[n] - 1] ) | |
4638 ctx++; | |
4639 if( refb > 0 && !h->direct_cache[scan8[n] - 8] ) | |
4640 ctx += 2; | |
4641 } else { | |
4642 if( refa > 0 ) | |
4643 ctx++; | |
4644 if( refb > 0 ) | |
4645 ctx += 2; | |
4646 } | |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4647 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4648 while( get_cabac( &h->cabac, &h->cabac_state[54+ctx] ) ) { |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4649 ref++; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4650 if( ctx < 4 ) |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4651 ctx = 4; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4652 else |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4653 ctx = 5; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4654 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4655 return ref; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4656 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4657 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4658 static int decode_cabac_mb_mvd( H264Context *h, int list, int n, int l ) { |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4659 int amvd = abs( h->mvd_cache[list][scan8[n] - 1][l] ) + |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4660 abs( h->mvd_cache[list][scan8[n] - 8][l] ); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4661 int ctxbase = (l == 0) ? 40 : 47; |
2317 | 4662 int ctx, mvd; |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4663 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4664 if( amvd < 3 ) |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4665 ctx = 0; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4666 else if( amvd > 32 ) |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4667 ctx = 2; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4668 else |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4669 ctx = 1; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4670 |
2317 | 4671 if(!get_cabac(&h->cabac, &h->cabac_state[ctxbase+ctx])) |
4672 return 0; | |
4673 | |
4674 mvd= 1; | |
4675 ctx= 3; | |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4676 while( mvd < 9 && get_cabac( &h->cabac, &h->cabac_state[ctxbase+ctx] ) ) { |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4677 mvd++; |
2317 | 4678 if( ctx < 6 ) |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4679 ctx++; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4680 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4681 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4682 if( mvd >= 9 ) { |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4683 int k = 3; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4684 while( get_cabac_bypass( &h->cabac ) ) { |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4685 mvd += 1 << k; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4686 k++; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4687 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4688 while( k-- ) { |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4689 if( get_cabac_bypass( &h->cabac ) ) |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4690 mvd += 1 << k; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4691 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4692 } |
2317 | 4693 if( get_cabac_bypass( &h->cabac ) ) return -mvd; |
4694 else return mvd; | |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4695 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4696 |
2316 | 4697 static int inline get_cabac_cbf_ctx( H264Context *h, int cat, int idx ) { |
2314 | 4698 int nza, nzb; |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4699 int ctx = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4700 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4701 if( cat == 0 ) { |
2314 | 4702 nza = h->left_cbp&0x100; |
4703 nzb = h-> top_cbp&0x100; | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4704 } else if( cat == 1 || cat == 2 ) { |
2314 | 4705 nza = h->non_zero_count_cache[scan8[idx] - 1]; |
4706 nzb = h->non_zero_count_cache[scan8[idx] - 8]; | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4707 } else if( cat == 3 ) { |
2314 | 4708 nza = (h->left_cbp>>(6+idx))&0x01; |
4709 nzb = (h-> top_cbp>>(6+idx))&0x01; | |
4710 } else { | |
4711 assert(cat == 4); | |
4712 nza = h->non_zero_count_cache[scan8[16+idx] - 1]; | |
4713 nzb = h->non_zero_count_cache[scan8[16+idx] - 8]; | |
4714 } | |
4715 | |
4716 if( nza > 0 ) | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4717 ctx++; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4718 |
2314 | 4719 if( nzb > 0 ) |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4720 ctx += 2; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4721 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4722 return ctx + 4 * cat; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4723 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4724 |
2316 | 4725 static int inline decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n, const uint8_t *scantable, int qp, int max_coeff) { |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4726 const int mb_xy = h->s.mb_x + h->s.mb_y*h->s.mb_stride; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4727 const uint16_t *qmul= dequant_coeff[qp]; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4728 static const int significant_coeff_flag_offset[5] = { 0, 15, 29, 44, 47 }; |
2313 | 4729 static const int coeff_abs_level_m1_offset[5] = {227+ 0, 227+10, 227+20, 227+30, 227+39 }; |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4730 |
2313 | 4731 int index[16]; |
4732 | |
4733 int i, last; | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4734 int coeff_count = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4735 |
2316 | 4736 int abslevel1 = 1; |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4737 int abslevelgt1 = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4738 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4739 /* cat: 0-> DC 16x16 n = 0 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4740 * 1-> AC 16x16 n = luma4x4idx |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4741 * 2-> Luma4x4 n = luma4x4idx |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4742 * 3-> DC Chroma n = iCbCr |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4743 * 4-> AC Chroma n = 4 * iCbCr + chroma4x4idx |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4744 */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4745 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4746 /* read coded block flag */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4747 if( get_cabac( &h->cabac, &h->cabac_state[85 + get_cabac_cbf_ctx( h, cat, n ) ] ) == 0 ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4748 if( cat == 1 || cat == 2 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4749 h->non_zero_count_cache[scan8[n]] = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4750 else if( cat == 4 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4751 h->non_zero_count_cache[scan8[16+n]] = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4752 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4753 return 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4754 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4755 |
2313 | 4756 for(last= 0; last < max_coeff - 1; last++) { |
4757 if( get_cabac( &h->cabac, &h->cabac_state[105+significant_coeff_flag_offset[cat]+last] )) { | |
4758 index[coeff_count++] = last; | |
4759 if( get_cabac( &h->cabac, &h->cabac_state[166+significant_coeff_flag_offset[cat]+last] ) ) { | |
4760 last= max_coeff; | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4761 break; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4762 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4763 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4764 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4765 if( last == max_coeff -1 ) { |
2313 | 4766 index[coeff_count++] = last; |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4767 } |
2316 | 4768 assert(coeff_count > 0); |
4769 | |
4770 if( cat == 0 ) | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4771 h->cbp_table[mb_xy] |= 0x100; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4772 else if( cat == 1 || cat == 2 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4773 h->non_zero_count_cache[scan8[n]] = coeff_count; |
2316 | 4774 else if( cat == 3 ) |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4775 h->cbp_table[mb_xy] |= 0x40 << n; |
2316 | 4776 else { |
4777 assert( cat == 4 ); | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4778 h->non_zero_count_cache[scan8[16+n]] = coeff_count; |
2316 | 4779 } |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4780 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4781 for( i = coeff_count - 1; i >= 0; i-- ) { |
2316 | 4782 int ctx = (abslevelgt1 != 0 ? 0 : FFMIN( 4, abslevel1 )) + coeff_abs_level_m1_offset[cat]; |
4783 int j= scantable[index[i]]; | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4784 |
2313 | 4785 if( get_cabac( &h->cabac, &h->cabac_state[ctx] ) == 0 ) { |
2316 | 4786 if( cat == 0 || cat == 3 ) { |
4787 if( get_cabac_bypass( &h->cabac ) ) block[j] = -1; | |
4788 else block[j] = 1; | |
4789 }else{ | |
4790 if( get_cabac_bypass( &h->cabac ) ) block[j] = -qmul[j]; | |
4791 else block[j] = qmul[j]; | |
4792 } | |
2313 | 4793 |
4794 abslevel1++; | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4795 } else { |
2313 | 4796 int coeff_abs = 2; |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4797 ctx = 5 + FFMIN( 4, abslevelgt1 ) + coeff_abs_level_m1_offset[cat]; |
2313 | 4798 while( coeff_abs < 15 && get_cabac( &h->cabac, &h->cabac_state[ctx] ) ) { |
4799 coeff_abs++; | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4800 } |
2313 | 4801 |
4802 if( coeff_abs >= 15 ) { | |
4803 int j = 0; | |
4804 while( get_cabac_bypass( &h->cabac ) ) { | |
4805 coeff_abs += 1 << j; | |
4806 j++; | |
4807 } | |
4808 | |
4809 while( j-- ) { | |
4810 if( get_cabac_bypass( &h->cabac ) ) | |
4811 coeff_abs += 1 << j ; | |
4812 } | |
4813 } | |
4814 | |
2316 | 4815 if( cat == 0 || cat == 3 ) { |
4816 if( get_cabac_bypass( &h->cabac ) ) block[j] = -coeff_abs; | |
4817 else block[j] = coeff_abs; | |
4818 }else{ | |
4819 if( get_cabac_bypass( &h->cabac ) ) block[j] = -coeff_abs * qmul[j]; | |
4820 else block[j] = coeff_abs * qmul[j]; | |
4821 } | |
2313 | 4822 |
4823 abslevelgt1++; | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4824 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4825 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4826 return 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4827 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4828 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4829 /** |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4830 * decodes a macroblock |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4831 * @returns 0 if ok, AC_ERROR / DC_ERROR / MV_ERROR if an error is noticed |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4832 */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4833 static int decode_mb_cabac(H264Context *h) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4834 MpegEncContext * const s = &h->s; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4835 const int mb_xy= s->mb_x + s->mb_y*s->mb_stride; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4836 int mb_type, partition_count, cbp = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4837 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4838 s->dsp.clear_blocks(h->mb); //FIXME avoid if allready clear (move after skip handlong?) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4839 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4840 if( h->sps.mb_aff ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4841 av_log( h->s.avctx, AV_LOG_ERROR, "Fields not supported with CABAC\n" ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4842 return -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4843 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4844 |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
4845 tprintf("pic:%d mb:%d/%d\n", h->frame_num, s->mb_x, s->mb_y); |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4846 if( h->slice_type != I_TYPE && h->slice_type != SI_TYPE ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4847 /* read skip flags */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4848 if( decode_cabac_mb_skip( h ) ) { |
2396 | 4849 decode_mb_skip(h); |
4850 | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4851 h->cbp_table[mb_xy] = 0; |
1956
0eb2947f56f6
h264 hurry up fix and a tiny cabac clean patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1935
diff
changeset
|
4852 h->chroma_pred_mode_table[mb_xy] = 0; |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4853 h->last_qscale_diff = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4854 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4855 return 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4856 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4857 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4858 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4859 h->prev_mb_skiped = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4860 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4861 if( ( mb_type = decode_cabac_mb_type( h ) ) < 0 ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4862 av_log( h->s.avctx, AV_LOG_ERROR, "decode_cabac_mb_type failed\n" ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4863 return -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4864 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4865 |
2310
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4866 if( h->slice_type == B_TYPE ) { |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4867 if( mb_type < 23 ){ |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4868 partition_count= b_mb_type_info[mb_type].partition_count; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4869 mb_type= b_mb_type_info[mb_type].type; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4870 }else{ |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4871 mb_type -= 23; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4872 goto decode_intra_mb; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4873 } |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4874 } else if( h->slice_type == P_TYPE ) { |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4875 if( mb_type < 5) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4876 partition_count= p_mb_type_info[mb_type].partition_count; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4877 mb_type= p_mb_type_info[mb_type].type; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4878 } else { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4879 mb_type -= 5; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4880 goto decode_intra_mb; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4881 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4882 } else { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4883 assert(h->slice_type == I_TYPE); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4884 decode_intra_mb: |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4885 partition_count = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4886 cbp= i_mb_type_info[mb_type].cbp; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4887 h->intra16x16_pred_mode= i_mb_type_info[mb_type].pred_mode; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4888 mb_type= i_mb_type_info[mb_type].type; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4889 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4890 #if 0 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4891 if(h->mb_field_decoding_flag) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4892 mb_type |= MB_TYPE_INTERLACED; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4893 #endif |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4894 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4895 s->current_picture.mb_type[mb_xy]= mb_type; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4896 h->slice_table[ mb_xy ]= h->slice_num; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4897 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4898 if(IS_INTRA_PCM(mb_type)) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4899 /* TODO */ |
2314 | 4900 assert(0); |
4901 h->cbp_table[mb_xy] = 0xf +4*2; //FIXME ?! | |
4902 h->cbp_table[mb_xy] |= 0x1C0; | |
1956
0eb2947f56f6
h264 hurry up fix and a tiny cabac clean patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1935
diff
changeset
|
4903 h->chroma_pred_mode_table[mb_xy] = 0; |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4904 s->current_picture.qscale_table[mb_xy]= s->qscale; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4905 return -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4906 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4907 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4908 fill_caches(h, mb_type); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4909 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4910 if( IS_INTRA( mb_type ) ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4911 if( IS_INTRA4x4( mb_type ) ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4912 int i; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4913 for( i = 0; i < 16; i++ ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4914 int pred = pred_intra_mode( h, i ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4915 h->intra4x4_pred_mode_cache[ scan8[i] ] = decode_cabac_mb_intra4x4_pred_mode( h, pred ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4916 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4917 //av_log( s->avctx, AV_LOG_ERROR, "i4x4 pred=%d mode=%d\n", pred, h->intra4x4_pred_mode_cache[ scan8[i] ] ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4918 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4919 write_back_intra_pred_mode(h); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4920 if( check_intra4x4_pred_mode(h) < 0 ) return -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4921 } else { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4922 h->intra16x16_pred_mode= check_intra_pred_mode( h, h->intra16x16_pred_mode ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4923 if( h->intra16x16_pred_mode < 0 ) return -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4924 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4925 h->chroma_pred_mode_table[mb_xy] = |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4926 h->chroma_pred_mode = decode_cabac_mb_chroma_pre_mode( h ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4927 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4928 h->chroma_pred_mode= check_intra_pred_mode( h, h->chroma_pred_mode ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4929 if( h->chroma_pred_mode < 0 ) return -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
4930 } else if( partition_count == 4 ) { |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4931 int i, j, sub_partition_count[4], list, ref[2][4]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4932 |
2310
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4933 if( h->slice_type == B_TYPE ) { |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4934 for( i = 0; i < 4; i++ ) { |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4935 h->sub_mb_type[i] = decode_cabac_b_mb_sub_type( h ); |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4936 sub_partition_count[i]= b_sub_mb_type_info[ h->sub_mb_type[i] ].partition_count; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4937 h->sub_mb_type[i]= b_sub_mb_type_info[ h->sub_mb_type[i] ].type; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4938 } |
2396 | 4939 if( IS_DIRECT(h->sub_mb_type[0]) || IS_DIRECT(h->sub_mb_type[1]) |
4940 || IS_DIRECT(h->sub_mb_type[2]) || IS_DIRECT(h->sub_mb_type[3])) { | |
4941 pred_direct_motion(h, &mb_type); | |
4942 if( h->ref_count[0] > 1 || h->ref_count[1] > 1 ) { | |
4943 for( i = 0; i < 4; i++ ) | |
4944 if( IS_DIRECT(h->sub_mb_type[i]) ) | |
4945 fill_rectangle( &h->direct_cache[scan8[4*i]], 2, 2, 8, 1, 1 ); | |
4946 } | |
4947 } | |
2310
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4948 } else { |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4949 for( i = 0; i < 4; i++ ) { |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4950 h->sub_mb_type[i] = decode_cabac_p_mb_sub_type( h ); |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4951 sub_partition_count[i]= p_sub_mb_type_info[ h->sub_mb_type[i] ].partition_count; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4952 h->sub_mb_type[i]= p_sub_mb_type_info[ h->sub_mb_type[i] ].type; |
c5cd8a064c34
H.264 CABAC + B-frames patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2284
diff
changeset
|
4953 } |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4954 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4955 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4956 for( list = 0; list < 2; list++ ) { |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4957 if( h->ref_count[list] > 0 ) { |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4958 for( i = 0; i < 4; i++ ) { |
2396 | 4959 if(IS_DIRECT(h->sub_mb_type[i])) continue; |
4960 if(IS_DIR(h->sub_mb_type[i], 0, list)){ | |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4961 if( h->ref_count[list] > 1 ) |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4962 ref[list][i] = decode_cabac_mb_ref( h, list, 4*i ); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4963 else |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4964 ref[list][i] = 0; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4965 } else { |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4966 ref[list][i] = -1; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4967 } |
2110 | 4968 h->ref_cache[list][ scan8[4*i]+1 ]= |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4969 h->ref_cache[list][ scan8[4*i]+8 ]=h->ref_cache[list][ scan8[4*i]+9 ]= ref[list][i]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4970 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4971 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4972 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4973 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4974 for(list=0; list<2; list++){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4975 for(i=0; i<4; i++){ |
2396 | 4976 if(IS_DIRECT(h->sub_mb_type[i])){ |
4977 fill_rectangle(h->mvd_cache[list][scan8[4*i]], 2, 2, 8, 0, 4); | |
4978 continue; | |
4979 } | |
2110 | 4980 h->ref_cache[list][ scan8[4*i] ]=h->ref_cache[list][ scan8[4*i]+1 ]; |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4981 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4982 if(IS_DIR(h->sub_mb_type[i], 0, list) && !IS_DIRECT(h->sub_mb_type[i])){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4983 const int sub_mb_type= h->sub_mb_type[i]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4984 const int block_width= (sub_mb_type & (MB_TYPE_16x16|MB_TYPE_16x8)) ? 2 : 1; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4985 for(j=0; j<sub_partition_count[i]; j++){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4986 int mpx, mpy; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4987 int mx, my; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4988 const int index= 4*i + block_width*j; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4989 int16_t (* mv_cache)[2]= &h->mv_cache[list][ scan8[index] ]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4990 int16_t (* mvd_cache)[2]= &h->mvd_cache[list][ scan8[index] ]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4991 pred_motion(h, index, block_width, list, h->ref_cache[list][ scan8[index] ], &mpx, &mpy); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4992 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4993 mx = mpx + decode_cabac_mb_mvd( h, list, index, 0 ); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4994 my = mpy + decode_cabac_mb_mvd( h, list, index, 1 ); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4995 tprintf("final mv:%d %d\n", mx, my); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4996 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4997 if(IS_SUB_8X8(sub_mb_type)){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4998 mv_cache[ 0 ][0]= mv_cache[ 1 ][0]= |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
4999 mv_cache[ 8 ][0]= mv_cache[ 9 ][0]= mx; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5000 mv_cache[ 0 ][1]= mv_cache[ 1 ][1]= |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5001 mv_cache[ 8 ][1]= mv_cache[ 9 ][1]= my; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5002 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5003 mvd_cache[ 0 ][0]= mvd_cache[ 1 ][0]= |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5004 mvd_cache[ 8 ][0]= mvd_cache[ 9 ][0]= mx - mpx; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5005 mvd_cache[ 0 ][1]= mvd_cache[ 1 ][1]= |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5006 mvd_cache[ 8 ][1]= mvd_cache[ 9 ][1]= my - mpy; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5007 }else if(IS_SUB_8X4(sub_mb_type)){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5008 mv_cache[ 0 ][0]= mv_cache[ 1 ][0]= mx; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5009 mv_cache[ 0 ][1]= mv_cache[ 1 ][1]= my; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5010 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5011 mvd_cache[ 0 ][0]= mvd_cache[ 1 ][0]= mx- mpx; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5012 mvd_cache[ 0 ][1]= mvd_cache[ 1 ][1]= my - mpy; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5013 }else if(IS_SUB_4X8(sub_mb_type)){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5014 mv_cache[ 0 ][0]= mv_cache[ 8 ][0]= mx; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5015 mv_cache[ 0 ][1]= mv_cache[ 8 ][1]= my; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5016 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5017 mvd_cache[ 0 ][0]= mvd_cache[ 8 ][0]= mx - mpx; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5018 mvd_cache[ 0 ][1]= mvd_cache[ 8 ][1]= my - mpy; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5019 }else{ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5020 assert(IS_SUB_4X4(sub_mb_type)); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5021 mv_cache[ 0 ][0]= mx; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5022 mv_cache[ 0 ][1]= my; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5023 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5024 mvd_cache[ 0 ][0]= mx - mpx; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5025 mvd_cache[ 0 ][1]= my - mpy; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5026 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5027 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5028 }else{ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5029 uint32_t *p= (uint32_t *)&h->mv_cache[list][ scan8[4*i] ][0]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5030 uint32_t *pd= (uint32_t *)&h->mvd_cache[list][ scan8[4*i] ][0]; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5031 p[0] = p[1] = p[8] = p[9] = 0; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5032 pd[0]= pd[1]= pd[8]= pd[9]= 0; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5033 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5034 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5035 } |
2396 | 5036 } else if( IS_DIRECT(mb_type) ) { |
5037 pred_direct_motion(h, &mb_type); | |
5038 s->current_picture.mb_type[mb_xy]= mb_type; | |
5039 fill_rectangle(h->mvd_cache[0][scan8[0]], 4, 4, 8, 0, 4); | |
5040 fill_rectangle(h->mvd_cache[1][scan8[0]], 4, 4, 8, 0, 4); | |
5041 } else { | |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5042 int list, mx, my, i, mpx, mpy; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5043 if(IS_16X16(mb_type)){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5044 for(list=0; list<2; list++){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5045 if(IS_DIR(mb_type, 0, list)){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5046 if(h->ref_count[list] > 0 ){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5047 const int ref = h->ref_count[list] > 1 ? decode_cabac_mb_ref( h, list, 0 ) : 0; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5048 fill_rectangle(&h->ref_cache[list][ scan8[0] ], 4, 4, 8, ref, 1); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5049 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5050 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5051 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5052 for(list=0; list<2; list++){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5053 if(IS_DIR(mb_type, 0, list)){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5054 pred_motion(h, 0, 4, list, h->ref_cache[list][ scan8[0] ], &mpx, &mpy); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5055 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5056 mx = mpx + decode_cabac_mb_mvd( h, list, 0, 0 ); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5057 my = mpy + decode_cabac_mb_mvd( h, list, 0, 1 ); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5058 tprintf("final mv:%d %d\n", mx, my); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5059 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5060 fill_rectangle(h->mvd_cache[list][ scan8[0] ], 4, 4, 8, pack16to32(mx-mpx,my-mpy), 4); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5061 fill_rectangle(h->mv_cache[list][ scan8[0] ], 4, 4, 8, pack16to32(mx,my), 4); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5062 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5063 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5064 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5065 else if(IS_16X8(mb_type)){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5066 for(list=0; list<2; list++){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5067 if(h->ref_count[list]>0){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5068 for(i=0; i<2; i++){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5069 if(IS_DIR(mb_type, i, list)){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5070 const int ref= h->ref_count[list] > 1 ? decode_cabac_mb_ref( h, list, 8*i ) : 0; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5071 fill_rectangle(&h->ref_cache[list][ scan8[0] + 16*i ], 4, 2, 8, ref, 1); |
2396 | 5072 }else |
5073 fill_rectangle(&h->ref_cache[list][ scan8[0] + 16*i ], 4, 2, 8, (LIST_NOT_USED&0xFF), 1); | |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5074 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5075 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5076 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5077 for(list=0; list<2; list++){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5078 for(i=0; i<2; i++){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5079 if(IS_DIR(mb_type, i, list)){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5080 pred_16x8_motion(h, 8*i, list, h->ref_cache[list][scan8[0] + 16*i], &mpx, &mpy); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5081 mx = mpx + decode_cabac_mb_mvd( h, list, 8*i, 0 ); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5082 my = mpy + decode_cabac_mb_mvd( h, list, 8*i, 1 ); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5083 tprintf("final mv:%d %d\n", mx, my); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5084 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5085 fill_rectangle(h->mvd_cache[list][ scan8[0] + 16*i ], 4, 2, 8, pack16to32(mx-mpx,my-mpy), 4); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5086 fill_rectangle(h->mv_cache[list][ scan8[0] + 16*i ], 4, 2, 8, pack16to32(mx,my), 4); |
2396 | 5087 }else{ // needed only for mixed refs |
5088 fill_rectangle(h->mvd_cache[list][ scan8[0] + 16*i ], 4, 2, 8, 0, 4); | |
5089 fill_rectangle(h-> mv_cache[list][ scan8[0] + 16*i ], 4, 2, 8, 0, 4); | |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5090 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5091 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5092 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5093 }else{ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5094 assert(IS_8X16(mb_type)); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5095 for(list=0; list<2; list++){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5096 if(h->ref_count[list]>0){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5097 for(i=0; i<2; i++){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5098 if(IS_DIR(mb_type, i, list)){ //FIXME optimize |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5099 const int ref= h->ref_count[list] > 1 ? decode_cabac_mb_ref( h, list, 4*i ) : 0; |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5100 fill_rectangle(&h->ref_cache[list][ scan8[0] + 2*i ], 2, 4, 8, ref, 1); |
2396 | 5101 }else |
5102 fill_rectangle(&h->ref_cache[list][ scan8[0] + 2*i ], 2, 4, 8, (LIST_NOT_USED&0xFF), 1); | |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5103 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5104 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5105 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5106 for(list=0; list<2; list++){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5107 for(i=0; i<2; i++){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5108 if(IS_DIR(mb_type, i, list)){ |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5109 pred_8x16_motion(h, i*4, list, h->ref_cache[list][ scan8[0] + 2*i ], &mpx, &mpy); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5110 mx = mpx + decode_cabac_mb_mvd( h, list, 4*i, 0 ); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5111 my = mpy + decode_cabac_mb_mvd( h, list, 4*i, 1 ); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5112 |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5113 tprintf("final mv:%d %d\n", mx, my); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5114 fill_rectangle(h->mvd_cache[list][ scan8[0] + 2*i ], 2, 4, 8, pack16to32(mx-mpx,my-mpy), 4); |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5115 fill_rectangle(h->mv_cache[list][ scan8[0] + 2*i ], 2, 4, 8, pack16to32(mx,my), 4); |
2396 | 5116 }else{ // needed only for mixed refs |
5117 fill_rectangle(h->mvd_cache[list][ scan8[0] + 2*i ], 2, 4, 8, 0, 4); | |
5118 fill_rectangle(h-> mv_cache[list][ scan8[0] + 2*i ], 2, 4, 8, 0, 4); | |
1935
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5119 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5120 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5121 } |
e935af90767b
progressive P frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1909
diff
changeset
|
5122 } |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5123 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5124 |
1956
0eb2947f56f6
h264 hurry up fix and a tiny cabac clean patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1935
diff
changeset
|
5125 if( IS_INTER( mb_type ) ) { |
0eb2947f56f6
h264 hurry up fix and a tiny cabac clean patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1935
diff
changeset
|
5126 h->chroma_pred_mode_table[mb_xy] = 0; |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5127 write_back_motion( h, mb_type ); |
1956
0eb2947f56f6
h264 hurry up fix and a tiny cabac clean patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1935
diff
changeset
|
5128 } |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5129 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5130 if( !IS_INTRA16x16( mb_type ) ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5131 cbp = decode_cabac_mb_cbp_luma( h ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5132 cbp |= decode_cabac_mb_cbp_chroma( h ) << 4; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5133 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5134 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5135 h->cbp_table[mb_xy] = cbp; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5136 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5137 if( cbp || IS_INTRA16x16( mb_type ) ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5138 const uint8_t *scan, *dc_scan; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5139 int dqp; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5140 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5141 if(IS_INTERLACED(mb_type)){ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5142 scan= field_scan; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5143 dc_scan= luma_dc_field_scan; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5144 }else{ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5145 scan= zigzag_scan; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5146 dc_scan= luma_dc_zigzag_scan; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5147 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5148 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5149 h->last_qscale_diff = dqp = decode_cabac_mb_dqp( h ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5150 s->qscale += dqp; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5151 if(((unsigned)s->qscale) > 51){ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5152 if(s->qscale<0) s->qscale+= 52; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5153 else s->qscale-= 52; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5154 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5155 h->chroma_qp = get_chroma_qp(h, s->qscale); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5156 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5157 if( IS_INTRA16x16( mb_type ) ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5158 int i; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5159 //av_log( s->avctx, AV_LOG_ERROR, "INTRA16x16 DC\n" ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5160 if( decode_cabac_residual( h, h->mb, 0, 0, dc_scan, s->qscale, 16) < 0) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5161 return -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5162 if( cbp&15 ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5163 for( i = 0; i < 16; i++ ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5164 //av_log( s->avctx, AV_LOG_ERROR, "INTRA16x16 AC:%d\n", i ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5165 if( decode_cabac_residual(h, h->mb + 16*i, 1, i, scan + 1, s->qscale, 15) < 0 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5166 return -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5167 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5168 } else { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5169 fill_rectangle(&h->non_zero_count_cache[scan8[0]], 4, 4, 8, 0, 1); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5170 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5171 } else { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5172 int i8x8, i4x4; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5173 for( i8x8 = 0; i8x8 < 4; i8x8++ ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5174 if( cbp & (1<<i8x8) ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5175 for( i4x4 = 0; i4x4 < 4; i4x4++ ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5176 const int index = 4*i8x8 + i4x4; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5177 //av_log( s->avctx, AV_LOG_ERROR, "Luma4x4: %d\n", index ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5178 if( decode_cabac_residual(h, h->mb + 16*index, 2, index, scan, s->qscale, 16) < 0 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5179 return -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5180 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5181 } else { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5182 uint8_t * const nnz= &h->non_zero_count_cache[ scan8[4*i8x8] ]; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5183 nnz[0] = nnz[1] = nnz[8] = nnz[9] = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5184 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5185 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5186 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5187 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5188 if( cbp&0x30 ){ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5189 int c; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5190 for( c = 0; c < 2; c++ ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5191 //av_log( s->avctx, AV_LOG_ERROR, "INTRA C%d-DC\n",c ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5192 if( decode_cabac_residual(h, h->mb + 256 + 16*4*c, 3, c, chroma_dc_scan, h->chroma_qp, 4) < 0) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5193 return -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5194 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5195 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5196 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5197 if( cbp&0x20 ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5198 int c, i; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5199 for( c = 0; c < 2; c++ ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5200 for( i = 0; i < 4; i++ ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5201 const int index = 16 + 4 * c + i; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5202 //av_log( s->avctx, AV_LOG_ERROR, "INTRA C%d-AC %d\n",c, index - 16 ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5203 if( decode_cabac_residual(h, h->mb + 16*index, 4, index - 16, scan + 1, h->chroma_qp, 15) < 0) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5204 return -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5205 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5206 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5207 } else { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5208 uint8_t * const nnz= &h->non_zero_count_cache[0]; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5209 nnz[ scan8[16]+0 ] = nnz[ scan8[16]+1 ] =nnz[ scan8[16]+8 ] =nnz[ scan8[16]+9 ] = |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5210 nnz[ scan8[20]+0 ] = nnz[ scan8[20]+1 ] =nnz[ scan8[20]+8 ] =nnz[ scan8[20]+9 ] = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5211 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5212 } else { |
2315 | 5213 uint8_t * const nnz= &h->non_zero_count_cache[0]; |
5214 fill_rectangle(&nnz[scan8[0]], 4, 4, 8, 0, 1); | |
5215 nnz[ scan8[16]+0 ] = nnz[ scan8[16]+1 ] =nnz[ scan8[16]+8 ] =nnz[ scan8[16]+9 ] = | |
5216 nnz[ scan8[20]+0 ] = nnz[ scan8[20]+1 ] =nnz[ scan8[20]+8 ] =nnz[ scan8[20]+9 ] = 0; | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5217 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5218 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5219 s->current_picture.qscale_table[mb_xy]= s->qscale; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5220 write_back_non_zero_count(h); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5221 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5222 return 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5223 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5224 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5225 |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5226 static void filter_mb_edgev( H264Context *h, uint8_t *pix, int stride, int bS[4], int qp ) { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5227 int i, d; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5228 const int index_a = clip( qp + h->slice_alpha_c0_offset, 0, 51 ); |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5229 const int alpha = alpha_table[index_a]; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5230 const int beta = beta_table[clip( qp + h->slice_beta_offset, 0, 51 )]; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5231 |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5232 for( i = 0; i < 4; i++ ) { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5233 if( bS[i] == 0 ) { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5234 pix += 4 * stride; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5235 continue; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5236 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5237 |
1898 | 5238 if( bS[i] < 4 ) { |
5239 const int tc0 = tc0_table[index_a][bS[i] - 1]; | |
5240 /* 4px edge length */ | |
5241 for( d = 0; d < 4; d++ ) { | |
5242 const int p0 = pix[-1]; | |
5243 const int p1 = pix[-2]; | |
5244 const int p2 = pix[-3]; | |
5245 const int q0 = pix[0]; | |
5246 const int q1 = pix[1]; | |
5247 const int q2 = pix[2]; | |
5248 | |
5249 if( ABS( p0 - q0 ) < alpha && | |
5250 ABS( p1 - p0 ) < beta && | |
5251 ABS( q1 - q0 ) < beta ) { | |
5252 int tc = tc0; | |
5253 int i_delta; | |
5254 | |
5255 if( ABS( p2 - p0 ) < beta ) { | |
5256 pix[-2] = p1 + clip( ( p2 + ( ( p0 + q0 + 1 ) >> 1 ) - ( p1 << 1 ) ) >> 1, -tc0, tc0 ); | |
5257 tc++; | |
5258 } | |
5259 if( ABS( q2 - q0 ) < beta ) { | |
5260 pix[1] = q1 + clip( ( q2 + ( ( p0 + q0 + 1 ) >> 1 ) - ( q1 << 1 ) ) >> 1, -tc0, tc0 ); | |
5261 tc++; | |
5262 } | |
5263 | |
5264 i_delta = clip( (((q0 - p0 ) << 2) + (p1 - q1) + 4) >> 3, -tc, tc ); | |
5265 pix[-1] = clip_uint8( p0 + i_delta ); /* p0' */ | |
5266 pix[0] = clip_uint8( q0 - i_delta ); /* q0' */ | |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5267 } |
1898 | 5268 pix += stride; |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5269 } |
1898 | 5270 }else{ |
5271 /* 4px edge length */ | |
5272 for( d = 0; d < 4; d++ ) { | |
5273 const int p0 = pix[-1]; | |
5274 const int p1 = pix[-2]; | |
5275 const int p2 = pix[-3]; | |
5276 | |
5277 const int q0 = pix[0]; | |
5278 const int q1 = pix[1]; | |
5279 const int q2 = pix[2]; | |
5280 | |
5281 if( ABS( p0 - q0 ) < alpha && | |
5282 ABS( p1 - p0 ) < beta && | |
5283 ABS( q1 - q0 ) < beta ) { | |
5284 | |
5285 if(ABS( p0 - q0 ) < (( alpha >> 2 ) + 2 )){ | |
5286 if( ABS( p2 - p0 ) < beta) | |
5287 { | |
5288 const int p3 = pix[-4]; | |
5289 /* p0', p1', p2' */ | |
5290 pix[-1] = ( p2 + 2*p1 + 2*p0 + 2*q0 + q1 + 4 ) >> 3; | |
5291 pix[-2] = ( p2 + p1 + p0 + q0 + 2 ) >> 2; | |
5292 pix[-3] = ( 2*p3 + 3*p2 + p1 + p0 + q0 + 4 ) >> 3; | |
5293 } else { | |
5294 /* p0' */ | |
5295 pix[-1] = ( 2*p1 + p0 + q1 + 2 ) >> 2; | |
5296 } | |
5297 if( ABS( q2 - q0 ) < beta) | |
5298 { | |
5299 const int q3 = pix[3]; | |
5300 /* q0', q1', q2' */ | |
5301 pix[0] = ( p1 + 2*p0 + 2*q0 + 2*q1 + q2 + 4 ) >> 3; | |
5302 pix[1] = ( p0 + q0 + q1 + q2 + 2 ) >> 2; | |
5303 pix[2] = ( 2*q3 + 3*q2 + q1 + q0 + p0 + 4 ) >> 3; | |
5304 } else { | |
5305 /* q0' */ | |
5306 pix[0] = ( 2*q1 + q0 + p1 + 2 ) >> 2; | |
5307 } | |
5308 }else{ | |
5309 /* p0', q0' */ | |
5310 pix[-1] = ( 2*p1 + p0 + q1 + 2 ) >> 2; | |
5311 pix[ 0] = ( 2*q1 + q0 + p1 + 2 ) >> 2; | |
5312 } | |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5313 } |
1898 | 5314 pix += stride; |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5315 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5316 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5317 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5318 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5319 static void filter_mb_edgecv( H264Context *h, uint8_t *pix, int stride, int bS[4], int qp ) { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5320 int i, d; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5321 const int index_a = clip( qp + h->slice_alpha_c0_offset, 0, 51 ); |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5322 const int alpha = alpha_table[index_a]; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5323 const int beta = beta_table[clip( qp + h->slice_beta_offset, 0, 51 )]; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5324 |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5325 for( i = 0; i < 4; i++ ) { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5326 if( bS[i] == 0 ) { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5327 pix += 2 * stride; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5328 continue; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5329 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5330 |
1898 | 5331 if( bS[i] < 4 ) { |
5332 const int tc = tc0_table[index_a][bS[i] - 1] + 1; | |
5333 /* 2px edge length (because we use same bS than the one for luma) */ | |
5334 for( d = 0; d < 2; d++ ){ | |
5335 const int p0 = pix[-1]; | |
5336 const int p1 = pix[-2]; | |
5337 const int q0 = pix[0]; | |
5338 const int q1 = pix[1]; | |
5339 | |
5340 if( ABS( p0 - q0 ) < alpha && | |
5341 ABS( p1 - p0 ) < beta && | |
5342 ABS( q1 - q0 ) < beta ) { | |
5343 const int i_delta = clip( (((q0 - p0 ) << 2) + (p1 - q1) + 4) >> 3, -tc, tc ); | |
5344 | |
5345 pix[-1] = clip_uint8( p0 + i_delta ); /* p0' */ | |
5346 pix[0] = clip_uint8( q0 - i_delta ); /* q0' */ | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
5347 //tprintf("filter_mb_edgecv i:%d d:%d, qp:%d, indexA:%d, alpha:%d, beta:%d, tc:%d\n# bS:%d -> [%02x, %02x, %02x, %02x, %02x, %02x] =>[%02x, %02x, %02x, %02x]\n", i, d, qp, index_a, alpha, beta, tc, bS[i], pix[-3], p1, p0, q0, q1, pix[2], p1, pix[-1], pix[0], q1); |
1898 | 5348 } |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5349 pix += stride; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5350 } |
1898 | 5351 }else{ |
5352 /* 2px edge length (because we use same bS than the one for luma) */ | |
5353 for( d = 0; d < 2; d++ ){ | |
5354 const int p0 = pix[-1]; | |
5355 const int p1 = pix[-2]; | |
5356 const int q0 = pix[0]; | |
5357 const int q1 = pix[1]; | |
5358 | |
5359 if( ABS( p0 - q0 ) < alpha && | |
5360 ABS( p1 - p0 ) < beta && | |
5361 ABS( q1 - q0 ) < beta ) { | |
5362 | |
5363 pix[-1] = ( 2*p1 + p0 + q1 + 2 ) >> 2; /* p0' */ | |
5364 pix[0] = ( 2*q1 + q0 + p1 + 2 ) >> 2; /* q0' */ | |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
5365 //tprintf("filter_mb_edgecv i:%d d:%d\n# bS:4 -> [%02x, %02x, %02x, %02x, %02x, %02x] =>[%02x, %02x, %02x, %02x]\n", i, d, pix[-3], p1, p0, q0, q1, pix[2], p1, pix[-1], pix[0], q1); |
1898 | 5366 } |
5367 pix += stride; | |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5368 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5369 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5370 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5371 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5372 |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5373 static void filter_mb_edgeh( H264Context *h, uint8_t *pix, int stride, int bS[4], int qp ) { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5374 int i, d; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5375 const int index_a = clip( qp + h->slice_alpha_c0_offset, 0, 51 ); |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5376 const int alpha = alpha_table[index_a]; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5377 const int beta = beta_table[clip( qp + h->slice_beta_offset, 0, 51 )]; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5378 const int pix_next = stride; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5379 |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5380 for( i = 0; i < 4; i++ ) { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5381 if( bS[i] == 0 ) { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5382 pix += 4; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5383 continue; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5384 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5385 |
1898 | 5386 if( bS[i] < 4 ) { |
5387 const int tc0 = tc0_table[index_a][bS[i] - 1]; | |
5388 /* 4px edge length */ | |
5389 for( d = 0; d < 4; d++ ) { | |
5390 const int p0 = pix[-1*pix_next]; | |
5391 const int p1 = pix[-2*pix_next]; | |
5392 const int p2 = pix[-3*pix_next]; | |
5393 const int q0 = pix[0]; | |
5394 const int q1 = pix[1*pix_next]; | |
5395 const int q2 = pix[2*pix_next]; | |
5396 | |
5397 if( ABS( p0 - q0 ) < alpha && | |
5398 ABS( p1 - p0 ) < beta && | |
5399 ABS( q1 - q0 ) < beta ) { | |
5400 | |
5401 int tc = tc0; | |
5402 int i_delta; | |
5403 | |
5404 if( ABS( p2 - p0 ) < beta ) { | |
5405 pix[-2*pix_next] = p1 + clip( ( p2 + ( ( p0 + q0 + 1 ) >> 1 ) - ( p1 << 1 ) ) >> 1, -tc0, tc0 ); | |
5406 tc++; | |
5407 } | |
5408 if( ABS( q2 - q0 ) < beta ) { | |
5409 pix[pix_next] = q1 + clip( ( q2 + ( ( p0 + q0 + 1 ) >> 1 ) - ( q1 << 1 ) ) >> 1, -tc0, tc0 ); | |
5410 tc++; | |
5411 } | |
5412 | |
5413 i_delta = clip( (((q0 - p0 ) << 2) + (p1 - q1) + 4) >> 3, -tc, tc ); | |
5414 pix[-pix_next] = clip_uint8( p0 + i_delta ); /* p0' */ | |
5415 pix[0] = clip_uint8( q0 - i_delta ); /* q0' */ | |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5416 } |
1898 | 5417 pix++; |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5418 } |
1898 | 5419 }else{ |
5420 /* 4px edge length */ | |
5421 for( d = 0; d < 4; d++ ) { | |
5422 const int p0 = pix[-1*pix_next]; | |
5423 const int p1 = pix[-2*pix_next]; | |
5424 const int p2 = pix[-3*pix_next]; | |
5425 const int q0 = pix[0]; | |
5426 const int q1 = pix[1*pix_next]; | |
5427 const int q2 = pix[2*pix_next]; | |
5428 | |
5429 if( ABS( p0 - q0 ) < alpha && | |
5430 ABS( p1 - p0 ) < beta && | |
5431 ABS( q1 - q0 ) < beta ) { | |
5432 | |
5433 const int p3 = pix[-4*pix_next]; | |
5434 const int q3 = pix[ 3*pix_next]; | |
5435 | |
5436 if(ABS( p0 - q0 ) < (( alpha >> 2 ) + 2 )){ | |
5437 if( ABS( p2 - p0 ) < beta) { | |
5438 /* p0', p1', p2' */ | |
5439 pix[-1*pix_next] = ( p2 + 2*p1 + 2*p0 + 2*q0 + q1 + 4 ) >> 3; | |
5440 pix[-2*pix_next] = ( p2 + p1 + p0 + q0 + 2 ) >> 2; | |
5441 pix[-3*pix_next] = ( 2*p3 + 3*p2 + p1 + p0 + q0 + 4 ) >> 3; | |
5442 } else { | |
5443 /* p0' */ | |
5444 pix[-1*pix_next] = ( 2*p1 + p0 + q1 + 2 ) >> 2; | |
5445 } | |
5446 if( ABS( q2 - q0 ) < beta) { | |
5447 /* q0', q1', q2' */ | |
5448 pix[0*pix_next] = ( p1 + 2*p0 + 2*q0 + 2*q1 + q2 + 4 ) >> 3; | |
5449 pix[1*pix_next] = ( p0 + q0 + q1 + q2 + 2 ) >> 2; | |
5450 pix[2*pix_next] = ( 2*q3 + 3*q2 + q1 + q0 + p0 + 4 ) >> 3; | |
5451 } else { | |
5452 /* q0' */ | |
5453 pix[0*pix_next] = ( 2*q1 + q0 + p1 + 2 ) >> 2; | |
5454 } | |
5455 }else{ | |
5456 /* p0', q0' */ | |
5457 pix[-1*pix_next] = ( 2*p1 + p0 + q1 + 2 ) >> 2; | |
5458 pix[ 0*pix_next] = ( 2*q1 + q0 + p1 + 2 ) >> 2; | |
5459 } | |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5460 } |
1898 | 5461 pix++; |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5462 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5463 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5464 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5465 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5466 |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5467 static void filter_mb_edgech( H264Context *h, uint8_t *pix, int stride, int bS[4], int qp ) { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5468 int i, d; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5469 const int index_a = clip( qp + h->slice_alpha_c0_offset, 0, 51 ); |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5470 const int alpha = alpha_table[index_a]; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5471 const int beta = beta_table[clip( qp + h->slice_beta_offset, 0, 51 )]; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5472 const int pix_next = stride; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5473 |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5474 for( i = 0; i < 4; i++ ) |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5475 { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5476 if( bS[i] == 0 ) { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5477 pix += 2; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5478 continue; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5479 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5480 |
1898 | 5481 if( bS[i] < 4 ) { |
5482 int tc = tc0_table[index_a][bS[i] - 1] + 1; | |
5483 /* 2px edge length (see deblocking_filter_edgecv) */ | |
5484 for( d = 0; d < 2; d++ ) { | |
5485 const int p0 = pix[-1*pix_next]; | |
5486 const int p1 = pix[-2*pix_next]; | |
5487 const int q0 = pix[0]; | |
5488 const int q1 = pix[1*pix_next]; | |
5489 | |
5490 if( ABS( p0 - q0 ) < alpha && | |
5491 ABS( p1 - p0 ) < beta && | |
5492 ABS( q1 - q0 ) < beta ) { | |
5493 | |
5494 int i_delta = clip( (((q0 - p0 ) << 2) + (p1 - q1) + 4) >> 3, -tc, tc ); | |
5495 | |
5496 pix[-pix_next] = clip_uint8( p0 + i_delta ); /* p0' */ | |
5497 pix[0] = clip_uint8( q0 - i_delta ); /* q0' */ | |
5498 } | |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5499 pix++; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5500 } |
1898 | 5501 }else{ |
5502 /* 2px edge length (see deblocking_filter_edgecv) */ | |
5503 for( d = 0; d < 2; d++ ) { | |
5504 const int p0 = pix[-1*pix_next]; | |
5505 const int p1 = pix[-2*pix_next]; | |
5506 const int q0 = pix[0]; | |
5507 const int q1 = pix[1*pix_next]; | |
5508 | |
5509 if( ABS( p0 - q0 ) < alpha && | |
5510 ABS( p1 - p0 ) < beta && | |
5511 ABS( q1 - q0 ) < beta ) { | |
5512 | |
5513 pix[-pix_next] = ( 2*p1 + p0 + q1 + 2 ) >> 2; /* p0' */ | |
5514 pix[0] = ( 2*q1 + q0 + p1 + 2 ) >> 2; /* q0' */ | |
5515 } | |
5516 pix++; | |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5517 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5518 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5519 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5520 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5521 |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
5522 static void filter_mb( H264Context *h, int mb_x, int mb_y, uint8_t *img_y, uint8_t *img_cb, uint8_t *img_cr) { |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5523 MpegEncContext * const s = &h->s; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5524 const int mb_xy= mb_x + mb_y*s->mb_stride; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5525 int linesize, uvlinesize; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5526 int dir; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5527 |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5528 /* FIXME Implement deblocking filter for field MB */ |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5529 if( h->sps.mb_aff ) { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5530 return; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5531 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5532 linesize = s->linesize; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5533 uvlinesize = s->uvlinesize; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5534 |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5535 /* dir : 0 -> vertical edge, 1 -> horizontal edge */ |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5536 for( dir = 0; dir < 2; dir++ ) |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5537 { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5538 int start = 0; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5539 int edge; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5540 |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5541 /* test picture boundary */ |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5542 if( ( dir == 0 && mb_x == 0 ) || ( dir == 1 && mb_y == 0 ) ) { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5543 start = 1; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5544 } |
2402
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5545 if( 0 == start && 2 == h->deblocking_filter) { |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5546 const int mbn_xy = dir == 0 ? mb_xy -1 : mb_xy - s->mb_stride; |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5547 if (h->slice_table[mbn_xy] != h->slice_table[mb_xy]) { |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5548 start = 1; |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5549 } |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5550 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5551 |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5552 /* Calculate bS */ |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5553 for( edge = start; edge < 4; edge++ ) { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5554 /* mbn_xy: neighbour macroblock (how that works for field ?) */ |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5555 int mbn_xy = edge > 0 ? mb_xy : ( dir == 0 ? mb_xy -1 : mb_xy - s->mb_stride ); |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5556 int bS[4]; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5557 int qp; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5558 |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5559 if( IS_INTRA( s->current_picture.mb_type[mb_xy] ) || |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5560 IS_INTRA( s->current_picture.mb_type[mbn_xy] ) ) { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5561 bS[0] = bS[1] = bS[2] = bS[3] = ( edge == 0 ? 4 : 3 ); |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5562 } else { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5563 int i; |
2402
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5564 const int slice_boundary = (h->slice_table[mbn_xy] != h->slice_table[mb_xy]); |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5565 for( i = 0; i < 4; i++ ) { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5566 int x = dir == 0 ? edge : i; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5567 int y = dir == 0 ? i : edge; |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
5568 int b_idx= 8 + 4 + x + 8*y; |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
5569 int bn_idx= b_idx - (dir ? 8:1); |
2402
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5570 uint8_t left_non_zero_count; |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5571 if (slice_boundary) { |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5572 // must not use non_zero_count_cache, it is not valid |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5573 // across slice boundaries |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5574 if (0 == dir) { |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5575 left_non_zero_count = h->non_zero_count[mbn_xy][6-i]; |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5576 } else { |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5577 left_non_zero_count = h->non_zero_count[mbn_xy][i]; |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5578 } |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5579 } else { |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5580 left_non_zero_count = h->non_zero_count_cache[bn_idx]; |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5581 } |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
5582 |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
5583 if( h->non_zero_count_cache[b_idx] != 0 || |
2402
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5584 left_non_zero_count != 0 ) { |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5585 bS[i] = 2; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5586 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5587 else if( h->slice_type == P_TYPE ) { |
2402
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5588 int16_t left_mv[2]; |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5589 int8_t left_ref; |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5590 if (slice_boundary) { |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5591 // must not use ref_cache and mv_cache, they are not |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5592 // valid across slice boundaries |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5593 if (dir == 0) { |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5594 left_ref = s->current_picture.ref_index[0][h->mb2b8_xy[mbn_xy] + (i>>1) * h->b8_stride + 1]; |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5595 *(uint32_t*)left_mv = *(uint32_t*)s->current_picture.motion_val[0][h->mb2b_xy[mbn_xy]+i*h->b_stride+3]; |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5596 } else { |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5597 left_ref = s->current_picture.ref_index[0][h->mb2b8_xy[mbn_xy] + (i>>1) + h->b8_stride]; |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5598 *(uint32_t*)left_mv = *(uint32_t*)s->current_picture.motion_val[0][h->mb2b_xy[mbn_xy]+3*h->b_stride+i]; |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5599 } |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5600 } else { |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5601 left_ref = h->ref_cache[0][bn_idx]; |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5602 *(uint32_t*)left_mv = *(uint32_t*)h->mv_cache[0][bn_idx]; |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5603 } |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5604 if( h->ref_cache[0][b_idx] != left_ref || |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5605 ABS( h->mv_cache[0][b_idx][0] - left_mv[0] ) >= 4 || |
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
5606 ABS( h->mv_cache[0][b_idx][1] - left_mv[1] ) >= 4 ) |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5607 bS[i] = 1; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5608 else |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5609 bS[i] = 0; |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
5610 } else { |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5611 /* FIXME Add support for B frame */ |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5612 return; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5613 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5614 } |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
5615 |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
5616 if(bS[0]+bS[1]+bS[2]+bS[3] == 0) |
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
5617 continue; |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5618 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5619 |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5620 /* Filter edge */ |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
5621 qp = ( s->qscale + s->current_picture.qscale_table[mbn_xy] + 1 ) >> 1; |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
5622 //tprintf("filter mb:%d/%d dir:%d edge:%d, QPy:%d, QPc:%d, QPcn:%d\n", mb_x, mb_y, dir, edge, qp, h->chroma_qp, s->current_picture.qscale_table[mbn_xy]); |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5623 if( dir == 0 ) { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5624 filter_mb_edgev( h, &img_y[4*edge], linesize, bS, qp ); |
1898 | 5625 if( (edge&1) == 0 ) { |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
5626 int chroma_qp = ( h->chroma_qp + |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5627 get_chroma_qp( h, s->current_picture.qscale_table[mbn_xy] ) + 1 ) >> 1; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5628 filter_mb_edgecv( h, &img_cb[2*edge], uvlinesize, bS, chroma_qp ); |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5629 filter_mb_edgecv( h, &img_cr[2*edge], uvlinesize, bS, chroma_qp ); |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5630 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5631 } else { |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5632 filter_mb_edgeh( h, &img_y[4*edge*linesize], linesize, bS, qp ); |
1898 | 5633 if( (edge&1) == 0 ) { |
1899
379a18a7131f
do loop filter immediatly after each macroblock is decoded instead of after a frame is decoded
michael
parents:
1898
diff
changeset
|
5634 int chroma_qp = ( h->chroma_qp + |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5635 get_chroma_qp( h, s->current_picture.qscale_table[mbn_xy] ) + 1 ) >> 1; |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5636 filter_mb_edgech( h, &img_cb[2*edge*uvlinesize], uvlinesize, bS, chroma_qp ); |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5637 filter_mb_edgech( h, &img_cr[2*edge*uvlinesize], uvlinesize, bS, chroma_qp ); |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5638 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5639 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5640 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5641 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5642 } |
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
5643 |
1168 | 5644 static int decode_slice(H264Context *h){ |
5645 MpegEncContext * const s = &h->s; | |
5646 const int part_mask= s->partitioned_frame ? (AC_END|AC_ERROR) : 0x7F; | |
5647 | |
5648 s->mb_skip_run= -1; | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5649 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5650 if( h->pps.cabac ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5651 int i; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5652 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5653 /* realign */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5654 align_get_bits( &s->gb ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5655 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5656 /* init cabac */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5657 ff_init_cabac_states( &h->cabac, ff_h264_lps_range, ff_h264_mps_state, ff_h264_lps_state, 64 ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5658 ff_init_cabac_decoder( &h->cabac, |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5659 s->gb.buffer + get_bits_count(&s->gb)/8, |
2116 | 5660 ( s->gb.size_in_bits - get_bits_count(&s->gb) + 7)/8); |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5661 /* calculate pre-state */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5662 for( i= 0; i < 399; i++ ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5663 int pre; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5664 if( h->slice_type == I_TYPE ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5665 pre = clip( ((cabac_context_init_I[i][0] * s->qscale) >>4 ) + cabac_context_init_I[i][1], 1, 126 ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5666 else |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5667 pre = clip( ((cabac_context_init_PB[h->cabac_init_idc][i][0] * s->qscale) >>4 ) + cabac_context_init_PB[h->cabac_init_idc][i][1], 1, 126 ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5668 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5669 if( pre <= 63 ) |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5670 h->cabac_state[i] = 2 * ( 63 - pre ) + 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5671 else |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5672 h->cabac_state[i] = 2 * ( pre - 64 ) + 1; |
1168 | 5673 } |
5674 | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5675 for(;;){ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5676 int ret = decode_mb_cabac(h); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5677 int eos = get_cabac_terminate( &h->cabac ); /* End of Slice flag */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5678 |
2163 | 5679 if(ret>=0) hl_decode_mb(h); |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5680 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5681 /* XXX: useless as decode_mb_cabac it doesn't support that ... */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5682 if( ret >= 0 && h->sps.mb_aff ) { //FIXME optimal? or let mb_decode decode 16x32 ? |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5683 s->mb_y++; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5684 |
2163 | 5685 if(ret>=0) ret = decode_mb_cabac(h); |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5686 eos = get_cabac_terminate( &h->cabac ); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5687 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5688 hl_decode_mb(h); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5689 s->mb_y--; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5690 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5691 |
2116 | 5692 if( ret < 0 || h->cabac.bytestream > h->cabac.bytestream_end + 1) { |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5693 av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding MB %d %d\n", s->mb_x, s->mb_y); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5694 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_ERROR|DC_ERROR|MV_ERROR)&part_mask); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5695 return -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5696 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5697 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5698 if( ++s->mb_x >= s->mb_width ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5699 s->mb_x = 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5700 ff_draw_horiz_band(s, 16*s->mb_y, 16); |
2392 | 5701 ++s->mb_y; |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5702 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5703 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5704 if( eos || s->mb_y >= s->mb_height ) { |
2392 | 5705 tprintf("slice end %d %d\n", get_bits_count(&s->gb), s->gb.size_in_bits); |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5706 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, (AC_END|DC_END|MV_END)&part_mask); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5707 return 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5708 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5709 #if 0 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5710 /* TODO test over-reading in cabac code */ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5711 else if( read too much in h->cabac ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5712 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_ERROR|DC_ERROR|MV_ERROR)&part_mask); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5713 return -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5714 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5715 #endif |
1168 | 5716 } |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5717 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5718 } else { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5719 for(;;){ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5720 int ret = decode_mb_cavlc(h); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5721 |
2163 | 5722 if(ret>=0) hl_decode_mb(h); |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5723 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5724 if(ret>=0 && h->sps.mb_aff){ //FIXME optimal? or let mb_decode decode 16x32 ? |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5725 s->mb_y++; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5726 ret = decode_mb_cavlc(h); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5727 |
2163 | 5728 if(ret>=0) hl_decode_mb(h); |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5729 s->mb_y--; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5730 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5731 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5732 if(ret<0){ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5733 av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding MB %d %d\n", s->mb_x, s->mb_y); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5734 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_ERROR|DC_ERROR|MV_ERROR)&part_mask); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5735 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5736 return -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5737 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5738 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5739 if(++s->mb_x >= s->mb_width){ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5740 s->mb_x=0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5741 ff_draw_horiz_band(s, 16*s->mb_y, 16); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5742 if(++s->mb_y >= s->mb_height){ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5743 tprintf("slice end %d %d\n", get_bits_count(&s->gb), s->gb.size_in_bits); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5744 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5745 if(get_bits_count(&s->gb) == s->gb.size_in_bits ) { |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5746 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, (AC_END|DC_END|MV_END)&part_mask); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5747 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5748 return 0; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5749 }else{ |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5750 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_END|DC_END|MV_END)&part_mask); |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5751 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5752 return -1; |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5753 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5754 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5755 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5756 |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5757 if(get_bits_count(&s->gb) >= s->gb.size_in_bits && s->mb_skip_run<=0){ |
2392 | 5758 tprintf("slice end %d %d\n", get_bits_count(&s->gb), s->gb.size_in_bits); |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5759 if(get_bits_count(&s->gb) == s->gb.size_in_bits ){ |
1168 | 5760 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, (AC_END|DC_END|MV_END)&part_mask); |
5761 | |
5762 return 0; | |
5763 }else{ | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5764 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_ERROR|DC_ERROR|MV_ERROR)&part_mask); |
1168 | 5765 |
5766 return -1; | |
5767 } | |
5768 } | |
5769 } | |
1908
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5770 } |
e20fd60b215c
h264 - progressive I frame CABAC support patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1899
diff
changeset
|
5771 |
1168 | 5772 #if 0 |
5773 for(;s->mb_y < s->mb_height; s->mb_y++){ | |
5774 for(;s->mb_x < s->mb_width; s->mb_x++){ | |
5775 int ret= decode_mb(h); | |
5776 | |
5777 hl_decode_mb(h); | |
5778 | |
5779 if(ret<0){ | |
5780 fprintf(stderr, "error while decoding MB %d %d\n", s->mb_x, s->mb_y); | |
5781 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_ERROR|DC_ERROR|MV_ERROR)&part_mask); | |
5782 | |
5783 return -1; | |
5784 } | |
5785 | |
5786 if(++s->mb_x >= s->mb_width){ | |
5787 s->mb_x=0; | |
5788 if(++s->mb_y >= s->mb_height){ | |
5789 if(get_bits_count(s->gb) == s->gb.size_in_bits){ | |
5790 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, (AC_END|DC_END|MV_END)&part_mask); | |
5791 | |
5792 return 0; | |
5793 }else{ | |
5794 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_END|DC_END|MV_END)&part_mask); | |
5795 | |
5796 return -1; | |
5797 } | |
5798 } | |
5799 } | |
5800 | |
5801 if(get_bits_count(s->?gb) >= s->gb?.size_in_bits){ | |
5802 if(get_bits_count(s->gb) == s->gb.size_in_bits){ | |
5803 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, (AC_END|DC_END|MV_END)&part_mask); | |
5804 | |
5805 return 0; | |
5806 }else{ | |
5807 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_ERROR|DC_ERROR|MV_ERROR)&part_mask); | |
5808 | |
5809 return -1; | |
5810 } | |
5811 } | |
5812 } | |
5813 s->mb_x=0; | |
5814 ff_draw_horiz_band(s, 16*s->mb_y, 16); | |
5815 } | |
5816 #endif | |
5817 return -1; //not reached | |
5818 } | |
5819 | |
5820 static inline int decode_vui_parameters(H264Context *h, SPS *sps){ | |
5821 MpegEncContext * const s = &h->s; | |
5822 int aspect_ratio_info_present_flag, aspect_ratio_idc; | |
5823 | |
5824 aspect_ratio_info_present_flag= get_bits1(&s->gb); | |
5825 | |
5826 if( aspect_ratio_info_present_flag ) { | |
5827 aspect_ratio_idc= get_bits(&s->gb, 8); | |
5828 if( aspect_ratio_idc == EXTENDED_SAR ) { | |
1548 | 5829 sps->sar.num= get_bits(&s->gb, 16); |
5830 sps->sar.den= get_bits(&s->gb, 16); | |
1168 | 5831 }else if(aspect_ratio_idc < 16){ |
1548 | 5832 sps->sar= pixel_aspect[aspect_ratio_idc]; |
1168 | 5833 }else{ |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
5834 av_log(h->s.avctx, AV_LOG_ERROR, "illegal aspect ratio\n"); |
1168 | 5835 return -1; |
5836 } | |
5837 }else{ | |
1548 | 5838 sps->sar.num= |
5839 sps->sar.den= 0; | |
1168 | 5840 } |
5841 // s->avctx->aspect_ratio= sar_width*s->width / (float)(s->height*sar_height); | |
2174
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5842 |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5843 if(get_bits1(&s->gb)){ /* overscan_info_present_flag */ |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5844 get_bits1(&s->gb); /* overscan_appropriate_flag */ |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5845 } |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5846 |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5847 if(get_bits1(&s->gb)){ /* video_signal_type_present_flag */ |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5848 get_bits(&s->gb, 3); /* video_format */ |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5849 get_bits1(&s->gb); /* video_full_range_flag */ |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5850 if(get_bits1(&s->gb)){ /* colour_description_present_flag */ |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5851 get_bits(&s->gb, 8); /* colour_primaries */ |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5852 get_bits(&s->gb, 8); /* transfer_characteristics */ |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5853 get_bits(&s->gb, 8); /* matrix_coefficients */ |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5854 } |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5855 } |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5856 |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5857 if(get_bits1(&s->gb)){ /* chroma_location_info_present_flag */ |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5858 get_ue_golomb(&s->gb); /* chroma_sample_location_type_top_field */ |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5859 get_ue_golomb(&s->gb); /* chroma_sample_location_type_bottom_field */ |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5860 } |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5861 |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5862 sps->timing_info_present_flag = get_bits1(&s->gb); |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5863 if(sps->timing_info_present_flag){ |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5864 sps->num_units_in_tick = get_bits_long(&s->gb, 32); |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5865 sps->time_scale = get_bits_long(&s->gb, 32); |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5866 sps->fixed_frame_rate_flag = get_bits1(&s->gb); |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5867 } |
6d614374d907
Get H.264 frame rate from SPS/VUI patch by (Mns Rullgrd <mru at kth dot se>)
michael
parents:
2163
diff
changeset
|
5868 |
1168 | 5869 #if 0 |
5870 | nal_hrd_parameters_present_flag |0 |u(1) | | |
5871 | if( nal_hrd_parameters_present_flag = = 1) | | | | |
5872 | hrd_parameters( ) | | | | |
5873 | vcl_hrd_parameters_present_flag |0 |u(1) | | |
5874 | if( vcl_hrd_parameters_present_flag = = 1) | | | | |
5875 | hrd_parameters( ) | | | | |
5876 | if( ( nal_hrd_parameters_present_flag = = 1 | || | | | |
5877 | | | | | |
5878 |( vcl_hrd_parameters_present_flag = = 1 ) ) | | | | |
5879 | low_delay_hrd_flag |0 |u(1) | | |
5880 | bitstream_restriction_flag |0 |u(1) | | |
5881 | if( bitstream_restriction_flag ) { |0 |u(1) | | |
5882 | motion_vectors_over_pic_boundaries_flag |0 |u(1) | | |
5883 | max_bytes_per_pic_denom |0 |ue(v) | | |
5884 | max_bits_per_mb_denom |0 |ue(v) | | |
5885 | log2_max_mv_length_horizontal |0 |ue(v) | | |
5886 | log2_max_mv_length_vertical |0 |ue(v) | | |
5887 | num_reorder_frames |0 |ue(v) | | |
5888 | max_dec_frame_buffering |0 |ue(v) | | |
5889 | } | | | | |
5890 |} | | | | |
5891 #endif | |
5892 return 0; | |
5893 } | |
5894 | |
5895 static inline int decode_seq_parameter_set(H264Context *h){ | |
5896 MpegEncContext * const s = &h->s; | |
1371 | 5897 int profile_idc, level_idc; |
1168 | 5898 int sps_id, i; |
5899 SPS *sps; | |
5900 | |
5901 profile_idc= get_bits(&s->gb, 8); | |
1371 | 5902 get_bits1(&s->gb); //constraint_set0_flag |
5903 get_bits1(&s->gb); //constraint_set1_flag | |
5904 get_bits1(&s->gb); //constraint_set2_flag | |
2312 | 5905 get_bits1(&s->gb); //constraint_set3_flag |
5906 get_bits(&s->gb, 4); // reserved | |
1168 | 5907 level_idc= get_bits(&s->gb, 8); |
5908 sps_id= get_ue_golomb(&s->gb); | |
5909 | |
5910 sps= &h->sps_buffer[ sps_id ]; | |
5911 sps->profile_idc= profile_idc; | |
5912 sps->level_idc= level_idc; | |
2312 | 5913 |
1168 | 5914 sps->log2_max_frame_num= get_ue_golomb(&s->gb) + 4; |
5915 sps->poc_type= get_ue_golomb(&s->gb); | |
5916 | |
5917 if(sps->poc_type == 0){ //FIXME #define | |
5918 sps->log2_max_poc_lsb= get_ue_golomb(&s->gb) + 4; | |
5919 } else if(sps->poc_type == 1){//FIXME #define | |
5920 sps->delta_pic_order_always_zero_flag= get_bits1(&s->gb); | |
5921 sps->offset_for_non_ref_pic= get_se_golomb(&s->gb); | |
5922 sps->offset_for_top_to_bottom_field= get_se_golomb(&s->gb); | |
5923 sps->poc_cycle_length= get_ue_golomb(&s->gb); | |
5924 | |
5925 for(i=0; i<sps->poc_cycle_length; i++) | |
5926 sps->offset_for_ref_frame[i]= get_se_golomb(&s->gb); | |
5927 } | |
5928 if(sps->poc_type > 2){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
5929 av_log(h->s.avctx, AV_LOG_ERROR, "illegal POC type %d\n", sps->poc_type); |
1168 | 5930 return -1; |
5931 } | |
5932 | |
5933 sps->ref_frame_count= get_ue_golomb(&s->gb); | |
2254
0dfe4e32b19c
H.264 max reference pictures fix by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2227
diff
changeset
|
5934 if(sps->ref_frame_count > MAX_PICTURE_COUNT-2){ |
0dfe4e32b19c
H.264 max reference pictures fix by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2227
diff
changeset
|
5935 av_log(h->s.avctx, AV_LOG_ERROR, "too many reference frames\n"); |
0dfe4e32b19c
H.264 max reference pictures fix by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2227
diff
changeset
|
5936 } |
1371 | 5937 sps->gaps_in_frame_num_allowed_flag= get_bits1(&s->gb); |
1168 | 5938 sps->mb_width= get_ue_golomb(&s->gb) + 1; |
5939 sps->mb_height= get_ue_golomb(&s->gb) + 1; | |
2422 | 5940 if((unsigned)sps->mb_width >= INT_MAX/16 || (unsigned)sps->mb_height >= INT_MAX/16 || |
5941 avcodec_check_dimensions(NULL, 16*sps->mb_width, 16*sps->mb_height)) | |
5942 return -1; | |
5943 | |
1168 | 5944 sps->frame_mbs_only_flag= get_bits1(&s->gb); |
5945 if(!sps->frame_mbs_only_flag) | |
5946 sps->mb_aff= get_bits1(&s->gb); | |
5947 else | |
5948 sps->mb_aff= 0; | |
5949 | |
5950 sps->direct_8x8_inference_flag= get_bits1(&s->gb); | |
5951 | |
1371 | 5952 sps->crop= get_bits1(&s->gb); |
5953 if(sps->crop){ | |
5954 sps->crop_left = get_ue_golomb(&s->gb); | |
5955 sps->crop_right = get_ue_golomb(&s->gb); | |
5956 sps->crop_top = get_ue_golomb(&s->gb); | |
5957 sps->crop_bottom= get_ue_golomb(&s->gb); | |
5958 if(sps->crop_left || sps->crop_top){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
5959 av_log(h->s.avctx, AV_LOG_ERROR, "insane cropping not completly supported, this could look slightly wrong ...\n"); |
1371 | 5960 } |
5961 }else{ | |
5962 sps->crop_left = | |
5963 sps->crop_right = | |
5964 sps->crop_top = | |
5965 sps->crop_bottom= 0; | |
5966 } | |
5967 | |
1168 | 5968 sps->vui_parameters_present_flag= get_bits1(&s->gb); |
5969 if( sps->vui_parameters_present_flag ) | |
5970 decode_vui_parameters(h, sps); | |
5971 | |
5972 if(s->avctx->debug&FF_DEBUG_PICT_INFO){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
5973 av_log(h->s.avctx, AV_LOG_DEBUG, "sps:%d profile:%d/%d poc:%d ref:%d %dx%d %s %s crop:%d/%d/%d/%d %s\n", |
1168 | 5974 sps_id, sps->profile_idc, sps->level_idc, |
5975 sps->poc_type, | |
5976 sps->ref_frame_count, | |
5977 sps->mb_width, sps->mb_height, | |
5978 sps->frame_mbs_only_flag ? "FRM" : (sps->mb_aff ? "MB-AFF" : "PIC-AFF"), | |
5979 sps->direct_8x8_inference_flag ? "8B8" : "", | |
1371 | 5980 sps->crop_left, sps->crop_right, |
5981 sps->crop_top, sps->crop_bottom, | |
1168 | 5982 sps->vui_parameters_present_flag ? "VUI" : "" |
5983 ); | |
5984 } | |
5985 return 0; | |
5986 } | |
5987 | |
5988 static inline int decode_picture_parameter_set(H264Context *h){ | |
5989 MpegEncContext * const s = &h->s; | |
5990 int pps_id= get_ue_golomb(&s->gb); | |
5991 PPS *pps= &h->pps_buffer[pps_id]; | |
5992 | |
5993 pps->sps_id= get_ue_golomb(&s->gb); | |
5994 pps->cabac= get_bits1(&s->gb); | |
5995 pps->pic_order_present= get_bits1(&s->gb); | |
5996 pps->slice_group_count= get_ue_golomb(&s->gb) + 1; | |
5997 if(pps->slice_group_count > 1 ){ | |
5998 pps->mb_slice_group_map_type= get_ue_golomb(&s->gb); | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
5999 av_log(h->s.avctx, AV_LOG_ERROR, "FMO not supported\n"); |
1168 | 6000 switch(pps->mb_slice_group_map_type){ |
6001 case 0: | |
6002 #if 0 | |
6003 | for( i = 0; i <= num_slice_groups_minus1; i++ ) | | | | |
6004 | run_length[ i ] |1 |ue(v) | | |
6005 #endif | |
6006 break; | |
6007 case 2: | |
6008 #if 0 | |
6009 | for( i = 0; i < num_slice_groups_minus1; i++ ) | | | | |
6010 |{ | | | | |
6011 | top_left_mb[ i ] |1 |ue(v) | | |
6012 | bottom_right_mb[ i ] |1 |ue(v) | | |
6013 | } | | | | |
6014 #endif | |
6015 break; | |
6016 case 3: | |
6017 case 4: | |
6018 case 5: | |
6019 #if 0 | |
6020 | slice_group_change_direction_flag |1 |u(1) | | |
6021 | slice_group_change_rate_minus1 |1 |ue(v) | | |
6022 #endif | |
6023 break; | |
6024 case 6: | |
6025 #if 0 | |
6026 | slice_group_id_cnt_minus1 |1 |ue(v) | | |
6027 | for( i = 0; i <= slice_group_id_cnt_minus1; i++ | | | | |
6028 |) | | | | |
6029 | slice_group_id[ i ] |1 |u(v) | | |
6030 #endif | |
1214 | 6031 break; |
1168 | 6032 } |
6033 } | |
6034 pps->ref_count[0]= get_ue_golomb(&s->gb) + 1; | |
6035 pps->ref_count[1]= get_ue_golomb(&s->gb) + 1; | |
6036 if(pps->ref_count[0] > 32 || pps->ref_count[1] > 32){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
6037 av_log(h->s.avctx, AV_LOG_ERROR, "reference overflow (pps)\n"); |
1168 | 6038 return -1; |
6039 } | |
6040 | |
6041 pps->weighted_pred= get_bits1(&s->gb); | |
6042 pps->weighted_bipred_idc= get_bits(&s->gb, 2); | |
6043 pps->init_qp= get_se_golomb(&s->gb) + 26; | |
6044 pps->init_qs= get_se_golomb(&s->gb) + 26; | |
6045 pps->chroma_qp_index_offset= get_se_golomb(&s->gb); | |
6046 pps->deblocking_filter_parameters_present= get_bits1(&s->gb); | |
6047 pps->constrained_intra_pred= get_bits1(&s->gb); | |
6048 pps->redundant_pic_cnt_present = get_bits1(&s->gb); | |
6049 | |
6050 if(s->avctx->debug&FF_DEBUG_PICT_INFO){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
6051 av_log(h->s.avctx, AV_LOG_DEBUG, "pps:%d sps:%d %s slice_groups:%d ref:%d/%d %s qp:%d/%d/%d %s %s %s\n", |
1168 | 6052 pps_id, pps->sps_id, |
6053 pps->cabac ? "CABAC" : "CAVLC", | |
6054 pps->slice_group_count, | |
6055 pps->ref_count[0], pps->ref_count[1], | |
6056 pps->weighted_pred ? "weighted" : "", | |
6057 pps->init_qp, pps->init_qs, pps->chroma_qp_index_offset, | |
6058 pps->deblocking_filter_parameters_present ? "LPAR" : "", | |
6059 pps->constrained_intra_pred ? "CONSTR" : "", | |
1371 | 6060 pps->redundant_pic_cnt_present ? "REDU" : "" |
1168 | 6061 ); |
6062 } | |
6063 | |
6064 return 0; | |
6065 } | |
6066 | |
6067 /** | |
6068 * finds the end of the current frame in the bitstream. | |
6069 * @return the position of the first byte of the next frame, or -1 | |
6070 */ | |
2392 | 6071 static int find_frame_end(H264Context *h, const uint8_t *buf, int buf_size){ |
1187 | 6072 int i; |
1168 | 6073 uint32_t state; |
2392 | 6074 ParseContext *pc = &(h->s.parse_context); |
1168 | 6075 //printf("first %02X%02X%02X%02X\n", buf[0], buf[1],buf[2],buf[3]); |
6076 // mb_addr= pc->mb_addr - 1; | |
6077 state= pc->state; | |
2392 | 6078 for(i=0; i<=buf_size; i++){ |
1168 | 6079 if((state&0xFFFFFF1F) == 0x101 || (state&0xFFFFFF1F) == 0x102 || (state&0xFFFFFF1F) == 0x105){ |
2392 | 6080 tprintf("find_frame_end new startcode = %08x, frame_start_found = %d, pos = %d\n", state, pc->frame_start_found, i); |
1168 | 6081 if(pc->frame_start_found){ |
2392 | 6082 // If there isn't one more byte in the buffer |
6083 // the test on first_mb_in_slice cannot be done yet | |
6084 // do it at next call. | |
6085 if (i >= buf_size) break; | |
6086 if (buf[i] & 0x80) { | |
6087 // first_mb_in_slice is 0, probably the first nal of a new | |
6088 // slice | |
6089 tprintf("find_frame_end frame_end_found, state = %08x, pos = %d\n", state, i); | |
6090 pc->state=-1; | |
6091 pc->frame_start_found= 0; | |
6092 return i-4; | |
6093 } | |
1168 | 6094 } |
2392 | 6095 pc->frame_start_found = 1; |
1168 | 6096 } |
2392 | 6097 if (i<buf_size) |
6098 state= (state<<8) | buf[i]; | |
1168 | 6099 } |
6100 | |
6101 pc->state= state; | |
1219 | 6102 return END_NOT_FOUND; |
1168 | 6103 } |
6104 | |
1988 | 6105 static int h264_parse(AVCodecParserContext *s, |
6106 AVCodecContext *avctx, | |
6107 uint8_t **poutbuf, int *poutbuf_size, | |
6108 const uint8_t *buf, int buf_size) | |
6109 { | |
2392 | 6110 H264Context *h = s->priv_data; |
6111 ParseContext *pc = &h->s.parse_context; | |
1988 | 6112 int next; |
6113 | |
2392 | 6114 next= find_frame_end(h, buf, buf_size); |
1988 | 6115 |
6116 if (ff_combine_frame(pc, next, (uint8_t **)&buf, &buf_size) < 0) { | |
6117 *poutbuf = NULL; | |
6118 *poutbuf_size = 0; | |
6119 return buf_size; | |
6120 } | |
6121 | |
6122 *poutbuf = (uint8_t *)buf; | |
6123 *poutbuf_size = buf_size; | |
6124 return next; | |
6125 } | |
6126 | |
1168 | 6127 static int decode_nal_units(H264Context *h, uint8_t *buf, int buf_size){ |
6128 MpegEncContext * const s = &h->s; | |
6129 AVCodecContext * const avctx= s->avctx; | |
6130 int buf_index=0; | |
1322 | 6131 #if 0 |
1168 | 6132 int i; |
6133 for(i=0; i<32; i++){ | |
6134 printf("%X ", buf[i]); | |
6135 } | |
6136 #endif | |
2392 | 6137 h->slice_num = 0; |
1168 | 6138 for(;;){ |
6139 int consumed; | |
6140 int dst_length; | |
6141 int bit_length; | |
6142 uint8_t *ptr; | |
2227 | 6143 int i, nalsize = 0; |
1168 | 6144 |
2227 | 6145 if(h->is_avc) { |
6146 if(buf_index >= buf_size) break; | |
6147 nalsize = 0; | |
6148 for(i = 0; i < h->nal_length_size; i++) | |
6149 nalsize = (nalsize << 8) | buf[buf_index++]; | |
6150 } else { | |
1168 | 6151 // start code prefix search |
6152 for(; buf_index + 3 < buf_size; buf_index++){ | |
6153 // this should allways succeed in the first iteration | |
6154 if(buf[buf_index] == 0 && buf[buf_index+1] == 0 && buf[buf_index+2] == 1) | |
6155 break; | |
6156 } | |
6157 | |
6158 if(buf_index+3 >= buf_size) break; | |
6159 | |
6160 buf_index+=3; | |
2227 | 6161 } |
1168 | 6162 |
2401
46898a9fd6dc
Fix avc1 if there is nore than one nal per mov frame
rtognimp
parents:
2396
diff
changeset
|
6163 ptr= decode_nal(h, buf + buf_index, &dst_length, &consumed, h->is_avc ? nalsize : buf_size - buf_index); |
1168 | 6164 if(ptr[dst_length - 1] == 0) dst_length--; |
6165 bit_length= 8*dst_length - decode_rbsp_trailing(ptr + dst_length - 1); | |
6166 | |
6167 if(s->avctx->debug&FF_DEBUG_STARTCODE){ | |
2402
f9d4e1eddbc5
- correct several errors on the deblocking accross slice boundaries.
michael
parents:
2401
diff
changeset
|
6168 av_log(h->s.avctx, AV_LOG_DEBUG, "NAL %d at %d/%d length %d\n", h->nal_unit_type, buf_index, buf_size, dst_length); |
1168 | 6169 } |
6170 | |
2227 | 6171 if (h->is_avc && (nalsize != consumed)) |
6172 av_log(h->s.avctx, AV_LOG_ERROR, "AVC: Consumed only %d bytes instead of %d\n", consumed, nalsize); | |
6173 | |
1168 | 6174 buf_index += consumed; |
6175 | |
1956
0eb2947f56f6
h264 hurry up fix and a tiny cabac clean patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1935
diff
changeset
|
6176 if( s->hurry_up == 1 && h->nal_ref_idc == 0 ) |
1168 | 6177 continue; |
6178 | |
6179 switch(h->nal_unit_type){ | |
6180 case NAL_IDR_SLICE: | |
6181 idr(h); //FIXME ensure we dont loose some frames if there is reordering | |
6182 case NAL_SLICE: | |
6183 init_get_bits(&s->gb, ptr, bit_length); | |
6184 h->intra_gb_ptr= | |
6185 h->inter_gb_ptr= &s->gb; | |
6186 s->data_partitioning = 0; | |
6187 | |
6188 if(decode_slice_header(h) < 0) return -1; | |
1956
0eb2947f56f6
h264 hurry up fix and a tiny cabac clean patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1935
diff
changeset
|
6189 if(h->redundant_pic_count==0 && s->hurry_up < 5 ) |
1168 | 6190 decode_slice(h); |
6191 break; | |
6192 case NAL_DPA: | |
6193 init_get_bits(&s->gb, ptr, bit_length); | |
6194 h->intra_gb_ptr= | |
6195 h->inter_gb_ptr= NULL; | |
6196 s->data_partitioning = 1; | |
6197 | |
6198 if(decode_slice_header(h) < 0) return -1; | |
6199 break; | |
6200 case NAL_DPB: | |
6201 init_get_bits(&h->intra_gb, ptr, bit_length); | |
6202 h->intra_gb_ptr= &h->intra_gb; | |
6203 break; | |
6204 case NAL_DPC: | |
6205 init_get_bits(&h->inter_gb, ptr, bit_length); | |
6206 h->inter_gb_ptr= &h->inter_gb; | |
1174 | 6207 |
1956
0eb2947f56f6
h264 hurry up fix and a tiny cabac clean patch by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1935
diff
changeset
|
6208 if(h->redundant_pic_count==0 && h->intra_gb_ptr && s->data_partitioning && s->hurry_up < 5 ) |
1168 | 6209 decode_slice(h); |
6210 break; | |
6211 case NAL_SEI: | |
6212 break; | |
6213 case NAL_SPS: | |
6214 init_get_bits(&s->gb, ptr, bit_length); | |
6215 decode_seq_parameter_set(h); | |
6216 | |
6217 if(s->flags& CODEC_FLAG_LOW_DELAY) | |
6218 s->low_delay=1; | |
6219 | |
6220 avctx->has_b_frames= !s->low_delay; | |
6221 break; | |
6222 case NAL_PPS: | |
6223 init_get_bits(&s->gb, ptr, bit_length); | |
6224 | |
6225 decode_picture_parameter_set(h); | |
6226 | |
6227 break; | |
6228 case NAL_PICTURE_DELIMITER: | |
6229 break; | |
6230 case NAL_FILTER_DATA: | |
6231 break; | |
2099 | 6232 default: |
6233 av_log(avctx, AV_LOG_ERROR, "Unknown NAL code: %d\n", h->nal_unit_type); | |
1168 | 6234 } |
6235 | |
6236 //FIXME move after where irt is set | |
6237 s->current_picture.pict_type= s->pict_type; | |
6238 s->current_picture.key_frame= s->pict_type == I_TYPE; | |
6239 } | |
6240 | |
1174 | 6241 if(!s->current_picture_ptr) return buf_index; //no frame |
6242 | |
1168 | 6243 h->prev_frame_num_offset= h->frame_num_offset; |
6244 h->prev_frame_num= h->frame_num; | |
6245 if(s->current_picture_ptr->reference){ | |
6246 h->prev_poc_msb= h->poc_msb; | |
6247 h->prev_poc_lsb= h->poc_lsb; | |
6248 } | |
6249 if(s->current_picture_ptr->reference) | |
6250 execute_ref_pic_marking(h, h->mmco, h->mmco_index); | |
6251 | |
6252 ff_er_frame_end(s); | |
1897
4e8ed93524f6
h264 loop filter for progressive I&P frames by (Laurent Aimar <fenrir at via dot ecp dot fr>)
michael
parents:
1892
diff
changeset
|
6253 |
1168 | 6254 MPV_frame_end(s); |
6255 | |
6256 return buf_index; | |
6257 } | |
6258 | |
6259 /** | |
6260 * retunrs the number of bytes consumed for building the current frame | |
6261 */ | |
6262 static int get_consumed_bytes(MpegEncContext *s, int pos, int buf_size){ | |
6263 if(s->flags&CODEC_FLAG_TRUNCATED){ | |
6264 pos -= s->parse_context.last_index; | |
6265 if(pos<0) pos=0; // FIXME remove (uneeded?) | |
6266 | |
6267 return pos; | |
6268 }else{ | |
6269 if(pos==0) pos=1; //avoid infinite loops (i doubt thats needed but ...) | |
6270 if(pos+10>buf_size) pos=buf_size; // oops ;) | |
6271 | |
6272 return pos; | |
6273 } | |
6274 } | |
6275 | |
6276 static int decode_frame(AVCodecContext *avctx, | |
6277 void *data, int *data_size, | |
6278 uint8_t *buf, int buf_size) | |
6279 { | |
6280 H264Context *h = avctx->priv_data; | |
6281 MpegEncContext *s = &h->s; | |
6282 AVFrame *pict = data; | |
6283 int buf_index; | |
6284 | |
6285 s->flags= avctx->flags; | |
1754
bdf3927bf8c5
closed gop support & flags2 as all bits in flags are used
michael
parents:
1706
diff
changeset
|
6286 s->flags2= avctx->flags2; |
1168 | 6287 |
6288 /* no supplementary picture */ | |
6289 if (buf_size == 0) { | |
6290 return 0; | |
6291 } | |
6292 | |
6293 if(s->flags&CODEC_FLAG_TRUNCATED){ | |
2392 | 6294 int next= find_frame_end(h, buf, buf_size); |
1168 | 6295 |
1988 | 6296 if( ff_combine_frame(&s->parse_context, next, &buf, &buf_size) < 0 ) |
1168 | 6297 return buf_size; |
6298 //printf("next:%d buf_size:%d last_index:%d\n", next, buf_size, s->parse_context.last_index); | |
6299 } | |
6300 | |
2227 | 6301 if(h->is_avc && !h->got_avcC) { |
6302 int i, cnt, nalsize; | |
6303 unsigned char *p = avctx->extradata; | |
6304 if(avctx->extradata_size < 7) { | |
6305 av_log(avctx, AV_LOG_ERROR, "avcC too short\n"); | |
6306 return -1; | |
6307 } | |
6308 if(*p != 1) { | |
6309 av_log(avctx, AV_LOG_ERROR, "Unknown avcC version %d\n", *p); | |
6310 return -1; | |
6311 } | |
6312 /* sps and pps in the avcC always have length coded with 2 bytes, | |
6313 so put a fake nal_length_size = 2 while parsing them */ | |
6314 h->nal_length_size = 2; | |
6315 // Decode sps from avcC | |
6316 cnt = *(p+5) & 0x1f; // Number of sps | |
6317 p += 6; | |
6318 for (i = 0; i < cnt; i++) { | |
6319 nalsize = BE_16(p) + 2; | |
6320 if(decode_nal_units(h, p, nalsize) != nalsize) { | |
6321 av_log(avctx, AV_LOG_ERROR, "Decoding sps %d from avcC failed\n", i); | |
6322 return -1; | |
6323 } | |
6324 p += nalsize; | |
6325 } | |
6326 // Decode pps from avcC | |
6327 cnt = *(p++); // Number of pps | |
6328 for (i = 0; i < cnt; i++) { | |
6329 nalsize = BE_16(p) + 2; | |
6330 if(decode_nal_units(h, p, nalsize) != nalsize) { | |
6331 av_log(avctx, AV_LOG_ERROR, "Decoding pps %d from avcC failed\n", i); | |
6332 return -1; | |
6333 } | |
6334 p += nalsize; | |
6335 } | |
6336 // Now store right nal length size, that will be use to parse all other nals | |
6337 h->nal_length_size = ((*(((char*)(avctx->extradata))+4))&0x03)+1; | |
6338 // Do not reparse avcC | |
6339 h->got_avcC = 1; | |
6340 } | |
6341 | |
6342 if(!h->is_avc && s->avctx->extradata_size && s->picture_number==0){ | |
1168 | 6343 if(0 < decode_nal_units(h, s->avctx->extradata, s->avctx->extradata_size) ) |
6344 return -1; | |
6345 } | |
6346 | |
6347 buf_index=decode_nal_units(h, buf, buf_size); | |
6348 if(buf_index < 0) | |
6349 return -1; | |
6350 | |
6351 //FIXME do something with unavailable reference frames | |
6352 | |
6353 // if(ret==FRAME_SKIPED) return get_consumed_bytes(s, buf_index, buf_size); | |
1174 | 6354 if(!s->current_picture_ptr){ |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1548
diff
changeset
|
6355 av_log(h->s.avctx, AV_LOG_DEBUG, "error, NO frame\n"); |
1174 | 6356 return -1; |
6357 } | |
6358 | |
2409 | 6359 { |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
6360 //#define DECODE_ORDER |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
6361 Picture *out = s->current_picture_ptr; |
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
6362 #ifndef DECODE_ORDER |
2409 | 6363 /* Sort B-frames into display order |
6364 * FIXME doesn't allow for multiple delayed frames */ | |
6365 Picture *cur = s->current_picture_ptr; | |
6366 Picture *prev = h->delayed_pic[0]; | |
6367 | |
2410
9d780478f8a5
reduce stutter if we learn too late that the stream contains B-frames.
lorenm
parents:
2409
diff
changeset
|
6368 if(s->low_delay |
9d780478f8a5
reduce stutter if we learn too late that the stream contains B-frames.
lorenm
parents:
2409
diff
changeset
|
6369 && (cur->pict_type == B_TYPE |
2409 | 6370 || (!h->sps.gaps_in_frame_num_allowed_flag |
2410
9d780478f8a5
reduce stutter if we learn too late that the stream contains B-frames.
lorenm
parents:
2409
diff
changeset
|
6371 && prev && cur->poc - prev->poc > 2))){ |
2409 | 6372 s->low_delay = 0; |
6373 s->avctx->has_b_frames = 1; | |
2410
9d780478f8a5
reduce stutter if we learn too late that the stream contains B-frames.
lorenm
parents:
2409
diff
changeset
|
6374 if(prev && prev->poc > cur->poc) |
9d780478f8a5
reduce stutter if we learn too late that the stream contains B-frames.
lorenm
parents:
2409
diff
changeset
|
6375 // too late to display this frame |
9d780478f8a5
reduce stutter if we learn too late that the stream contains B-frames.
lorenm
parents:
2409
diff
changeset
|
6376 cur = prev; |
2409 | 6377 } |
6378 | |
6379 if(s->low_delay || !prev || cur->pict_type == B_TYPE) | |
6380 out = cur; | |
2410
9d780478f8a5
reduce stutter if we learn too late that the stream contains B-frames.
lorenm
parents:
2409
diff
changeset
|
6381 else |
2409 | 6382 out = prev; |
2410
9d780478f8a5
reduce stutter if we learn too late that the stream contains B-frames.
lorenm
parents:
2409
diff
changeset
|
6383 if(s->low_delay || !prev || out == prev){ |
9d780478f8a5
reduce stutter if we learn too late that the stream contains B-frames.
lorenm
parents:
2409
diff
changeset
|
6384 if(prev && prev->reference == 1) |
2409 | 6385 prev->reference = 0; |
2410
9d780478f8a5
reduce stutter if we learn too late that the stream contains B-frames.
lorenm
parents:
2409
diff
changeset
|
6386 h->delayed_pic[0] = cur; |
2409 | 6387 } |
2441
358813ec4ca2
H.264 b ref pic list order and long term pictures patch by (Loic Le Loarer <loic.le-loarer polytechnique org>)
michael
parents:
2440
diff
changeset
|
6388 #endif |
2409 | 6389 |
6390 *pict= *(AVFrame*)out; | |
6391 } | |
6392 | |
1706
3ba5c493db6f
motion vector vissualization improvements patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1698
diff
changeset
|
6393 ff_print_debug_info(s, pict); |
1168 | 6394 assert(pict->data[0]); |
6395 //printf("out %d\n", (int)pict->data[0]); | |
6396 #if 0 //? | |
6397 | |
6398 /* Return the Picture timestamp as the frame number */ | |
6399 /* we substract 1 because it is added on utils.c */ | |
6400 avctx->frame_number = s->picture_number - 1; | |
6401 #endif | |
6402 #if 0 | |
6403 /* dont output the last pic after seeking */ | |
6404 if(s->last_picture_ptr || s->low_delay) | |
2392 | 6405 //Note this isnt a issue as a IDR pic should flush the buffers |
1168 | 6406 #endif |
6407 *data_size = sizeof(AVFrame); | |
6408 return get_consumed_bytes(s, buf_index, buf_size); | |
6409 } | |
6410 #if 0 | |
6411 static inline void fill_mb_avail(H264Context *h){ | |
6412 MpegEncContext * const s = &h->s; | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1174
diff
changeset
|
6413 const int mb_xy= s->mb_x + s->mb_y*s->mb_stride; |
1168 | 6414 |
6415 if(s->mb_y){ | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1174
diff
changeset
|
6416 h->mb_avail[0]= s->mb_x && h->slice_table[mb_xy - s->mb_stride - 1] == h->slice_num; |
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1174
diff
changeset
|
6417 h->mb_avail[1]= h->slice_table[mb_xy - s->mb_stride ] == h->slice_num; |
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1174
diff
changeset
|
6418 h->mb_avail[2]= s->mb_x+1 < s->mb_width && h->slice_table[mb_xy - s->mb_stride + 1] == h->slice_num; |
1168 | 6419 }else{ |
6420 h->mb_avail[0]= | |
6421 h->mb_avail[1]= | |
6422 h->mb_avail[2]= 0; | |
6423 } | |
6424 h->mb_avail[3]= s->mb_x && h->slice_table[mb_xy - 1] == h->slice_num; | |
6425 h->mb_avail[4]= 1; //FIXME move out | |
6426 h->mb_avail[5]= 0; //FIXME move out | |
6427 } | |
6428 #endif | |
6429 | |
6430 #if 0 //selftest | |
6431 #define COUNT 8000 | |
6432 #define SIZE (COUNT*40) | |
6433 int main(){ | |
6434 int i; | |
6435 uint8_t temp[SIZE]; | |
6436 PutBitContext pb; | |
6437 GetBitContext gb; | |
6438 // int int_temp[10000]; | |
6439 DSPContext dsp; | |
6440 AVCodecContext avctx; | |
6441 | |
6442 dsputil_init(&dsp, &avctx); | |
6443 | |
1522
79dddc5cd990
removed the obsolete and unused parameters of init_put_bits
alex
parents:
1453
diff
changeset
|
6444 init_put_bits(&pb, temp, SIZE); |
1168 | 6445 printf("testing unsigned exp golomb\n"); |
6446 for(i=0; i<COUNT; i++){ | |
6447 START_TIMER | |
6448 set_ue_golomb(&pb, i); | |
6449 STOP_TIMER("set_ue_golomb"); | |
6450 } | |
6451 flush_put_bits(&pb); | |
6452 | |
6453 init_get_bits(&gb, temp, 8*SIZE); | |
6454 for(i=0; i<COUNT; i++){ | |
6455 int j, s; | |
6456 | |
6457 s= show_bits(&gb, 24); | |
6458 | |
6459 START_TIMER | |
6460 j= get_ue_golomb(&gb); | |
6461 if(j != i){ | |
6462 printf("missmatch! at %d (%d should be %d) bits:%6X\n", i, j, i, s); | |
6463 // return -1; | |
6464 } | |
6465 STOP_TIMER("get_ue_golomb"); | |
6466 } | |
6467 | |
6468 | |
1524 | 6469 init_put_bits(&pb, temp, SIZE); |
1168 | 6470 printf("testing signed exp golomb\n"); |
6471 for(i=0; i<COUNT; i++){ | |
6472 START_TIMER | |
6473 set_se_golomb(&pb, i - COUNT/2); | |
6474 STOP_TIMER("set_se_golomb"); | |
6475 } | |
6476 flush_put_bits(&pb); | |
6477 | |
6478 init_get_bits(&gb, temp, 8*SIZE); | |
6479 for(i=0; i<COUNT; i++){ | |
6480 int j, s; | |
6481 | |
6482 s= show_bits(&gb, 24); | |
6483 | |
6484 START_TIMER | |
6485 j= get_se_golomb(&gb); | |
6486 if(j != i - COUNT/2){ | |
6487 printf("missmatch! at %d (%d should be %d) bits:%6X\n", i, j, i, s); | |
6488 // return -1; | |
6489 } | |
6490 STOP_TIMER("get_se_golomb"); | |
6491 } | |
6492 | |
6493 printf("testing 4x4 (I)DCT\n"); | |
6494 | |
6495 DCTELEM block[16]; | |
6496 uint8_t src[16], ref[16]; | |
6497 uint64_t error= 0, max_error=0; | |
6498 | |
6499 for(i=0; i<COUNT; i++){ | |
6500 int j; | |
6501 // printf("%d %d %d\n", r1, r2, (r2-r1)*16); | |
6502 for(j=0; j<16; j++){ | |
6503 ref[j]= random()%255; | |
6504 src[j]= random()%255; | |
6505 } | |
6506 | |
6507 h264_diff_dct_c(block, src, ref, 4); | |
6508 | |
6509 //normalize | |
6510 for(j=0; j<16; j++){ | |
6511 // printf("%d ", block[j]); | |
6512 block[j]= block[j]*4; | |
6513 if(j&1) block[j]= (block[j]*4 + 2)/5; | |
6514 if(j&4) block[j]= (block[j]*4 + 2)/5; | |
6515 } | |
6516 // printf("\n"); | |
6517 | |
2272
cd43603c46f9
move h264 idct to its own file and call via function pointer in DspContext
michael
parents:
2255
diff
changeset
|
6518 s->dsp.h264_idct_add(ref, block, 4); |
1168 | 6519 /* for(j=0; j<16; j++){ |
6520 printf("%d ", ref[j]); | |
6521 } | |
6522 printf("\n");*/ | |
6523 | |
6524 for(j=0; j<16; j++){ | |
6525 int diff= ABS(src[j] - ref[j]); | |
6526 | |
6527 error+= diff*diff; | |
6528 max_error= FFMAX(max_error, diff); | |
6529 } | |
6530 } | |
6531 printf("error=%f max_error=%d\n", ((float)error)/COUNT/16, (int)max_error ); | |
6532 #if 0 | |
6533 printf("testing quantizer\n"); | |
6534 for(qp=0; qp<52; qp++){ | |
6535 for(i=0; i<16; i++) | |
6536 src1_block[i]= src2_block[i]= random()%255; | |
6537 | |
6538 } | |
6539 #endif | |
6540 printf("Testing NAL layer\n"); | |
6541 | |
6542 uint8_t bitstream[COUNT]; | |
6543 uint8_t nal[COUNT*2]; | |
6544 H264Context h; | |
6545 memset(&h, 0, sizeof(H264Context)); | |
6546 | |
6547 for(i=0; i<COUNT; i++){ | |
6548 int zeros= i; | |
6549 int nal_length; | |
6550 int consumed; | |
6551 int out_length; | |
6552 uint8_t *out; | |
6553 int j; | |
6554 | |
6555 for(j=0; j<COUNT; j++){ | |
6556 bitstream[j]= (random() % 255) + 1; | |
6557 } | |
6558 | |
6559 for(j=0; j<zeros; j++){ | |
6560 int pos= random() % COUNT; | |
6561 while(bitstream[pos] == 0){ | |
6562 pos++; | |
6563 pos %= COUNT; | |
6564 } | |
6565 bitstream[pos]=0; | |
6566 } | |
6567 | |
6568 START_TIMER | |
6569 | |
6570 nal_length= encode_nal(&h, nal, bitstream, COUNT, COUNT*2); | |
6571 if(nal_length<0){ | |
6572 printf("encoding failed\n"); | |
6573 return -1; | |
6574 } | |
6575 | |
6576 out= decode_nal(&h, nal, &out_length, &consumed, nal_length); | |
6577 | |
6578 STOP_TIMER("NAL") | |
6579 | |
6580 if(out_length != COUNT){ | |
6581 printf("incorrect length %d %d\n", out_length, COUNT); | |
6582 return -1; | |
6583 } | |
6584 | |
6585 if(consumed != nal_length){ | |
6586 printf("incorrect consumed length %d %d\n", nal_length, consumed); | |
6587 return -1; | |
6588 } | |
6589 | |
6590 if(memcmp(bitstream, out, COUNT)){ | |
6591 printf("missmatch\n"); | |
6592 return -1; | |
6593 } | |
6594 } | |
6595 | |
6596 printf("Testing RBSP\n"); | |
6597 | |
6598 | |
6599 return 0; | |
6600 } | |
6601 #endif | |
6602 | |
6603 | |
6604 static int decode_end(AVCodecContext *avctx) | |
6605 { | |
6606 H264Context *h = avctx->priv_data; | |
6607 MpegEncContext *s = &h->s; | |
6608 | |
6609 free_tables(h); //FIXME cleanup init stuff perhaps | |
6610 MPV_common_end(s); | |
6611 | |
6612 // memset(h, 0, sizeof(H264Context)); | |
6613 | |
6614 return 0; | |
6615 } | |
6616 | |
6617 | |
6618 AVCodec h264_decoder = { | |
6619 "h264", | |
6620 CODEC_TYPE_VIDEO, | |
6621 CODEC_ID_H264, | |
6622 sizeof(H264Context), | |
6623 decode_init, | |
6624 NULL, | |
6625 decode_end, | |
6626 decode_frame, | |
1214 | 6627 /*CODEC_CAP_DRAW_HORIZ_BAND |*/ CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED, |
1168 | 6628 }; |
6629 | |
1988 | 6630 AVCodecParser h264_parser = { |
6631 { CODEC_ID_H264 }, | |
2392 | 6632 sizeof(H264Context), |
1988 | 6633 NULL, |
6634 h264_parse, | |
6635 ff_parse_close, | |
6636 }; | |
6637 | |
1234 | 6638 #include "svq3.c" |