2 * H.26L/H.264/AVC/JVT/14496-10/... encoder/decoder
3 * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
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.
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.
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
23 * H.264 / AVC / MPEG4 part10 codec.
24 * @author Michael Niedermayer <michaelni@gmx.at>
30 #include "mpegvideo.h"
37 #define interlaced_dct interlaced_dct_is_a_bad_name
38 #define mb_intra mb_intra_isnt_initalized_see_mb_type
40 #define LUMA_DC_BLOCK_INDEX 25
41 #define CHROMA_DC_BLOCK_INDEX 26
43 #define CHROMA_DC_COEFF_TOKEN_VLC_BITS 8
44 #define COEFF_TOKEN_VLC_BITS 8
45 #define TOTAL_ZEROS_VLC_BITS 9
46 #define CHROMA_DC_TOTAL_ZEROS_VLC_BITS 3
47 #define RUN_VLC_BITS 3
48 #define RUN7_VLC_BITS 6
50 #define MAX_SPS_COUNT 32
51 #define MAX_PPS_COUNT 256
53 #define MAX_MMCO_COUNT 66
56 * Sequence parameter set
62 int log2_max_frame_num
; ///< log2_max_frame_num_minus4 + 4
63 int poc_type
; ///< pic_order_cnt_type
64 int log2_max_poc_lsb
; ///< log2_max_pic_order_cnt_lsb_minus4
65 int delta_pic_order_always_zero_flag
;
66 int offset_for_non_ref_pic
;
67 int offset_for_top_to_bottom_field
;
68 int poc_cycle_length
; ///< num_ref_frames_in_pic_order_cnt_cycle
69 int ref_frame_count
; ///< num_ref_frames
70 int gaps_in_frame_num_allowed_flag
;
71 int mb_width
; ///< frame_width_in_mbs_minus1 + 1
72 int mb_height
; ///< frame_height_in_mbs_minus1 + 1
73 int frame_mbs_only_flag
;
74 int mb_aff
; ///<mb_adaptive_frame_field_flag
75 int direct_8x8_inference_flag
;
76 int crop
; ///< frame_cropping_flag
77 int crop_left
; ///< frame_cropping_rect_left_offset
78 int crop_right
; ///< frame_cropping_rect_right_offset
79 int crop_top
; ///< frame_cropping_rect_top_offset
80 int crop_bottom
; ///< frame_cropping_rect_bottom_offset
81 int vui_parameters_present_flag
;
83 short offset_for_ref_frame
[256]; //FIXME dyn aloc?
87 * Picture parameter set
91 int cabac
; ///< entropy_coding_mode_flag
92 int pic_order_present
; ///< pic_order_present_flag
93 int slice_group_count
; ///< num_slice_groups_minus1 + 1
94 int mb_slice_group_map_type
;
95 int ref_count
[2]; ///< num_ref_idx_l0/1_active_minus1 + 1
96 int weighted_pred
; ///< weighted_pred_flag
97 int weighted_bipred_idc
;
98 int init_qp
; ///< pic_init_qp_minus26 + 26
99 int init_qs
; ///< pic_init_qs_minus26 + 26
100 int chroma_qp_index_offset
;
101 int deblocking_filter_parameters_present
; ///< deblocking_filter_parameters_present_flag
102 int constrained_intra_pred
; ///< constrained_intra_pred_flag
103 int redundant_pic_cnt_present
; ///< redundant_pic_cnt_present_flag
107 * Memory management control operation opcode.
109 typedef enum MMCOOpcode
{
120 * Memory management control operation.
131 typedef struct H264Context
{
139 #define NAL_IDR_SLICE 5
143 #define NAL_PICTURE_DELIMITER 9
144 #define NAL_FILTER_DATA 10
145 uint8_t *rbsp_buffer
;
146 int rbsp_buffer_size
;
150 int prev_mb_skiped
; //FIXME remove (IMHO not used)
153 int chroma_pred_mode
;
154 int intra16x16_pred_mode
;
156 int8_t intra4x4_pred_mode_cache
[5*8];
157 int8_t (*intra4x4_pred_mode
)[8];
158 void (*pred4x4
[9+3])(uint8_t *src
, uint8_t *topright
, int stride
);//FIXME move to dsp?
159 void (*pred8x8
[4+3])(uint8_t *src
, int stride
);
160 void (*pred16x16
[4+3])(uint8_t *src
, int stride
);
161 unsigned int topleft_samples_available
;
162 unsigned int top_samples_available
;
163 unsigned int topright_samples_available
;
164 unsigned int left_samples_available
;
167 * non zero coeff count cache.
168 * is 64 if not available.
170 uint8_t non_zero_count_cache
[6*8];
171 uint8_t (*non_zero_count
)[16];
174 * Motion vector cache.
176 int16_t mv_cache
[2][5*8][2];
177 int8_t ref_cache
[2][5*8];
178 #define LIST_NOT_USED -1 //FIXME rename?
179 #define PART_NOT_AVAILABLE -2
182 * is 1 if the specific list MV&references are set to 0,0,-2.
184 int mv_cache_clean
[2];
186 int block_offset
[16+8];
187 int chroma_subblock_offset
[16]; //FIXME remove
189 uint16_t *mb2b_xy
; //FIXME are these 4 a good idea?
197 int unknown_svq3_flag
;
198 int next_slice_index
;
200 SPS sps_buffer
[MAX_SPS_COUNT
];
201 SPS sps
; ///< current sps
203 PPS pps_buffer
[MAX_PPS_COUNT
];
207 PPS pps
; //FIXME move tp Picture perhaps? (->no) do we need that?
210 uint8_t *slice_table_base
;
211 uint8_t *slice_table
; ///< slice_table_base + mb_stride + 1
213 int slice_type_fixed
;
215 //interlacing specific flags
216 int mb_field_decoding_flag
;
223 int delta_poc_bottom
;
226 int prev_poc_msb
; ///< poc_msb of the last reference pic for POC type 0
227 int prev_poc_lsb
; ///< poc_lsb of the last reference pic for POC type 0
228 int frame_num_offset
; ///< for POC type 2
229 int prev_frame_num_offset
; ///< for POC type 2
230 int prev_frame_num
; ///< frame_num of the last pic for POC type 1/2
233 * frame_num for frames or 2*frame_num for field pics.
238 * max_frame_num or 2*max_frame_num for field pics.
242 //Weighted pred stuff
243 int luma_log2_weight_denom
;
244 int chroma_log2_weight_denom
;
245 int luma_weight
[2][16];
246 int luma_offset
[2][16];
247 int chroma_weight
[2][16][2];
248 int chroma_offset
[2][16][2];
251 int disable_deblocking_filter_idc
;
252 int slice_alpha_c0_offset_div2
;
253 int slice_beta_offset_div2
;
255 int redundant_pic_count
;
257 int direct_spatial_mv_pred
;
260 * num_ref_idx_l0/1_active_minus1 + 1
262 int ref_count
[2];// FIXME split for AFF
263 Picture
*short_ref
[16];
264 Picture
*long_ref
[16];
265 Picture default_ref_list
[2][32];
266 Picture ref_list
[2][32]; //FIXME size?
267 Picture field_ref_list
[2][32]; //FIXME size?
270 * memory management control operations buffer.
272 MMCO mmco
[MAX_MMCO_COUNT
];
275 int long_ref_count
; ///< number of actual long term references
276 int short_ref_count
; ///< number of actual short term references
279 GetBitContext intra_gb
;
280 GetBitContext inter_gb
;
281 GetBitContext
*intra_gb_ptr
;
282 GetBitContext
*inter_gb_ptr
;
284 DCTELEM mb
[16*24] __align8
;
287 static VLC coeff_token_vlc
[4];
288 static VLC chroma_dc_coeff_token_vlc
;
290 static VLC total_zeros_vlc
[15];
291 static VLC chroma_dc_total_zeros_vlc
[3];
293 static VLC run_vlc
[6];
296 static void svq3_luma_dc_dequant_idct_c(DCTELEM
*block
, int qp
);
297 static void svq3_add_idct_c(uint8_t *dst
, DCTELEM
*block
, int stride
, int qp
, int dc
);
299 static inline uint32_t pack16to32(int a
, int b
){
300 #ifdef WORDS_BIGENDIAN
301 return (b
&0xFFFF) + (a
<<16);
303 return (a
&0xFFFF) + (b
<<16);
309 * @param h height of the recatangle, should be a constant
310 * @param w width of the recatangle, should be a constant
311 * @param size the size of val (1 or 4), should be a constant
313 static inline void fill_rectangle(void *vp
, int w
, int h
, int stride
, uint32_t val
, int size
){ //FIXME ensure this IS inlined
314 uint8_t *p
= (uint8_t*)vp
;
315 assert(size
==1 || size
==4);
320 //FIXME check what gcc generates for 64 bit on x86 and possible write a 32 bit ver of it
323 *(uint16_t*)(p
+ stride
)= size
==4 ? val
: val
*0x0101;
324 }else if(w
==2 && h
==4){
325 *(uint16_t*)(p
+ 0*stride
)=
326 *(uint16_t*)(p
+ 1*stride
)=
327 *(uint16_t*)(p
+ 2*stride
)=
328 *(uint16_t*)(p
+ 3*stride
)= size
==4 ? val
: val
*0x0101;
329 }else if(w
==4 && h
==1){
330 *(uint32_t*)(p
+ 0*stride
)= size
==4 ? val
: val
*0x01010101;
331 }else if(w
==4 && h
==2){
332 *(uint32_t*)(p
+ 0*stride
)=
333 *(uint32_t*)(p
+ 1*stride
)= size
==4 ? val
: val
*0x01010101;
334 }else if(w
==4 && h
==4){
335 *(uint32_t*)(p
+ 0*stride
)=
336 *(uint32_t*)(p
+ 1*stride
)=
337 *(uint32_t*)(p
+ 2*stride
)=
338 *(uint32_t*)(p
+ 3*stride
)= size
==4 ? val
: val
*0x01010101;
339 }else if(w
==8 && h
==1){
341 *(uint32_t*)(p
+ 4)= size
==4 ? val
: val
*0x01010101;
342 }else if(w
==8 && h
==2){
343 *(uint32_t*)(p
+ 0 + 0*stride
)=
344 *(uint32_t*)(p
+ 4 + 0*stride
)=
345 *(uint32_t*)(p
+ 0 + 1*stride
)=
346 *(uint32_t*)(p
+ 4 + 1*stride
)= size
==4 ? val
: val
*0x01010101;
347 }else if(w
==8 && h
==4){
348 *(uint64_t*)(p
+ 0*stride
)=
349 *(uint64_t*)(p
+ 1*stride
)=
350 *(uint64_t*)(p
+ 2*stride
)=
351 *(uint64_t*)(p
+ 3*stride
)= size
==4 ? val
*0x0100000001ULL
: val
*0x0101010101010101ULL
;
352 }else if(w
==16 && h
==2){
353 *(uint64_t*)(p
+ 0+0*stride
)=
354 *(uint64_t*)(p
+ 8+0*stride
)=
355 *(uint64_t*)(p
+ 0+1*stride
)=
356 *(uint64_t*)(p
+ 8+1*stride
)= size
==4 ? val
*0x0100000001ULL
: val
*0x0101010101010101ULL
;
357 }else if(w
==16 && h
==4){
358 *(uint64_t*)(p
+ 0+0*stride
)=
359 *(uint64_t*)(p
+ 8+0*stride
)=
360 *(uint64_t*)(p
+ 0+1*stride
)=
361 *(uint64_t*)(p
+ 8+1*stride
)=
362 *(uint64_t*)(p
+ 0+2*stride
)=
363 *(uint64_t*)(p
+ 8+2*stride
)=
364 *(uint64_t*)(p
+ 0+3*stride
)=
365 *(uint64_t*)(p
+ 8+3*stride
)= size
==4 ? val
*0x0100000001ULL
: val
*0x0101010101010101ULL
;
370 static inline void fill_caches(H264Context
*h
, int mb_type
){
371 MpegEncContext
* const s
= &h
->s
;
372 const int mb_xy
= s
->mb_x
+ s
->mb_y
*s
->mb_stride
;
373 int topleft_xy
, top_xy
, topright_xy
, left_xy
[2];
374 int topleft_type
, top_type
, topright_type
, left_type
[2];
378 //wow what a mess, why didnt they simplify the interlacing&intra stuff, i cant imagine that these complex rules are worth it
382 topleft_xy
= 0; /* avoid warning */
383 top_xy
= 0; /* avoid warning */
384 topright_xy
= 0; /* avoid warning */
386 topleft_xy
= mb_xy
-1 - s
->mb_stride
;
387 top_xy
= mb_xy
- s
->mb_stride
;
388 topright_xy
= mb_xy
+1 - s
->mb_stride
;
389 left_xy
[0] = mb_xy
-1;
390 left_xy
[1] = mb_xy
-1;
397 topleft_type
= h
->slice_table
[topleft_xy
] == h
->slice_num ? s
->current_picture
.mb_type
[topleft_xy
] : 0;
398 top_type
= h
->slice_table
[top_xy
] == h
->slice_num ? s
->current_picture
.mb_type
[top_xy
] : 0;
399 topright_type
= h
->slice_table
[topright_xy
] == h
->slice_num ? s
->current_picture
.mb_type
[topright_xy
]: 0;
400 left_type
[0] = h
->slice_table
[left_xy
[0] ] == h
->slice_num ? s
->current_picture
.mb_type
[left_xy
[0]] : 0;
401 left_type
[1] = h
->slice_table
[left_xy
[1] ] == h
->slice_num ? s
->current_picture
.mb_type
[left_xy
[1]] : 0;
403 if(IS_INTRA(mb_type
)){
404 h
->topleft_samples_available
=
405 h
->top_samples_available
=
406 h
->left_samples_available
= 0xFFFF;
407 h
->topright_samples_available
= 0xEEEA;
409 if(!IS_INTRA(top_type
) && (top_type
==0 || h
->pps
.constrained_intra_pred
)){
410 h
->topleft_samples_available
= 0xB3FF;
411 h
->top_samples_available
= 0x33FF;
412 h
->topright_samples_available
= 0x26EA;
415 if(!IS_INTRA(left_type
[i
]) && (left_type
[i
]==0 || h
->pps
.constrained_intra_pred
)){
416 h
->topleft_samples_available
&= 0xDF5F;
417 h
->left_samples_available
&= 0x5F5F;
421 if(!IS_INTRA(topleft_type
) && (topleft_type
==0 || h
->pps
.constrained_intra_pred
))
422 h
->topleft_samples_available
&= 0x7FFF;
424 if(!IS_INTRA(topright_type
) && (topright_type
==0 || h
->pps
.constrained_intra_pred
))
425 h
->topright_samples_available
&= 0xFBFF;
427 if(IS_INTRA4x4(mb_type
)){
428 if(IS_INTRA4x4(top_type
)){
429 h
->intra4x4_pred_mode_cache
[4+8*0]= h
->intra4x4_pred_mode
[top_xy
][4];
430 h
->intra4x4_pred_mode_cache
[5+8*0]= h
->intra4x4_pred_mode
[top_xy
][5];
431 h
->intra4x4_pred_mode_cache
[6+8*0]= h
->intra4x4_pred_mode
[top_xy
][6];
432 h
->intra4x4_pred_mode_cache
[7+8*0]= h
->intra4x4_pred_mode
[top_xy
][3];
435 if(IS_INTRA16x16(top_type
) || (IS_INTER(top_type
) && !h
->pps
.constrained_intra_pred
))
440 h
->intra4x4_pred_mode_cache
[4+8*0]=
441 h
->intra4x4_pred_mode_cache
[5+8*0]=
442 h
->intra4x4_pred_mode_cache
[6+8*0]=
443 h
->intra4x4_pred_mode_cache
[7+8*0]= pred
;
446 if(IS_INTRA4x4(left_type
[i
])){
447 h
->intra4x4_pred_mode_cache
[3+8*1 + 2*8*i
]= h
->intra4x4_pred_mode
[left_xy
[i
]][left_block
[0+2*i
]];
448 h
->intra4x4_pred_mode_cache
[3+8*2 + 2*8*i
]= h
->intra4x4_pred_mode
[left_xy
[i
]][left_block
[1+2*i
]];
451 if(IS_INTRA16x16(left_type
[i
]) || (IS_INTER(left_type
[i
]) && !h
->pps
.constrained_intra_pred
))
456 h
->intra4x4_pred_mode_cache
[3+8*1 + 2*8*i
]=
457 h
->intra4x4_pred_mode_cache
[3+8*2 + 2*8*i
]= pred
;
472 //FIXME constraint_intra_pred & partitioning & nnz (lets hope this is just a typo in the spec)
474 h
->non_zero_count_cache
[4+8*0]= h
->non_zero_count
[top_xy
][0];
475 h
->non_zero_count_cache
[5+8*0]= h
->non_zero_count
[top_xy
][1];
476 h
->non_zero_count_cache
[6+8*0]= h
->non_zero_count
[top_xy
][2];
477 h
->non_zero_count_cache
[7+8*0]= h
->non_zero_count
[top_xy
][3];
479 h
->non_zero_count_cache
[1+8*0]= h
->non_zero_count
[top_xy
][7];
480 h
->non_zero_count_cache
[2+8*0]= h
->non_zero_count
[top_xy
][8];
482 h
->non_zero_count_cache
[1+8*3]= h
->non_zero_count
[top_xy
][10];
483 h
->non_zero_count_cache
[2+8*3]= h
->non_zero_count
[top_xy
][11];
485 h
->non_zero_count_cache
[4+8*0]=
486 h
->non_zero_count_cache
[5+8*0]=
487 h
->non_zero_count_cache
[6+8*0]=
488 h
->non_zero_count_cache
[7+8*0]=
490 h
->non_zero_count_cache
[1+8*0]=
491 h
->non_zero_count_cache
[2+8*0]=
493 h
->non_zero_count_cache
[1+8*3]=
494 h
->non_zero_count_cache
[2+8*3]= 64;
498 h
->non_zero_count_cache
[3+8*1]= h
->non_zero_count
[left_xy
[0]][6];
499 h
->non_zero_count_cache
[3+8*2]= h
->non_zero_count
[left_xy
[0]][5];
500 h
->non_zero_count_cache
[0+8*1]= h
->non_zero_count
[left_xy
[0]][9]; //FIXME left_block
501 h
->non_zero_count_cache
[0+8*4]= h
->non_zero_count
[left_xy
[0]][12];
503 h
->non_zero_count_cache
[3+8*1]=
504 h
->non_zero_count_cache
[3+8*2]=
505 h
->non_zero_count_cache
[0+8*1]=
506 h
->non_zero_count_cache
[0+8*4]= 64;
510 h
->non_zero_count_cache
[3+8*3]= h
->non_zero_count
[left_xy
[1]][4];
511 h
->non_zero_count_cache
[3+8*4]= h
->non_zero_count
[left_xy
[1]][3];
512 h
->non_zero_count_cache
[0+8*2]= h
->non_zero_count
[left_xy
[1]][8];
513 h
->non_zero_count_cache
[0+8*5]= h
->non_zero_count
[left_xy
[1]][11];
515 h
->non_zero_count_cache
[3+8*3]=
516 h
->non_zero_count_cache
[3+8*4]=
517 h
->non_zero_count_cache
[0+8*2]=
518 h
->non_zero_count_cache
[0+8*5]= 64;
522 if(IS_INTER(mb_type
)){
524 for(list
=0; list
<2; list
++){
525 if((!IS_8X8(mb_type
)) && !USES_LIST(mb_type
, list
)){
526 /*if(!h->mv_cache_clean[list]){
527 memset(h->mv_cache [list], 0, 8*5*2*sizeof(int16_t)); //FIXME clean only input? clean at all?
528 memset(h->ref_cache[list], PART_NOT_AVAILABLE, 8*5*sizeof(int8_t));
529 h->mv_cache_clean[list]= 1;
531 continue; //FIXME direct mode ...
533 h
->mv_cache_clean
[list
]= 0;
535 if(IS_INTER(topleft_type
)){
536 const int b_xy
= h
->mb2b_xy
[topleft_xy
] + 3 + 3*h
->b_stride
;
537 const int b8_xy
= h
->mb2b8_xy
[topleft_xy
] + 1 + h
->b8_stride
;
538 *(uint32_t*)h
->mv_cache
[list
][scan8
[0] - 1 - 1*8]= *(uint32_t*)s
->current_picture
.motion_val
[list
][b_xy
];
539 h
->ref_cache
[list
][scan8
[0] - 1 - 1*8]= s
->current_picture
.ref_index
[list
][b8_xy
];
541 *(uint32_t*)h
->mv_cache
[list
][scan8
[0] - 1 - 1*8]= 0;
542 h
->ref_cache
[list
][scan8
[0] - 1 - 1*8]= topleft_type ? LIST_NOT_USED
: PART_NOT_AVAILABLE
;
545 if(IS_INTER(top_type
)){
546 const int b_xy
= h
->mb2b_xy
[top_xy
] + 3*h
->b_stride
;
547 const int b8_xy
= h
->mb2b8_xy
[top_xy
] + h
->b8_stride
;
548 *(uint32_t*)h
->mv_cache
[list
][scan8
[0] + 0 - 1*8]= *(uint32_t*)s
->current_picture
.motion_val
[list
][b_xy
+ 0];
549 *(uint32_t*)h
->mv_cache
[list
][scan8
[0] + 1 - 1*8]= *(uint32_t*)s
->current_picture
.motion_val
[list
][b_xy
+ 1];
550 *(uint32_t*)h
->mv_cache
[list
][scan8
[0] + 2 - 1*8]= *(uint32_t*)s
->current_picture
.motion_val
[list
][b_xy
+ 2];
551 *(uint32_t*)h
->mv_cache
[list
][scan8
[0] + 3 - 1*8]= *(uint32_t*)s
->current_picture
.motion_val
[list
][b_xy
+ 3];
552 h
->ref_cache
[list
][scan8
[0] + 0 - 1*8]=
553 h
->ref_cache
[list
][scan8
[0] + 1 - 1*8]= s
->current_picture
.ref_index
[list
][b8_xy
+ 0];
554 h
->ref_cache
[list
][scan8
[0] + 2 - 1*8]=
555 h
->ref_cache
[list
][scan8
[0] + 3 - 1*8]= s
->current_picture
.ref_index
[list
][b8_xy
+ 1];
557 *(uint32_t*)h
->mv_cache
[list
][scan8
[0] + 0 - 1*8]=
558 *(uint32_t*)h
->mv_cache
[list
][scan8
[0] + 1 - 1*8]=
559 *(uint32_t*)h
->mv_cache
[list
][scan8
[0] + 2 - 1*8]=
560 *(uint32_t*)h
->mv_cache
[list
][scan8
[0] + 3 - 1*8]= 0;
561 *(uint32_t*)&h
->ref_cache
[list
][scan8
[0] + 0 - 1*8]= ((top_type ? LIST_NOT_USED
: PART_NOT_AVAILABLE
)&0xFF)*0x01010101;
564 if(IS_INTER(topright_type
)){
565 const int b_xy
= h
->mb2b_xy
[topright_xy
] + 3*h
->b_stride
;
566 const int b8_xy
= h
->mb2b8_xy
[topright_xy
] + h
->b8_stride
;
567 *(uint32_t*)h
->mv_cache
[list
][scan8
[0] + 4 - 1*8]= *(uint32_t*)s
->current_picture
.motion_val
[list
][b_xy
];
568 h
->ref_cache
[list
][scan8
[0] + 4 - 1*8]= s
->current_picture
.ref_index
[list
][b8_xy
];
570 *(uint32_t*)h
->mv_cache
[list
][scan8
[0] + 4 - 1*8]= 0;
571 h
->ref_cache
[list
][scan8
[0] + 4 - 1*8]= topright_type ? LIST_NOT_USED
: PART_NOT_AVAILABLE
;
574 //FIXME unify cleanup or sth
575 if(IS_INTER(left_type
[0])){
576 const int b_xy
= h
->mb2b_xy
[left_xy
[0]] + 3;
577 const int b8_xy
= h
->mb2b8_xy
[left_xy
[0]] + 1;
578 *(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]];
579 *(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]];
580 h
->ref_cache
[list
][scan8
[0] - 1 + 0*8]=
581 h
->ref_cache
[list
][scan8
[0] - 1 + 1*8]= s
->current_picture
.ref_index
[list
][b8_xy
+ h
->b8_stride
*(left_block
[0]>>1)];
583 *(uint32_t*)h
->mv_cache
[list
][scan8
[0] - 1 + 0*8]=
584 *(uint32_t*)h
->mv_cache
[list
][scan8
[0] - 1 + 1*8]= 0;
585 h
->ref_cache
[list
][scan8
[0] - 1 + 0*8]=
586 h
->ref_cache
[list
][scan8
[0] - 1 + 1*8]= left_type
[0] ? LIST_NOT_USED
: PART_NOT_AVAILABLE
;
589 if(IS_INTER(left_type
[1])){
590 const int b_xy
= h
->mb2b_xy
[left_xy
[1]] + 3;
591 const int b8_xy
= h
->mb2b8_xy
[left_xy
[1]] + 1;
592 *(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]];
593 *(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]];
594 h
->ref_cache
[list
][scan8
[0] - 1 + 2*8]=
595 h
->ref_cache
[list
][scan8
[0] - 1 + 3*8]= s
->current_picture
.ref_index
[list
][b8_xy
+ h
->b8_stride
*(left_block
[2]>>1)];
597 *(uint32_t*)h
->mv_cache
[list
][scan8
[0] - 1 + 2*8]=
598 *(uint32_t*)h
->mv_cache
[list
][scan8
[0] - 1 + 3*8]= 0;
599 h
->ref_cache
[list
][scan8
[0] - 1 + 2*8]=
600 h
->ref_cache
[list
][scan8
[0] - 1 + 3*8]= left_type
[0] ? LIST_NOT_USED
: PART_NOT_AVAILABLE
;
603 h
->ref_cache
[list
][scan8
[5 ]+1] =
604 h
->ref_cache
[list
][scan8
[7 ]+1] =
605 h
->ref_cache
[list
][scan8
[13]+1] = //FIXME remove past 3 (init somewher else)
606 h
->ref_cache
[list
][scan8
[4 ]] =
607 h
->ref_cache
[list
][scan8
[12]] = PART_NOT_AVAILABLE
;
608 *(uint32_t*)h
->mv_cache
[list
][scan8
[5 ]+1]=
609 *(uint32_t*)h
->mv_cache
[list
][scan8
[7 ]+1]=
610 *(uint32_t*)h
->mv_cache
[list
][scan8
[13]+1]= //FIXME remove past 3 (init somewher else)
611 *(uint32_t*)h
->mv_cache
[list
][scan8
[4 ]]=
612 *(uint32_t*)h
->mv_cache
[list
][scan8
[12]]= 0;
620 static inline void write_back_intra_pred_mode(H264Context
*h
){
621 MpegEncContext
* const s
= &h
->s
;
622 const int mb_xy
= s
->mb_x
+ s
->mb_y
*s
->mb_stride
;
624 h
->intra4x4_pred_mode
[mb_xy
][0]= h
->intra4x4_pred_mode_cache
[7+8*1];
625 h
->intra4x4_pred_mode
[mb_xy
][1]= h
->intra4x4_pred_mode_cache
[7+8*2];
626 h
->intra4x4_pred_mode
[mb_xy
][2]= h
->intra4x4_pred_mode_cache
[7+8*3];
627 h
->intra4x4_pred_mode
[mb_xy
][3]= h
->intra4x4_pred_mode_cache
[7+8*4];
628 h
->intra4x4_pred_mode
[mb_xy
][4]= h
->intra4x4_pred_mode_cache
[4+8*4];
629 h
->intra4x4_pred_mode
[mb_xy
][5]= h
->intra4x4_pred_mode_cache
[5+8*4];
630 h
->intra4x4_pred_mode
[mb_xy
][6]= h
->intra4x4_pred_mode_cache
[6+8*4];
634 * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks.
636 static inline int check_intra4x4_pred_mode(H264Context
*h
){
637 MpegEncContext
* const s
= &h
->s
;
638 static const int8_t top
[12]= {-1, 0,LEFT_DC_PRED
,-1,-1,-1,-1,-1, 0};
639 static const int8_t left
[12]= { 0,-1, TOP_DC_PRED
, 0,-1,-1,-1, 0,-1,DC_128_PRED
};
642 if(!(h
->top_samples_available
&0x8000)){
644 int status
= top
[ h
->intra4x4_pred_mode_cache
[scan8
[0] + i
] ];
646 fprintf(stderr
, "top block unavailable for requested intra4x4 mode %d at %d %d\n", status
, s
->mb_x
, s
->mb_y
);
649 h
->intra4x4_pred_mode_cache
[scan8
[0] + i
]= status
;
654 if(!(h
->left_samples_available
&0x8000)){
656 int status
= left
[ h
->intra4x4_pred_mode_cache
[scan8
[0] + 8*i
] ];
658 fprintf(stderr
, "left block unavailable for requested intra4x4 mode %d at %d %d\n", status
, s
->mb_x
, s
->mb_y
);
661 h
->intra4x4_pred_mode_cache
[scan8
[0] + 8*i
]= status
;
667 } //FIXME cleanup like next
670 * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks.
672 static inline int check_intra_pred_mode(H264Context
*h
, int mode
){
673 MpegEncContext
* const s
= &h
->s
;
674 static const int8_t top
[7]= {LEFT_DC_PRED8x8
, 1,-1,-1};
675 static const int8_t left
[7]= { TOP_DC_PRED8x8
,-1, 2,-1,DC_128_PRED8x8
};
677 if(!(h
->top_samples_available
&0x8000)){
680 fprintf(stderr
, "top block unavailable for requested intra mode at %d %d\n", s
->mb_x
, s
->mb_y
);
685 if(!(h
->left_samples_available
&0x8000)){
688 fprintf(stderr
, "left block unavailable for requested intra mode at %d %d\n", s
->mb_x
, s
->mb_y
);
697 * gets the predicted intra4x4 prediction mode.
699 static inline int pred_intra_mode(H264Context
*h
, int n
){
700 const int index8
= scan8
[n
];
701 const int left
= h
->intra4x4_pred_mode_cache
[index8
- 1];
702 const int top
= h
->intra4x4_pred_mode_cache
[index8
- 8];
703 const int min
= FFMIN(left
, top
);
705 tprintf("mode:%d %d min:%d\n", left
,top
, min
);
707 if(min
<0) return DC_PRED
;
711 static inline void write_back_non_zero_count(H264Context
*h
){
712 MpegEncContext
* const s
= &h
->s
;
713 const int mb_xy
= s
->mb_x
+ s
->mb_y
*s
->mb_stride
;
715 h
->non_zero_count
[mb_xy
][0]= h
->non_zero_count_cache
[4+8*4];
716 h
->non_zero_count
[mb_xy
][1]= h
->non_zero_count_cache
[5+8*4];
717 h
->non_zero_count
[mb_xy
][2]= h
->non_zero_count_cache
[6+8*4];
718 h
->non_zero_count
[mb_xy
][3]= h
->non_zero_count_cache
[7+8*4];
719 h
->non_zero_count
[mb_xy
][4]= h
->non_zero_count_cache
[7+8*3];
720 h
->non_zero_count
[mb_xy
][5]= h
->non_zero_count_cache
[7+8*2];
721 h
->non_zero_count
[mb_xy
][6]= h
->non_zero_count_cache
[7+8*1];
723 h
->non_zero_count
[mb_xy
][7]= h
->non_zero_count_cache
[1+8*2];
724 h
->non_zero_count
[mb_xy
][8]= h
->non_zero_count_cache
[2+8*2];
725 h
->non_zero_count
[mb_xy
][9]= h
->non_zero_count_cache
[2+8*1];
727 h
->non_zero_count
[mb_xy
][10]=h
->non_zero_count_cache
[1+8*5];
728 h
->non_zero_count
[mb_xy
][11]=h
->non_zero_count_cache
[2+8*5];
729 h
->non_zero_count
[mb_xy
][12]=h
->non_zero_count_cache
[2+8*4];
733 * gets the predicted number of non zero coefficients.
734 * @param n block index
736 static inline int pred_non_zero_count(H264Context
*h
, int n
){
737 const int index8
= scan8
[n
];
738 const int left
= h
->non_zero_count_cache
[index8
- 1];
739 const int top
= h
->non_zero_count_cache
[index8
- 8];
742 if(i
<64) i
= (i
+1)>>1;
744 tprintf("pred_nnz L%X T%X n%d s%d P%X\n", left
, top
, n
, scan8
[n
], i
&31);
749 static inline int fetch_diagonal_mv(H264Context
*h
, const int16_t **C
, int i
, int list
, int part_width
){
750 const int topright_ref
= h
->ref_cache
[list
][ i
- 8 + part_width
];
752 if(topright_ref
!= PART_NOT_AVAILABLE
){
753 *C
= h
->mv_cache
[list
][ i
- 8 + part_width
];
756 tprintf("topright MV not available\n");
758 *C
= h
->mv_cache
[list
][ i
- 8 - 1 ];
759 return h
->ref_cache
[list
][ i
- 8 - 1 ];
764 * gets the predicted MV.
765 * @param n the block index
766 * @param part_width the width of the partition (4, 8,16) -> (1, 2, 4)
767 * @param mx the x component of the predicted motion vector
768 * @param my the y component of the predicted motion vector
770 static inline void pred_motion(H264Context
* const h
, int n
, int part_width
, int list
, int ref
, int * const mx
, int * const my
){
771 const int index8
= scan8
[n
];
772 const int top_ref
= h
->ref_cache
[list
][ index8
- 8 ];
773 const int left_ref
= h
->ref_cache
[list
][ index8
- 1 ];
774 const int16_t * const A
= h
->mv_cache
[list
][ index8
- 1 ];
775 const int16_t * const B
= h
->mv_cache
[list
][ index8
- 8 ];
777 int diagonal_ref
, match_count
;
779 assert(part_width
==1 || part_width
==2 || part_width
==4);
789 diagonal_ref
= fetch_diagonal_mv(h
, &C
, index8
, list
, part_width
);
790 match_count
= (diagonal_ref
==ref
) + (top_ref
==ref
) + (left_ref
==ref
);
791 if(match_count
> 1){ //most common
792 *mx
= mid_pred(A
[0], B
[0], C
[0]);
793 *my
= mid_pred(A
[1], B
[1], C
[1]);
794 }else if(match_count
==1){
798 }else if(top_ref
==ref
){
806 if(top_ref
== PART_NOT_AVAILABLE
&& diagonal_ref
== PART_NOT_AVAILABLE
&& left_ref
!= PART_NOT_AVAILABLE
){
810 *mx
= mid_pred(A
[0], B
[0], C
[0]);
811 *my
= mid_pred(A
[1], B
[1], C
[1]);
815 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
);
819 * gets the directionally predicted 16x8 MV.
820 * @param n the block index
821 * @param mx the x component of the predicted motion vector
822 * @param my the y component of the predicted motion vector
824 static inline void pred_16x8_motion(H264Context
* const h
, int n
, int list
, int ref
, int * const mx
, int * const my
){
826 const int top_ref
= h
->ref_cache
[list
][ scan8
[0] - 8 ];
827 const int16_t * const B
= h
->mv_cache
[list
][ scan8
[0] - 8 ];
829 tprintf("pred_16x8: (%2d %2d %2d) at %2d %2d %d list %d", top_ref
, B
[0], B
[1], h
->s
.mb_x
, h
->s
.mb_y
, n
, list
);
837 const int left_ref
= h
->ref_cache
[list
][ scan8
[8] - 1 ];
838 const int16_t * const A
= h
->mv_cache
[list
][ scan8
[8] - 1 ];
840 tprintf("pred_16x8: (%2d %2d %2d) at %2d %2d %d list %d", left_ref
, A
[0], A
[1], h
->s
.mb_x
, h
->s
.mb_y
, n
, list
);
850 pred_motion(h
, n
, 4, list
, ref
, mx
, my
);
854 * gets the directionally predicted 8x16 MV.
855 * @param n the block index
856 * @param mx the x component of the predicted motion vector
857 * @param my the y component of the predicted motion vector
859 static inline void pred_8x16_motion(H264Context
* const h
, int n
, int list
, int ref
, int * const mx
, int * const my
){
861 const int left_ref
= h
->ref_cache
[list
][ scan8
[0] - 1 ];
862 const int16_t * const A
= h
->mv_cache
[list
][ scan8
[0] - 1 ];
864 tprintf("pred_8x16: (%2d %2d %2d) at %2d %2d %d list %d", left_ref
, A
[0], A
[1], h
->s
.mb_x
, h
->s
.mb_y
, n
, list
);
875 diagonal_ref
= fetch_diagonal_mv(h
, &C
, scan8
[4], list
, 2);
877 tprintf("pred_8x16: (%2d %2d %2d) at %2d %2d %d list %d", diagonal_ref
, C
[0], C
[1], h
->s
.mb_x
, h
->s
.mb_y
, n
, list
);
879 if(diagonal_ref
== ref
){
887 pred_motion(h
, n
, 2, list
, ref
, mx
, my
);
890 static inline void pred_pskip_motion(H264Context
* const h
, int * const mx
, int * const my
){
891 const int top_ref
= h
->ref_cache
[0][ scan8
[0] - 8 ];
892 const int left_ref
= h
->ref_cache
[0][ scan8
[0] - 1 ];
894 tprintf("pred_pskip: (%d) (%d) at %2d %2d", top_ref
, left_ref
, h
->s
.mb_x
, h
->s
.mb_y
);
896 if(top_ref
== PART_NOT_AVAILABLE
|| left_ref
== PART_NOT_AVAILABLE
897 || (top_ref
== 0 && *(uint32_t*)h
->mv_cache
[0][ scan8
[0] - 8 ] == 0)
898 || (left_ref
== 0 && *(uint32_t*)h
->mv_cache
[0][ scan8
[0] - 1 ] == 0)){
904 pred_motion(h
, 0, 4, 0, 0, mx
, my
);
909 static inline void write_back_motion(H264Context
*h
, int mb_type
){
910 MpegEncContext
* const s
= &h
->s
;
911 const int b_xy
= 4*s
->mb_x
+ 4*s
->mb_y
*h
->b_stride
;
912 const int b8_xy
= 2*s
->mb_x
+ 2*s
->mb_y
*h
->b8_stride
;
915 for(list
=0; list
<2; list
++){
917 if((!IS_8X8(mb_type
)) && !USES_LIST(mb_type
, list
)){
918 if(1){ //FIXME skip or never read if mb_type doesnt use it
920 *(uint64_t*)s
->current_picture
.motion_val
[list
][b_xy
+ 0 + y
*h
->b_stride
]=
921 *(uint64_t*)s
->current_picture
.motion_val
[list
][b_xy
+ 2 + y
*h
->b_stride
]= 0;
924 *(uint16_t*)s
->current_picture
.motion_val
[list
][b8_xy
+ y
*h
->b8_stride
]= (LIST_NOT_USED
&0xFF)*0x0101;
927 continue; //FIXME direct mode ...
931 *(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
];
932 *(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
];
935 s
->current_picture
.ref_index
[list
][b8_xy
+ 0 + y
*h
->b8_stride
]= h
->ref_cache
[list
][scan8
[0]+0 + 16*y
];
936 s
->current_picture
.ref_index
[list
][b8_xy
+ 1 + y
*h
->b8_stride
]= h
->ref_cache
[list
][scan8
[0]+2 + 16*y
];
942 * Decodes a network abstraction layer unit.
943 * @param consumed is the number of bytes used as input
944 * @param length is the length of the array
945 * @param dst_length is the number of decoded bytes FIXME here or a decode rbsp ttailing?
946 * @returns decoded bytes, might be src+1 if no escapes
948 static uint8_t *decode_nal(H264Context
*h
, uint8_t *src
, int *dst_length
, int *consumed
, int length
){
952 // src[0]&0x80; //forbidden bit
953 h
->nal_ref_idc
= src
[0]>>5;
954 h
->nal_unit_type
= src
[0]&0x1F;
958 for(i
=0; i
<length
; i
++)
959 printf("%2X ", src
[i
]);
961 for(i
=0; i
+1<length
; i
+=2){
963 if(i
>0 && src
[i
-1]==0) i
--;
964 if(i
+2<length
&& src
[i
+1]==0 && src
[i
+2]<=3){
966 /* startcode, so we must be past the end */
973 if(i
>=length
-1){ //no escaped 0
975 *consumed
= length
+1; //+1 for the header
979 h
->rbsp_buffer
= av_fast_realloc(h
->rbsp_buffer
, &h
->rbsp_buffer_size
, length
);
982 //printf("deoding esc\n");
985 //remove escapes (very rare 1:2^22)
986 if(si
+2<length
&& src
[si
]==0 && src
[si
+1]==0 && src
[si
+2]<=3){
987 if(src
[si
+2]==3){ //escape
991 }else //next start code
995 dst
[di
++]= src
[si
++];
999 *consumed
= si
+ 1;//+1 for the header
1000 //FIXME store exact number of bits in the getbitcontext (its needed for decoding)
1005 * @param src the data which should be escaped
1006 * @param dst the target buffer, dst+1 == src is allowed as a special case
1007 * @param length the length of the src data
1008 * @param dst_length the length of the dst array
1009 * @returns length of escaped data in bytes or -1 if an error occured
1011 static int encode_nal(H264Context
*h
, uint8_t *dst
, uint8_t *src
, int length
, int dst_length
){
1012 int i
, escape_count
, si
, di
;
1016 assert(dst_length
>0);
1018 dst
[0]= (h
->nal_ref_idc
<<5) + h
->nal_unit_type
;
1020 if(length
==0) return 1;
1023 for(i
=0; i
<length
; i
+=2){
1024 if(src
[i
]) continue;
1025 if(i
>0 && src
[i
-1]==0)
1027 if(i
+2<length
&& src
[i
+1]==0 && src
[i
+2]<=3){
1033 if(escape_count
==0){
1035 memcpy(dst
+1, src
, length
);
1039 if(length
+ escape_count
+ 1> dst_length
)
1042 //this should be damn rare (hopefully)
1044 h
->rbsp_buffer
= av_fast_realloc(h
->rbsp_buffer
, &h
->rbsp_buffer_size
, length
+ escape_count
);
1045 temp
= h
->rbsp_buffer
;
1046 //printf("encoding esc\n");
1051 if(si
+2<length
&& src
[si
]==0 && src
[si
+1]==0 && src
[si
+2]<=3){
1052 temp
[di
++]= 0; si
++;
1053 temp
[di
++]= 0; si
++;
1055 temp
[di
++]= src
[si
++];
1058 temp
[di
++]= src
[si
++];
1060 memcpy(dst
+1, temp
, length
+escape_count
);
1062 assert(di
== length
+escape_count
);
1068 * write 1,10,100,1000,... for alignment, yes its exactly inverse to mpeg4
1070 static void encode_rbsp_trailing(PutBitContext
*pb
){
1073 length
= (-get_bit_count(pb
))&7;
1074 if(length
) put_bits(pb
, length
, 0);
1078 * identifies the exact end of the bitstream
1079 * @return the length of the trailing, or 0 if damaged
1081 static int decode_rbsp_trailing(uint8_t *src
){
1085 tprintf("rbsp trailing %X\n", v
);
1095 * idct tranforms the 16 dc values and dequantize them.
1096 * @param qp quantization parameter
1098 static void h264_luma_dc_dequant_idct_c(DCTELEM
*block
, int qp
){
1099 const int qmul
= dequant_coeff
[qp
][0];
1102 int temp
[16]; //FIXME check if this is a good idea
1103 static const int x_offset
[4]={0, 1*stride
, 4* stride
, 5*stride
};
1104 static const int y_offset
[4]={0, 2*stride
, 8* stride
, 10*stride
};
1106 //memset(block, 64, 2*256);
1109 const int offset
= y_offset
[i
];
1110 const int z0
= block
[offset
+stride
*0] + block
[offset
+stride
*4];
1111 const int z1
= block
[offset
+stride
*0] - block
[offset
+stride
*4];
1112 const int z2
= block
[offset
+stride
*1] - block
[offset
+stride
*5];
1113 const int z3
= block
[offset
+stride
*1] + block
[offset
+stride
*5];
1122 const int offset
= x_offset
[i
];
1123 const int z0
= temp
[4*0+i
] + temp
[4*2+i
];
1124 const int z1
= temp
[4*0+i
] - temp
[4*2+i
];
1125 const int z2
= temp
[4*1+i
] - temp
[4*3+i
];
1126 const int z3
= temp
[4*1+i
] + temp
[4*3+i
];
1128 block
[stride
*0 +offset
]= ((z0
+ z3
)*qmul
+ 2)>>2; //FIXME think about merging this into decode_resdual
1129 block
[stride
*2 +offset
]= ((z1
+ z2
)*qmul
+ 2)>>2;
1130 block
[stride
*8 +offset
]= ((z1
- z2
)*qmul
+ 2)>>2;
1131 block
[stride
*10+offset
]= ((z0
- z3
)*qmul
+ 2)>>2;
1136 * dct tranforms the 16 dc values.
1137 * @param qp quantization parameter ??? FIXME
1139 static void h264_luma_dc_dct_c(DCTELEM
*block
/*, int qp*/){
1140 // const int qmul= dequant_coeff[qp][0];
1142 int temp
[16]; //FIXME check if this is a good idea
1143 static const int x_offset
[4]={0, 1*stride
, 4* stride
, 5*stride
};
1144 static const int y_offset
[4]={0, 2*stride
, 8* stride
, 10*stride
};
1147 const int offset
= y_offset
[i
];
1148 const int z0
= block
[offset
+stride
*0] + block
[offset
+stride
*4];
1149 const int z1
= block
[offset
+stride
*0] - block
[offset
+stride
*4];
1150 const int z2
= block
[offset
+stride
*1] - block
[offset
+stride
*5];
1151 const int z3
= block
[offset
+stride
*1] + block
[offset
+stride
*5];
1160 const int offset
= x_offset
[i
];
1161 const int z0
= temp
[4*0+i
] + temp
[4*2+i
];
1162 const int z1
= temp
[4*0+i
] - temp
[4*2+i
];
1163 const int z2
= temp
[4*1+i
] - temp
[4*3+i
];
1164 const int z3
= temp
[4*1+i
] + temp
[4*3+i
];
1166 block
[stride
*0 +offset
]= (z0
+ z3
)>>1;
1167 block
[stride
*2 +offset
]= (z1
+ z2
)>>1;
1168 block
[stride
*8 +offset
]= (z1
- z2
)>>1;
1169 block
[stride
*10+offset
]= (z0
- z3
)>>1;
1175 static void chroma_dc_dequant_idct_c(DCTELEM
*block
, int qp
){
1176 const int qmul
= dequant_coeff
[qp
][0];
1177 const int stride
= 16*2;
1178 const int xStride
= 16;
1181 a
= block
[stride
*0 + xStride
*0];
1182 b
= block
[stride
*0 + xStride
*1];
1183 c
= block
[stride
*1 + xStride
*0];
1184 d
= block
[stride
*1 + xStride
*1];
1191 block
[stride
*0 + xStride
*0]= ((a
+c
)*qmul
+ 0)>>1;
1192 block
[stride
*0 + xStride
*1]= ((e
+b
)*qmul
+ 0)>>1;
1193 block
[stride
*1 + xStride
*0]= ((a
-c
)*qmul
+ 0)>>1;
1194 block
[stride
*1 + xStride
*1]= ((e
-b
)*qmul
+ 0)>>1;
1197 static void chroma_dc_dct_c(DCTELEM
*block
){
1198 const int stride
= 16*2;
1199 const int xStride
= 16;
1202 a
= block
[stride
*0 + xStride
*0];
1203 b
= block
[stride
*0 + xStride
*1];
1204 c
= block
[stride
*1 + xStride
*0];
1205 d
= block
[stride
*1 + xStride
*1];
1212 block
[stride
*0 + xStride
*0]= (a
+c
);
1213 block
[stride
*0 + xStride
*1]= (e
+b
);
1214 block
[stride
*1 + xStride
*0]= (a
-c
);
1215 block
[stride
*1 + xStride
*1]= (e
-b
);
1219 * gets the chroma qp.
1221 static inline int get_chroma_qp(H264Context
*h
, int qscale
){
1223 return chroma_qp
[clip(qscale
+ h
->pps
.chroma_qp_index_offset
, 0, 51)];
1230 static void h264_add_idct_c(uint8_t *dst
, DCTELEM
*block
, int stride
){
1232 uint8_t *cm
= cropTbl
+ MAX_NEG_CROP
;
1237 const int z0
= block
[i
+ 4*0] + block
[i
+ 4*2];
1238 const int z1
= block
[i
+ 4*0] - block
[i
+ 4*2];
1239 const int z2
= (block
[i
+ 4*1]>>1) - block
[i
+ 4*3];
1240 const int z3
= block
[i
+ 4*1] + (block
[i
+ 4*3]>>1);
1242 block
[i
+ 4*0]= z0
+ z3
;
1243 block
[i
+ 4*1]= z1
+ z2
;
1244 block
[i
+ 4*2]= z1
- z2
;
1245 block
[i
+ 4*3]= z0
- z3
;
1249 const int z0
= block
[0 + 4*i
] + block
[2 + 4*i
];
1250 const int z1
= block
[0 + 4*i
] - block
[2 + 4*i
];
1251 const int z2
= (block
[1 + 4*i
]>>1) - block
[3 + 4*i
];
1252 const int z3
= block
[1 + 4*i
] + (block
[3 + 4*i
]>>1);
1254 dst
[0 + i
*stride
]= cm
[ dst
[0 + i
*stride
] + ((z0
+ z3
) >> 6) ];
1255 dst
[1 + i
*stride
]= cm
[ dst
[1 + i
*stride
] + ((z1
+ z2
) >> 6) ];
1256 dst
[2 + i
*stride
]= cm
[ dst
[2 + i
*stride
] + ((z1
- z2
) >> 6) ];
1257 dst
[3 + i
*stride
]= cm
[ dst
[3 + i
*stride
] + ((z0
- z3
) >> 6) ];
1261 const int z0
= block
[0 + 4*i
] + block
[2 + 4*i
];
1262 const int z1
= block
[0 + 4*i
] - block
[2 + 4*i
];
1263 const int z2
= (block
[1 + 4*i
]>>1) - block
[3 + 4*i
];
1264 const int z3
= block
[1 + 4*i
] + (block
[3 + 4*i
]>>1);
1266 block
[0 + 4*i
]= z0
+ z3
;
1267 block
[1 + 4*i
]= z1
+ z2
;
1268 block
[2 + 4*i
]= z1
- z2
;
1269 block
[3 + 4*i
]= z0
- z3
;
1273 const int z0
= block
[i
+ 4*0] + block
[i
+ 4*2];
1274 const int z1
= block
[i
+ 4*0] - block
[i
+ 4*2];
1275 const int z2
= (block
[i
+ 4*1]>>1) - block
[i
+ 4*3];
1276 const int z3
= block
[i
+ 4*1] + (block
[i
+ 4*3]>>1);
1278 dst
[i
+ 0*stride
]= cm
[ dst
[i
+ 0*stride
] + ((z0
+ z3
) >> 6) ];
1279 dst
[i
+ 1*stride
]= cm
[ dst
[i
+ 1*stride
] + ((z1
+ z2
) >> 6) ];
1280 dst
[i
+ 2*stride
]= cm
[ dst
[i
+ 2*stride
] + ((z1
- z2
) >> 6) ];
1281 dst
[i
+ 3*stride
]= cm
[ dst
[i
+ 3*stride
] + ((z0
- z3
) >> 6) ];
1286 static void h264_diff_dct_c(DCTELEM
*block
, uint8_t *src1
, uint8_t *src2
, int stride
){
1288 //FIXME try int temp instead of block
1291 const int d0
= src1
[0 + i
*stride
] - src2
[0 + i
*stride
];
1292 const int d1
= src1
[1 + i
*stride
] - src2
[1 + i
*stride
];
1293 const int d2
= src1
[2 + i
*stride
] - src2
[2 + i
*stride
];
1294 const int d3
= src1
[3 + i
*stride
] - src2
[3 + i
*stride
];
1295 const int z0
= d0
+ d3
;
1296 const int z3
= d0
- d3
;
1297 const int z1
= d1
+ d2
;
1298 const int z2
= d1
- d2
;
1300 block
[0 + 4*i
]= z0
+ z1
;
1301 block
[1 + 4*i
]= 2*z3
+ z2
;
1302 block
[2 + 4*i
]= z0
- z1
;
1303 block
[3 + 4*i
]= z3
- 2*z2
;
1307 const int z0
= block
[0*4 + i
] + block
[3*4 + i
];
1308 const int z3
= block
[0*4 + i
] - block
[3*4 + i
];
1309 const int z1
= block
[1*4 + i
] + block
[2*4 + i
];
1310 const int z2
= block
[1*4 + i
] - block
[2*4 + i
];
1312 block
[0*4 + i
]= z0
+ z1
;
1313 block
[1*4 + i
]= 2*z3
+ z2
;
1314 block
[2*4 + i
]= z0
- z1
;
1315 block
[3*4 + i
]= z3
- 2*z2
;
1319 //FIXME need to check that this doesnt overflow signed 32 bit for low qp, iam not sure, its very close
1320 //FIXME check that gcc inlines this (and optimizes intra & seperate_dc stuff away)
1321 static inline int quantize_c(DCTELEM
*block
, uint8_t *scantable
, int qscale
, int intra
, int seperate_dc
){
1323 const int * const quant_table
= quant_coeff
[qscale
];
1324 const int bias
= intra ?
(1<<QUANT_SHIFT
)/3 : (1<<QUANT_SHIFT
)/6;
1325 const unsigned int threshold1
= (1<<QUANT_SHIFT
) - bias
- 1;
1326 const unsigned int threshold2
= (threshold1
<<1);
1332 const int dc_bias
= intra ?
(1<<(QUANT_SHIFT
-2))/3 : (1<<(QUANT_SHIFT
-2))/6;
1333 const unsigned int dc_threshold1
= (1<<(QUANT_SHIFT
-2)) - dc_bias
- 1;
1334 const unsigned int dc_threshold2
= (dc_threshold1
<<1);
1336 int level
= block
[0]*quant_coeff
[qscale
+18][0];
1337 if(((unsigned)(level
+dc_threshold1
))>dc_threshold2
){
1339 level
= (dc_bias
+ level
)>>(QUANT_SHIFT
-2);
1342 level
= (dc_bias
- level
)>>(QUANT_SHIFT
-2);
1345 // last_non_zero = i;
1350 const int dc_bias
= intra ?
(1<<(QUANT_SHIFT
+1))/3 : (1<<(QUANT_SHIFT
+1))/6;
1351 const unsigned int dc_threshold1
= (1<<(QUANT_SHIFT
+1)) - dc_bias
- 1;
1352 const unsigned int dc_threshold2
= (dc_threshold1
<<1);
1354 int level
= block
[0]*quant_table
[0];
1355 if(((unsigned)(level
+dc_threshold1
))>dc_threshold2
){
1357 level
= (dc_bias
+ level
)>>(QUANT_SHIFT
+1);
1360 level
= (dc_bias
- level
)>>(QUANT_SHIFT
+1);
1363 // last_non_zero = i;
1376 const int j
= scantable
[i
];
1377 int level
= block
[j
]*quant_table
[j
];
1379 // if( bias+level >= (1<<(QMAT_SHIFT - 3))
1380 // || bias-level >= (1<<(QMAT_SHIFT - 3))){
1381 if(((unsigned)(level
+threshold1
))>threshold2
){
1383 level
= (bias
+ level
)>>QUANT_SHIFT
;
1386 level
= (bias
- level
)>>QUANT_SHIFT
;
1395 return last_non_zero
;
1398 static void pred4x4_vertical_c(uint8_t *src
, uint8_t *topright
, int stride
){
1399 const uint32_t a
= ((uint32_t*)(src
-stride
))[0];
1400 ((uint32_t*)(src
+0*stride
))[0]= a
;
1401 ((uint32_t*)(src
+1*stride
))[0]= a
;
1402 ((uint32_t*)(src
+2*stride
))[0]= a
;
1403 ((uint32_t*)(src
+3*stride
))[0]= a
;
1406 static void pred4x4_horizontal_c(uint8_t *src
, uint8_t *topright
, int stride
){
1407 ((uint32_t*)(src
+0*stride
))[0]= src
[-1+0*stride
]*0x01010101;
1408 ((uint32_t*)(src
+1*stride
))[0]= src
[-1+1*stride
]*0x01010101;
1409 ((uint32_t*)(src
+2*stride
))[0]= src
[-1+2*stride
]*0x01010101;
1410 ((uint32_t*)(src
+3*stride
))[0]= src
[-1+3*stride
]*0x01010101;
1413 static void pred4x4_dc_c(uint8_t *src
, uint8_t *topright
, int stride
){
1414 const int dc
= ( src
[-stride
] + src
[1-stride
] + src
[2-stride
] + src
[3-stride
]
1415 + src
[-1+0*stride
] + src
[-1+1*stride
] + src
[-1+2*stride
] + src
[-1+3*stride
] + 4) >>3;
1417 ((uint32_t*)(src
+0*stride
))[0]=
1418 ((uint32_t*)(src
+1*stride
))[0]=
1419 ((uint32_t*)(src
+2*stride
))[0]=
1420 ((uint32_t*)(src
+3*stride
))[0]= dc
* 0x01010101;
1423 static void pred4x4_left_dc_c(uint8_t *src
, uint8_t *topright
, int stride
){
1424 const int dc
= ( src
[-1+0*stride
] + src
[-1+1*stride
] + src
[-1+2*stride
] + src
[-1+3*stride
] + 2) >>2;
1426 ((uint32_t*)(src
+0*stride
))[0]=
1427 ((uint32_t*)(src
+1*stride
))[0]=
1428 ((uint32_t*)(src
+2*stride
))[0]=
1429 ((uint32_t*)(src
+3*stride
))[0]= dc
* 0x01010101;
1432 static void pred4x4_top_dc_c(uint8_t *src
, uint8_t *topright
, int stride
){
1433 const int dc
= ( src
[-stride
] + src
[1-stride
] + src
[2-stride
] + src
[3-stride
] + 2) >>2;
1435 ((uint32_t*)(src
+0*stride
))[0]=
1436 ((uint32_t*)(src
+1*stride
))[0]=
1437 ((uint32_t*)(src
+2*stride
))[0]=
1438 ((uint32_t*)(src
+3*stride
))[0]= dc
* 0x01010101;
1441 static void pred4x4_128_dc_c(uint8_t *src
, uint8_t *topright
, int stride
){
1442 ((uint32_t*)(src
+0*stride
))[0]=
1443 ((uint32_t*)(src
+1*stride
))[0]=
1444 ((uint32_t*)(src
+2*stride
))[0]=
1445 ((uint32_t*)(src
+3*stride
))[0]= 128U*0x01010101U
;
1449 #define LOAD_TOP_RIGHT_EDGE\
1450 const int t4= topright[0];\
1451 const int t5= topright[1];\
1452 const int t6= topright[2];\
1453 const int t7= topright[3];\
1455 #define LOAD_LEFT_EDGE\
1456 const int l0= src[-1+0*stride];\
1457 const int l1= src[-1+1*stride];\
1458 const int l2= src[-1+2*stride];\
1459 const int l3= src[-1+3*stride];\
1461 #define LOAD_TOP_EDGE\
1462 const int t0= src[ 0-1*stride];\
1463 const int t1= src[ 1-1*stride];\
1464 const int t2= src[ 2-1*stride];\
1465 const int t3= src[ 3-1*stride];\
1467 static void pred4x4_down_right_c(uint8_t *src, uint8_t *topright, int stride){
1468 const int lt
= src
[-1-1*stride
];
1472 src
[0+3*stride
]=(l3
+ 2*l2
+ l1
+ 2)>>2;
1474 src
[1+3*stride
]=(l2
+ 2*l1
+ l0
+ 2)>>2;
1477 src
[2+3*stride
]=(l1
+ 2*l0
+ lt
+ 2)>>2;
1481 src
[3+3*stride
]=(l0
+ 2*lt
+ t0
+ 2)>>2;
1484 src
[3+2*stride
]=(lt
+ 2*t0
+ t1
+ 2)>>2;
1486 src
[3+1*stride
]=(t0
+ 2*t1
+ t2
+ 2)>>2;
1487 src
[3+0*stride
]=(t1
+ 2*t2
+ t3
+ 2)>>2;
1490 static void pred4x4_down_left_c(uint8_t *src
, uint8_t *topright
, int stride
){
1495 src
[0+0*stride
]=(t0
+ t2
+ 2*t1
+ 2)>>2;
1497 src
[0+1*stride
]=(t1
+ t3
+ 2*t2
+ 2)>>2;
1500 src
[0+2*stride
]=(t2
+ t4
+ 2*t3
+ 2)>>2;
1504 src
[0+3*stride
]=(t3
+ t5
+ 2*t4
+ 2)>>2;
1507 src
[1+3*stride
]=(t4
+ t6
+ 2*t5
+ 2)>>2;
1509 src
[2+3*stride
]=(t5
+ t7
+ 2*t6
+ 2)>>2;
1510 src
[3+3*stride
]=(t6
+ 3*t7
+ 2)>>2;
1513 static void pred4x4_vertical_right_c(uint8_t *src
, uint8_t *topright
, int stride
){
1514 const int lt
= src
[-1-1*stride
];
1517 const __attribute__((unused
)) int unu
= l3
;
1520 src
[1+2*stride
]=(lt
+ t0
+ 1)>>1;
1522 src
[2+2*stride
]=(t0
+ t1
+ 1)>>1;
1524 src
[3+2*stride
]=(t1
+ t2
+ 1)>>1;
1525 src
[3+0*stride
]=(t2
+ t3
+ 1)>>1;
1527 src
[1+3*stride
]=(l0
+ 2*lt
+ t0
+ 2)>>2;
1529 src
[2+3*stride
]=(lt
+ 2*t0
+ t1
+ 2)>>2;
1531 src
[3+3*stride
]=(t0
+ 2*t1
+ t2
+ 2)>>2;
1532 src
[3+1*stride
]=(t1
+ 2*t2
+ t3
+ 2)>>2;
1533 src
[0+2*stride
]=(lt
+ 2*l0
+ l1
+ 2)>>2;
1534 src
[0+3*stride
]=(l0
+ 2*l1
+ l2
+ 2)>>2;
1537 static void pred4x4_vertical_left_c(uint8_t *src
, uint8_t *topright
, int stride
){
1540 const __attribute__((unused
)) int unu
= t7
;
1542 src
[0+0*stride
]=(t0
+ t1
+ 1)>>1;
1544 src
[0+2*stride
]=(t1
+ t2
+ 1)>>1;
1546 src
[1+2*stride
]=(t2
+ t3
+ 1)>>1;
1548 src
[2+2*stride
]=(t3
+ t4
+ 1)>>1;
1549 src
[3+2*stride
]=(t4
+ t5
+ 1)>>1;
1550 src
[0+1*stride
]=(t0
+ 2*t1
+ t2
+ 2)>>2;
1552 src
[0+3*stride
]=(t1
+ 2*t2
+ t3
+ 2)>>2;
1554 src
[1+3*stride
]=(t2
+ 2*t3
+ t4
+ 2)>>2;
1556 src
[2+3*stride
]=(t3
+ 2*t4
+ t5
+ 2)>>2;
1557 src
[3+3*stride
]=(t4
+ 2*t5
+ t6
+ 2)>>2;
1560 static void pred4x4_horizontal_up_c(uint8_t *src
, uint8_t *topright
, int stride
){
1563 src
[0+0*stride
]=(l0
+ l1
+ 1)>>1;
1564 src
[1+0*stride
]=(l0
+ 2*l1
+ l2
+ 2)>>2;
1566 src
[0+1*stride
]=(l1
+ l2
+ 1)>>1;
1568 src
[1+1*stride
]=(l1
+ 2*l2
+ l3
+ 2)>>2;
1570 src
[0+2*stride
]=(l2
+ l3
+ 1)>>1;
1572 src
[1+2*stride
]=(l2
+ 2*l3
+ l3
+ 2)>>2;
1581 static void pred4x4_horizontal_down_c(uint8_t *src
, uint8_t *topright
, int stride
){
1582 const int lt
= src
[-1-1*stride
];
1585 const __attribute__((unused
)) int unu
= t3
;
1588 src
[2+1*stride
]=(lt
+ l0
+ 1)>>1;
1590 src
[3+1*stride
]=(l0
+ 2*lt
+ t0
+ 2)>>2;
1591 src
[2+0*stride
]=(lt
+ 2*t0
+ t1
+ 2)>>2;
1592 src
[3+0*stride
]=(t0
+ 2*t1
+ t2
+ 2)>>2;
1594 src
[2+2*stride
]=(l0
+ l1
+ 1)>>1;
1596 src
[3+2*stride
]=(lt
+ 2*l0
+ l1
+ 2)>>2;
1598 src
[2+3*stride
]=(l1
+ l2
+ 1)>>1;
1600 src
[3+3*stride
]=(l0
+ 2*l1
+ l2
+ 2)>>2;
1601 src
[0+3*stride
]=(l2
+ l3
+ 1)>>1;
1602 src
[1+3*stride
]=(l1
+ 2*l2
+ l3
+ 2)>>2;
1605 static void pred16x16_vertical_c(uint8_t *src
, int stride
){
1607 const uint32_t a
= ((uint32_t*)(src
-stride
))[0];
1608 const uint32_t b
= ((uint32_t*)(src
-stride
))[1];
1609 const uint32_t c
= ((uint32_t*)(src
-stride
))[2];
1610 const uint32_t d
= ((uint32_t*)(src
-stride
))[3];
1612 for(i
=0; i
<16; i
++){
1613 ((uint32_t*)(src
+i
*stride
))[0]= a
;
1614 ((uint32_t*)(src
+i
*stride
))[1]= b
;
1615 ((uint32_t*)(src
+i
*stride
))[2]= c
;
1616 ((uint32_t*)(src
+i
*stride
))[3]= d
;
1620 static void pred16x16_horizontal_c(uint8_t *src
, int stride
){
1623 for(i
=0; i
<16; i
++){
1624 ((uint32_t*)(src
+i
*stride
))[0]=
1625 ((uint32_t*)(src
+i
*stride
))[1]=
1626 ((uint32_t*)(src
+i
*stride
))[2]=
1627 ((uint32_t*)(src
+i
*stride
))[3]= src
[-1+i
*stride
]*0x01010101;
1631 static void pred16x16_dc_c(uint8_t *src
, int stride
){
1635 dc
+= src
[-1+i
*stride
];
1642 dc
= 0x01010101*((dc
+ 16)>>5);
1644 for(i
=0; i
<16; i
++){
1645 ((uint32_t*)(src
+i
*stride
))[0]=
1646 ((uint32_t*)(src
+i
*stride
))[1]=
1647 ((uint32_t*)(src
+i
*stride
))[2]=
1648 ((uint32_t*)(src
+i
*stride
))[3]= dc
;
1652 static void pred16x16_left_dc_c(uint8_t *src
, int stride
){
1656 dc
+= src
[-1+i
*stride
];
1659 dc
= 0x01010101*((dc
+ 8)>>4);
1661 for(i
=0; i
<16; i
++){
1662 ((uint32_t*)(src
+i
*stride
))[0]=
1663 ((uint32_t*)(src
+i
*stride
))[1]=
1664 ((uint32_t*)(src
+i
*stride
))[2]=
1665 ((uint32_t*)(src
+i
*stride
))[3]= dc
;
1669 static void pred16x16_top_dc_c(uint8_t *src
, int stride
){
1675 dc
= 0x01010101*((dc
+ 8)>>4);
1677 for(i
=0; i
<16; i
++){
1678 ((uint32_t*)(src
+i
*stride
))[0]=
1679 ((uint32_t*)(src
+i
*stride
))[1]=
1680 ((uint32_t*)(src
+i
*stride
))[2]=
1681 ((uint32_t*)(src
+i
*stride
))[3]= dc
;
1685 static void pred16x16_128_dc_c(uint8_t *src
, int stride
){
1688 for(i
=0; i
<16; i
++){
1689 ((uint32_t*)(src
+i
*stride
))[0]=
1690 ((uint32_t*)(src
+i
*stride
))[1]=
1691 ((uint32_t*)(src
+i
*stride
))[2]=
1692 ((uint32_t*)(src
+i
*stride
))[3]= 0x01010101U
*128U;
1696 static inline void pred16x16_plane_compat_c(uint8_t *src
, int stride
, const int svq3
){
1699 uint8_t *cm
= cropTbl
+ MAX_NEG_CROP
;
1700 const uint8_t * const src0
= src
+7-stride
;
1701 const uint8_t *src1
= src
+8*stride
-1;
1702 const uint8_t *src2
= src1
-2*stride
; // == src+6*stride-1;
1703 int H
= src0
[1] - src0
[-1];
1704 int V
= src1
[0] - src2
[ 0];
1705 for(k
=2; k
<=8; ++k
) {
1706 src1
+= stride
; src2
-= stride
;
1707 H
+= k
*(src0
[k
] - src0
[-k
]);
1708 V
+= k
*(src1
[0] - src2
[ 0]);
1711 H
= ( 5*(H
/4) ) / 16;
1712 V
= ( 5*(V
/4) ) / 16;
1714 /* required for 100% accuracy */
1715 i
= H
; H
= V
; V
= i
;
1717 H
= ( 5*H
+32 ) >> 6;
1718 V
= ( 5*V
+32 ) >> 6;
1721 a
= 16*(src1
[0] + src2
[16] + 1) - 7*(V
+H
);
1722 for(j
=16; j
>0; --j
) {
1725 for(i
=-16; i
<0; i
+=4) {
1726 src
[16+i
] = cm
[ (b
) >> 5 ];
1727 src
[17+i
] = cm
[ (b
+ H
) >> 5 ];
1728 src
[18+i
] = cm
[ (b
+2*H
) >> 5 ];
1729 src
[19+i
] = cm
[ (b
+3*H
) >> 5 ];
1736 static void pred16x16_plane_c(uint8_t *src
, int stride
){
1737 pred16x16_plane_compat_c(src
, stride
, 0);
1740 static void pred8x8_vertical_c(uint8_t *src
, int stride
){
1742 const uint32_t a
= ((uint32_t*)(src
-stride
))[0];
1743 const uint32_t b
= ((uint32_t*)(src
-stride
))[1];
1746 ((uint32_t*)(src
+i
*stride
))[0]= a
;
1747 ((uint32_t*)(src
+i
*stride
))[1]= b
;
1751 static void pred8x8_horizontal_c(uint8_t *src
, int stride
){
1755 ((uint32_t*)(src
+i
*stride
))[0]=
1756 ((uint32_t*)(src
+i
*stride
))[1]= src
[-1+i
*stride
]*0x01010101;
1760 static void pred8x8_128_dc_c(uint8_t *src
, int stride
){
1764 ((uint32_t*)(src
+i
*stride
))[0]=
1765 ((uint32_t*)(src
+i
*stride
))[1]= 0x01010101U
*128U;
1768 ((uint32_t*)(src
+i
*stride
))[0]=
1769 ((uint32_t*)(src
+i
*stride
))[1]= 0x01010101U
*128U;
1773 static void pred8x8_left_dc_c(uint8_t *src
, int stride
){
1779 dc0
+= src
[-1+i
*stride
];
1780 dc2
+= src
[-1+(i
+4)*stride
];
1782 dc0
= 0x01010101*((dc0
+ 2)>>2);
1783 dc2
= 0x01010101*((dc2
+ 2)>>2);
1786 ((uint32_t*)(src
+i
*stride
))[0]=
1787 ((uint32_t*)(src
+i
*stride
))[1]= dc0
;
1790 ((uint32_t*)(src
+i
*stride
))[0]=
1791 ((uint32_t*)(src
+i
*stride
))[1]= dc2
;
1795 static void pred8x8_top_dc_c(uint8_t *src
, int stride
){
1801 dc0
+= src
[i
-stride
];
1802 dc1
+= src
[4+i
-stride
];
1804 dc0
= 0x01010101*((dc0
+ 2)>>2);
1805 dc1
= 0x01010101*((dc1
+ 2)>>2);
1808 ((uint32_t*)(src
+i
*stride
))[0]= dc0
;
1809 ((uint32_t*)(src
+i
*stride
))[1]= dc1
;
1812 ((uint32_t*)(src
+i
*stride
))[0]= dc0
;
1813 ((uint32_t*)(src
+i
*stride
))[1]= dc1
;
1818 static void pred8x8_dc_c(uint8_t *src
, int stride
){
1820 int dc0
, dc1
, dc2
, dc3
;
1824 dc0
+= src
[-1+i
*stride
] + src
[i
-stride
];
1825 dc1
+= src
[4+i
-stride
];
1826 dc2
+= src
[-1+(i
+4)*stride
];
1828 dc3
= 0x01010101*((dc1
+ dc2
+ 4)>>3);
1829 dc0
= 0x01010101*((dc0
+ 4)>>3);
1830 dc1
= 0x01010101*((dc1
+ 2)>>2);
1831 dc2
= 0x01010101*((dc2
+ 2)>>2);
1834 ((uint32_t*)(src
+i
*stride
))[0]= dc0
;
1835 ((uint32_t*)(src
+i
*stride
))[1]= dc1
;
1838 ((uint32_t*)(src
+i
*stride
))[0]= dc2
;
1839 ((uint32_t*)(src
+i
*stride
))[1]= dc3
;
1843 static void pred8x8_plane_c(uint8_t *src
, int stride
){
1846 uint8_t *cm
= cropTbl
+ MAX_NEG_CROP
;
1847 const uint8_t * const src0
= src
+3-stride
;
1848 const uint8_t *src1
= src
+4*stride
-1;
1849 const uint8_t *src2
= src1
-2*stride
; // == src+2*stride-1;
1850 int H
= src0
[1] - src0
[-1];
1851 int V
= src1
[0] - src2
[ 0];
1852 for(k
=2; k
<=4; ++k
) {
1853 src1
+= stride
; src2
-= stride
;
1854 H
+= k
*(src0
[k
] - src0
[-k
]);
1855 V
+= k
*(src1
[0] - src2
[ 0]);
1857 H
= ( 17*H
+16 ) >> 5;
1858 V
= ( 17*V
+16 ) >> 5;
1860 a
= 16*(src1
[0] + src2
[8]+1) - 3*(V
+H
);
1861 for(j
=8; j
>0; --j
) {
1864 src
[0] = cm
[ (b
) >> 5 ];
1865 src
[1] = cm
[ (b
+ H
) >> 5 ];
1866 src
[2] = cm
[ (b
+2*H
) >> 5 ];
1867 src
[3] = cm
[ (b
+3*H
) >> 5 ];
1868 src
[4] = cm
[ (b
+4*H
) >> 5 ];
1869 src
[5] = cm
[ (b
+5*H
) >> 5 ];
1870 src
[6] = cm
[ (b
+6*H
) >> 5 ];
1871 src
[7] = cm
[ (b
+7*H
) >> 5 ];
1876 static inline void mc_dir_part(H264Context
*h
, Picture
*pic
, int n
, int square
, int chroma_height
, int delta
, int list
,
1877 uint8_t *dest_y
, uint8_t *dest_cb
, uint8_t *dest_cr
,
1878 int src_x_offset
, int src_y_offset
,
1879 qpel_mc_func
*qpix_op
, h264_chroma_mc_func chroma_op
){
1880 MpegEncContext
* const s
= &h
->s
;
1881 const int mx
= h
->mv_cache
[list
][ scan8
[n
] ][0] + src_x_offset
*8;
1882 const int my
= h
->mv_cache
[list
][ scan8
[n
] ][1] + src_y_offset
*8;
1883 const int luma_xy
= (mx
&3) + ((my
&3)<<2);
1884 uint8_t * src_y
= pic
->data
[0] + (mx
>>2) + (my
>>2)*s
->linesize
;
1885 uint8_t * src_cb
= pic
->data
[1] + (mx
>>3) + (my
>>3)*s
->uvlinesize
;
1886 uint8_t * src_cr
= pic
->data
[2] + (mx
>>3) + (my
>>3)*s
->uvlinesize
;
1887 int extra_width
= (s
->flags
&CODEC_FLAG_EMU_EDGE
) ?
0 : 16; //FIXME increase edge?, IMHO not worth it
1888 int extra_height
= extra_width
;
1890 const int full_mx
= mx
>>2;
1891 const int full_my
= my
>>2;
1893 assert(pic
->data
[0]);
1895 if(mx
&7) extra_width
-= 3;
1896 if(my
&7) extra_height
-= 3;
1898 if( full_mx
< 0-extra_width
1899 || full_my
< 0-extra_height
1900 || full_mx
+ 16/*FIXME*/ > s
->width
+ extra_width
1901 || full_my
+ 16/*FIXME*/ > s
->height
+ extra_height
){
1902 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
);
1903 src_y
= s
->edge_emu_buffer
+ 2 + 2*s
->linesize
;
1907 qpix_op
[luma_xy
](dest_y
, src_y
, s
->linesize
); //FIXME try variable height perhaps?
1909 qpix_op
[luma_xy
](dest_y
+ delta
, src_y
+ delta
, s
->linesize
);
1912 if(s
->flags
&CODEC_FLAG_GRAY
) return;
1915 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);
1916 src_cb
= s
->edge_emu_buffer
;
1918 chroma_op(dest_cb
, src_cb
, s
->uvlinesize
, chroma_height
, mx
&7, my
&7);
1921 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);
1922 src_cr
= s
->edge_emu_buffer
;
1924 chroma_op(dest_cr
, src_cr
, s
->uvlinesize
, chroma_height
, mx
&7, my
&7);
1927 static inline void mc_part(H264Context
*h
, int n
, int square
, int chroma_height
, int delta
,
1928 uint8_t *dest_y
, uint8_t *dest_cb
, uint8_t *dest_cr
,
1929 int x_offset
, int y_offset
,
1930 qpel_mc_func
*qpix_put
, h264_chroma_mc_func chroma_put
,
1931 qpel_mc_func
*qpix_avg
, h264_chroma_mc_func chroma_avg
,
1932 int list0
, int list1
){
1933 MpegEncContext
* const s
= &h
->s
;
1934 qpel_mc_func
*qpix_op
= qpix_put
;
1935 h264_chroma_mc_func chroma_op
= chroma_put
;
1937 dest_y
+= 2*x_offset
+ 2*y_offset
*s
-> linesize
;
1938 dest_cb
+= x_offset
+ y_offset
*s
->uvlinesize
;
1939 dest_cr
+= x_offset
+ y_offset
*s
->uvlinesize
;
1940 x_offset
+= 8*s
->mb_x
;
1941 y_offset
+= 8*s
->mb_y
;
1944 Picture
*ref
= &h
->ref_list
[0][ h
->ref_cache
[0][ scan8
[n
] ] ];
1945 mc_dir_part(h
, ref
, n
, square
, chroma_height
, delta
, 0,
1946 dest_y
, dest_cb
, dest_cr
, x_offset
, y_offset
,
1947 qpix_op
, chroma_op
);
1950 chroma_op
= chroma_avg
;
1954 Picture
*ref
= &h
->ref_list
[1][ h
->ref_cache
[1][ scan8
[n
] ] ];
1955 mc_dir_part(h
, ref
, n
, square
, chroma_height
, delta
, 1,
1956 dest_y
, dest_cb
, dest_cr
, x_offset
, y_offset
,
1957 qpix_op
, chroma_op
);
1961 static void hl_motion(H264Context
*h
, uint8_t *dest_y
, uint8_t *dest_cb
, uint8_t *dest_cr
,
1962 qpel_mc_func (*qpix_put
)[16], h264_chroma_mc_func (*chroma_put
),
1963 qpel_mc_func (*qpix_avg
)[16], h264_chroma_mc_func (*chroma_avg
)){
1964 MpegEncContext
* const s
= &h
->s
;
1965 const int mb_xy
= s
->mb_x
+ s
->mb_y
*s
->mb_stride
;
1966 const int mb_type
= s
->current_picture
.mb_type
[mb_xy
];
1968 assert(IS_INTER(mb_type
));
1970 if(IS_16X16(mb_type
)){
1971 mc_part(h
, 0, 1, 8, 0, dest_y
, dest_cb
, dest_cr
, 0, 0,
1972 qpix_put
[0], chroma_put
[0], qpix_avg
[0], chroma_avg
[0],
1973 IS_DIR(mb_type
, 0, 0), IS_DIR(mb_type
, 0, 1));
1974 }else if(IS_16X8(mb_type
)){
1975 mc_part(h
, 0, 0, 4, 8, dest_y
, dest_cb
, dest_cr
, 0, 0,
1976 qpix_put
[1], chroma_put
[0], qpix_avg
[1], chroma_avg
[0],
1977 IS_DIR(mb_type
, 0, 0), IS_DIR(mb_type
, 0, 1));
1978 mc_part(h
, 8, 0, 4, 8, dest_y
, dest_cb
, dest_cr
, 0, 4,
1979 qpix_put
[1], chroma_put
[0], qpix_avg
[1], chroma_avg
[0],
1980 IS_DIR(mb_type
, 1, 0), IS_DIR(mb_type
, 1, 1));
1981 }else if(IS_8X16(mb_type
)){
1982 mc_part(h
, 0, 0, 8, 8*s
->linesize
, dest_y
, dest_cb
, dest_cr
, 0, 0,
1983 qpix_put
[1], chroma_put
[1], qpix_avg
[1], chroma_avg
[1],
1984 IS_DIR(mb_type
, 0, 0), IS_DIR(mb_type
, 0, 1));
1985 mc_part(h
, 4, 0, 8, 8*s
->linesize
, dest_y
, dest_cb
, dest_cr
, 4, 0,
1986 qpix_put
[1], chroma_put
[1], qpix_avg
[1], chroma_avg
[1],
1987 IS_DIR(mb_type
, 1, 0), IS_DIR(mb_type
, 1, 1));
1991 assert(IS_8X8(mb_type
));
1994 const int sub_mb_type
= h
->sub_mb_type
[i
];
1996 int x_offset
= (i
&1)<<2;
1997 int y_offset
= (i
&2)<<1;
1999 if(IS_SUB_8X8(sub_mb_type
)){
2000 mc_part(h
, n
, 1, 4, 0, dest_y
, dest_cb
, dest_cr
, x_offset
, y_offset
,
2001 qpix_put
[1], chroma_put
[1], qpix_avg
[1], chroma_avg
[1],
2002 IS_DIR(sub_mb_type
, 0, 0), IS_DIR(sub_mb_type
, 0, 1));
2003 }else if(IS_SUB_8X4(sub_mb_type
)){
2004 mc_part(h
, n
, 0, 2, 4, dest_y
, dest_cb
, dest_cr
, x_offset
, y_offset
,
2005 qpix_put
[2], chroma_put
[1], qpix_avg
[2], chroma_avg
[1],
2006 IS_DIR(sub_mb_type
, 0, 0), IS_DIR(sub_mb_type
, 0, 1));
2007 mc_part(h
, n
+2, 0, 2, 4, dest_y
, dest_cb
, dest_cr
, x_offset
, y_offset
+2,
2008 qpix_put
[2], chroma_put
[1], qpix_avg
[2], chroma_avg
[1],
2009 IS_DIR(sub_mb_type
, 0, 0), IS_DIR(sub_mb_type
, 0, 1));
2010 }else if(IS_SUB_4X8(sub_mb_type
)){
2011 mc_part(h
, n
, 0, 4, 4*s
->linesize
, dest_y
, dest_cb
, dest_cr
, x_offset
, y_offset
,
2012 qpix_put
[2], chroma_put
[2], qpix_avg
[2], chroma_avg
[2],
2013 IS_DIR(sub_mb_type
, 0, 0), IS_DIR(sub_mb_type
, 0, 1));
2014 mc_part(h
, n
+1, 0, 4, 4*s
->linesize
, dest_y
, dest_cb
, dest_cr
, x_offset
+2, y_offset
,
2015 qpix_put
[2], chroma_put
[2], qpix_avg
[2], chroma_avg
[2],
2016 IS_DIR(sub_mb_type
, 0, 0), IS_DIR(sub_mb_type
, 0, 1));
2019 assert(IS_SUB_4X4(sub_mb_type
));
2021 int sub_x_offset
= x_offset
+ 2*(j
&1);
2022 int sub_y_offset
= y_offset
+ (j
&2);
2023 mc_part(h
, n
+j
, 1, 2, 0, dest_y
, dest_cb
, dest_cr
, sub_x_offset
, sub_y_offset
,
2024 qpix_put
[2], chroma_put
[2], qpix_avg
[2], chroma_avg
[2],
2025 IS_DIR(sub_mb_type
, 0, 0), IS_DIR(sub_mb_type
, 0, 1));
2032 static void decode_init_vlc(H264Context
*h
){
2033 static int done
= 0;
2039 init_vlc(&chroma_dc_coeff_token_vlc
, CHROMA_DC_COEFF_TOKEN_VLC_BITS
, 4*5,
2040 &chroma_dc_coeff_token_len
[0], 1, 1,
2041 &chroma_dc_coeff_token_bits
[0], 1, 1);
2044 init_vlc(&coeff_token_vlc
[i
], COEFF_TOKEN_VLC_BITS
, 4*17,
2045 &coeff_token_len
[i
][0], 1, 1,
2046 &coeff_token_bits
[i
][0], 1, 1);
2050 init_vlc(&chroma_dc_total_zeros_vlc
[i
], CHROMA_DC_TOTAL_ZEROS_VLC_BITS
, 4,
2051 &chroma_dc_total_zeros_len
[i
][0], 1, 1,
2052 &chroma_dc_total_zeros_bits
[i
][0], 1, 1);
2054 for(i
=0; i
<15; i
++){
2055 init_vlc(&total_zeros_vlc
[i
], TOTAL_ZEROS_VLC_BITS
, 16,
2056 &total_zeros_len
[i
][0], 1, 1,
2057 &total_zeros_bits
[i
][0], 1, 1);
2061 init_vlc(&run_vlc
[i
], RUN_VLC_BITS
, 7,
2062 &run_len
[i
][0], 1, 1,
2063 &run_bits
[i
][0], 1, 1);
2065 init_vlc(&run7_vlc
, RUN7_VLC_BITS
, 16,
2066 &run_len
[6][0], 1, 1,
2067 &run_bits
[6][0], 1, 1);
2072 * Sets the intra prediction function pointers.
2074 static void init_pred_ptrs(H264Context
*h
){
2075 // MpegEncContext * const s = &h->s;
2077 h
->pred4x4
[VERT_PRED
]= pred4x4_vertical_c
;
2078 h
->pred4x4
[HOR_PRED
]= pred4x4_horizontal_c
;
2079 h
->pred4x4
[DC_PRED
]= pred4x4_dc_c
;
2080 h
->pred4x4
[DIAG_DOWN_LEFT_PRED
]= pred4x4_down_left_c
;
2081 h
->pred4x4
[DIAG_DOWN_RIGHT_PRED
]= pred4x4_down_right_c
;
2082 h
->pred4x4
[VERT_RIGHT_PRED
]= pred4x4_vertical_right_c
;
2083 h
->pred4x4
[HOR_DOWN_PRED
]= pred4x4_horizontal_down_c
;
2084 h
->pred4x4
[VERT_LEFT_PRED
]= pred4x4_vertical_left_c
;
2085 h
->pred4x4
[HOR_UP_PRED
]= pred4x4_horizontal_up_c
;
2086 h
->pred4x4
[LEFT_DC_PRED
]= pred4x4_left_dc_c
;
2087 h
->pred4x4
[TOP_DC_PRED
]= pred4x4_top_dc_c
;
2088 h
->pred4x4
[DC_128_PRED
]= pred4x4_128_dc_c
;
2090 h
->pred8x8
[DC_PRED8x8
]= pred8x8_dc_c
;
2091 h
->pred8x8
[VERT_PRED8x8
]= pred8x8_vertical_c
;
2092 h
->pred8x8
[HOR_PRED8x8
]= pred8x8_horizontal_c
;
2093 h
->pred8x8
[PLANE_PRED8x8
]= pred8x8_plane_c
;
2094 h
->pred8x8
[LEFT_DC_PRED8x8
]= pred8x8_left_dc_c
;
2095 h
->pred8x8
[TOP_DC_PRED8x8
]= pred8x8_top_dc_c
;
2096 h
->pred8x8
[DC_128_PRED8x8
]= pred8x8_128_dc_c
;
2098 h
->pred16x16
[DC_PRED8x8
]= pred16x16_dc_c
;
2099 h
->pred16x16
[VERT_PRED8x8
]= pred16x16_vertical_c
;
2100 h
->pred16x16
[HOR_PRED8x8
]= pred16x16_horizontal_c
;
2101 h
->pred16x16
[PLANE_PRED8x8
]= pred16x16_plane_c
;
2102 h
->pred16x16
[LEFT_DC_PRED8x8
]= pred16x16_left_dc_c
;
2103 h
->pred16x16
[TOP_DC_PRED8x8
]= pred16x16_top_dc_c
;
2104 h
->pred16x16
[DC_128_PRED8x8
]= pred16x16_128_dc_c
;
2107 static void free_tables(H264Context
*h
){
2108 av_freep(&h
->intra4x4_pred_mode
);
2109 av_freep(&h
->non_zero_count
);
2110 av_freep(&h
->slice_table_base
);
2111 h
->slice_table
= NULL
;
2113 av_freep(&h
->mb2b_xy
);
2114 av_freep(&h
->mb2b8_xy
);
2119 * needs widzh/height
2121 static int alloc_tables(H264Context
*h
){
2122 MpegEncContext
* const s
= &h
->s
;
2123 const int big_mb_num
= s
->mb_stride
* (s
->mb_height
+1);
2126 CHECKED_ALLOCZ(h
->intra4x4_pred_mode
, big_mb_num
* 8 * sizeof(uint8_t))
2127 CHECKED_ALLOCZ(h
->non_zero_count
, big_mb_num
* 16 * sizeof(uint8_t))
2128 CHECKED_ALLOCZ(h
->slice_table_base
, big_mb_num
* sizeof(uint8_t))
2130 memset(h
->slice_table_base
, -1, big_mb_num
* sizeof(uint8_t));
2131 h
->slice_table
= h
->slice_table_base
+ s
->mb_stride
+ 1;
2133 CHECKED_ALLOCZ(h
->mb2b_xy
, big_mb_num
* sizeof(uint16_t));
2134 CHECKED_ALLOCZ(h
->mb2b8_xy
, big_mb_num
* sizeof(uint16_t));
2135 for(y
=0; y
<s
->mb_height
; y
++){
2136 for(x
=0; x
<s
->mb_width
; x
++){
2137 const int mb_xy
= x
+ y
*s
->mb_stride
;
2138 const int b_xy
= 4*x
+ 4*y
*h
->b_stride
;
2139 const int b8_xy
= 2*x
+ 2*y
*h
->b8_stride
;
2141 h
->mb2b_xy
[mb_xy
]= b_xy
;
2142 h
->mb2b8_xy
[mb_xy
]= b8_xy
;
2152 static void common_init(H264Context
*h
){
2153 MpegEncContext
* const s
= &h
->s
;
2155 s
->width
= s
->avctx
->width
;
2156 s
->height
= s
->avctx
->height
;
2157 s
->codec_id
= s
->avctx
->codec
->id
;
2161 s
->decode
=1; //FIXME
2164 static int decode_init(AVCodecContext
*avctx
){
2165 H264Context
*h
= avctx
->priv_data
;
2166 MpegEncContext
* const s
= &h
->s
;
2171 s
->out_format
= FMT_H264
;
2172 s
->workaround_bugs
= avctx
->workaround_bugs
;
2175 s
->progressive_sequence
=1;
2176 // s->decode_mb= ff_h263_decode_mb;
2178 avctx
->pix_fmt
= PIX_FMT_YUV420P
;
2185 static void frame_start(H264Context
*h
){
2186 MpegEncContext
* const s
= &h
->s
;
2189 MPV_frame_start(s
, s
->avctx
);
2190 ff_er_frame_start(s
);
2193 assert(s
->linesize
&& s
->uvlinesize
);
2195 for(i
=0; i
<16; i
++){
2196 h
->block_offset
[i
]= 4*((scan8
[i
] - scan8
[0])&7) + 4*s
->linesize
*((scan8
[i
] - scan8
[0])>>3);
2197 h
->chroma_subblock_offset
[i
]= 2*((scan8
[i
] - scan8
[0])&7) + 2*s
->uvlinesize
*((scan8
[i
] - scan8
[0])>>3);
2200 h
->block_offset
[16+i
]=
2201 h
->block_offset
[20+i
]= 4*((scan8
[i
] - scan8
[0])&7) + 4*s
->uvlinesize
*((scan8
[i
] - scan8
[0])>>3);
2204 // s->decode= (s->flags&CODEC_FLAG_PSNR) || !s->encoding || s->current_picture.reference /*|| h->contains_intra*/ || 1;
2207 static void hl_decode_mb(H264Context
*h
){
2208 MpegEncContext
* const s
= &h
->s
;
2209 const int mb_x
= s
->mb_x
;
2210 const int mb_y
= s
->mb_y
;
2211 const int mb_xy
= mb_x
+ mb_y
*s
->mb_stride
;
2212 const int mb_type
= s
->current_picture
.mb_type
[mb_xy
];
2213 uint8_t *dest_y
, *dest_cb
, *dest_cr
;
2214 int linesize
, uvlinesize
/*dct_offset*/;
2223 dest_y
= s
->current_picture
.data
[0] + (mb_y
* 16* s
->linesize
) + mb_x
* 16;
2224 dest_cb
= s
->current_picture
.data
[1] + (mb_y
* 8 * s
->uvlinesize
) + mb_x
* 8;
2225 dest_cr
= s
->current_picture
.data
[2] + (mb_y
* 8 * s
->uvlinesize
) + mb_x
* 8;
2227 if (h
->mb_field_decoding_flag
) {
2228 linesize
= s
->linesize
* 2;
2229 uvlinesize
= s
->uvlinesize
* 2;
2230 if(mb_y
&1){ //FIXME move out of this func?
2231 dest_y
-= s
->linesize
*15;
2232 dest_cb
-= s
->linesize
*7;
2233 dest_cr
-= s
->linesize
*7;
2236 linesize
= s
->linesize
;
2237 uvlinesize
= s
->uvlinesize
;
2238 // dct_offset = s->linesize * 16;
2241 if(IS_INTRA(mb_type
)){
2242 if(!(s
->flags
&CODEC_FLAG_GRAY
)){
2243 h
->pred8x8
[ h
->chroma_pred_mode
](dest_cb
, uvlinesize
);
2244 h
->pred8x8
[ h
->chroma_pred_mode
](dest_cr
, uvlinesize
);
2247 if(IS_INTRA4x4(mb_type
)){
2249 for(i
=0; i
<16; i
++){
2250 uint8_t * const ptr
= dest_y
+ h
->block_offset
[i
];
2251 uint8_t *topright
= ptr
+ 4 - linesize
;
2252 const int topright_avail
= (h
->topright_samples_available
<<i
)&0x8000;
2253 const int dir
= h
->intra4x4_pred_mode_cache
[ scan8
[i
] ];
2256 if(!topright_avail
){
2257 tr
= ptr
[3 - linesize
]*0x01010101;
2258 topright
= (uint8_t*) &tr
;
2261 h
->pred4x4
[ dir
](ptr
, topright
, linesize
);
2262 if(h
->non_zero_count_cache
[ scan8
[i
] ]){
2263 if(s
->codec_id
== CODEC_ID_H264
)
2264 h264_add_idct_c(ptr
, h
->mb
+ i
*16, linesize
);
2266 svq3_add_idct_c(ptr
, h
->mb
+ i
*16, linesize
, s
->qscale
, 0);
2271 h
->pred16x16
[ h
->intra16x16_pred_mode
](dest_y
, linesize
);
2272 if(s
->codec_id
== CODEC_ID_H264
)
2273 h264_luma_dc_dequant_idct_c(h
->mb
, s
->qscale
);
2275 svq3_luma_dc_dequant_idct_c(h
->mb
, s
->qscale
);
2277 }else if(s
->codec_id
== CODEC_ID_H264
){
2278 hl_motion(h
, dest_y
, dest_cb
, dest_cr
,
2279 s
->dsp
.put_h264_qpel_pixels_tab
, s
->dsp
.put_h264_chroma_pixels_tab
,
2280 s
->dsp
.avg_h264_qpel_pixels_tab
, s
->dsp
.avg_h264_chroma_pixels_tab
);
2284 if(!IS_INTRA4x4(mb_type
)){
2285 if(s
->codec_id
== CODEC_ID_H264
){
2286 for(i
=0; i
<16; i
++){
2287 if(h
->non_zero_count_cache
[ scan8
[i
] ] || h
->mb
[i
*16]){ //FIXME benchmark weird rule, & below
2288 uint8_t * const ptr
= dest_y
+ h
->block_offset
[i
];
2289 h264_add_idct_c(ptr
, h
->mb
+ i
*16, linesize
);
2293 for(i
=0; i
<16; i
++){
2294 if(h
->non_zero_count_cache
[ scan8
[i
] ] || h
->mb
[i
*16]){ //FIXME benchmark weird rule, & below
2295 uint8_t * const ptr
= dest_y
+ h
->block_offset
[i
];
2296 svq3_add_idct_c(ptr
, h
->mb
+ i
*16, linesize
, s
->qscale
, IS_INTRA(mb_type
) ?
1 : 0);
2302 if(!(s
->flags
&CODEC_FLAG_GRAY
)){
2303 chroma_dc_dequant_idct_c(h
->mb
+ 16*16, h
->chroma_qp
);
2304 chroma_dc_dequant_idct_c(h
->mb
+ 16*16+4*16, h
->chroma_qp
);
2305 if(s
->codec_id
== CODEC_ID_H264
){
2306 for(i
=16; i
<16+4; i
++){
2307 if(h
->non_zero_count_cache
[ scan8
[i
] ] || h
->mb
[i
*16]){
2308 uint8_t * const ptr
= dest_cb
+ h
->block_offset
[i
];
2309 h264_add_idct_c(ptr
, h
->mb
+ i
*16, uvlinesize
);
2312 for(i
=20; i
<20+4; i
++){
2313 if(h
->non_zero_count_cache
[ scan8
[i
] ] || h
->mb
[i
*16]){
2314 uint8_t * const ptr
= dest_cr
+ h
->block_offset
[i
];
2315 h264_add_idct_c(ptr
, h
->mb
+ i
*16, uvlinesize
);
2319 for(i
=16; i
<16+4; i
++){
2320 if(h
->non_zero_count_cache
[ scan8
[i
] ] || h
->mb
[i
*16]){
2321 uint8_t * const ptr
= dest_cb
+ h
->block_offset
[i
];
2322 svq3_add_idct_c(ptr
, h
->mb
+ i
*16, uvlinesize
, chroma_qp
[s
->qscale
+ 12] - 12, 2);
2325 for(i
=20; i
<20+4; i
++){
2326 if(h
->non_zero_count_cache
[ scan8
[i
] ] || h
->mb
[i
*16]){
2327 uint8_t * const ptr
= dest_cr
+ h
->block_offset
[i
];
2328 svq3_add_idct_c(ptr
, h
->mb
+ i
*16, uvlinesize
, chroma_qp
[s
->qscale
+ 12] - 12, 2);
2335 static void decode_mb_cabac(H264Context
*h
){
2336 // MpegEncContext * const s = &h->s;
2340 * fills the default_ref_list.
2342 static int fill_default_ref_list(H264Context
*h
){
2343 MpegEncContext
* const s
= &h
->s
;
2345 Picture sorted_short_ref
[16];
2347 if(h
->slice_type
==B_TYPE
){
2351 for(out_i
=0; out_i
<h
->short_ref_count
; out_i
++){
2355 for(i
=0; i
<h
->short_ref_count
; i
++){
2356 const int poc
= h
->short_ref
[i
]->poc
;
2357 if(poc
> limit
&& poc
< best_poc
){
2363 assert(best_i
!= -1);
2366 sorted_short_ref
[out_i
]= *h
->short_ref
[best_i
];
2370 if(s
->picture_structure
== PICT_FRAME
){
2371 if(h
->slice_type
==B_TYPE
){
2372 const int current_poc
= s
->current_picture_ptr
->poc
;
2375 for(list
=0; list
<2; list
++){
2378 for(i
=0; i
<h
->short_ref_count
&& index
< h
->ref_count
[list
]; i
++){
2379 const int i2
= list ? h
->short_ref_count
- i
- 1 : i
;
2380 const int poc
= sorted_short_ref
[i2
].poc
;
2382 if(sorted_short_ref
[i2
].reference
!= 3) continue; //FIXME refernce field shit
2384 if((list
==1 && poc
> current_poc
) || (list
==0 && poc
< current_poc
)){
2385 h
->default_ref_list
[list
][index
]= sorted_short_ref
[i2
];
2386 h
->default_ref_list
[list
][index
++].pic_id
= sorted_short_ref
[i2
].frame_num
;
2390 for(i
=0; i
<h
->long_ref_count
&& index
< h
->ref_count
[ list
]; i
++){
2391 if(h
->long_ref
[i
]->reference
!= 3) continue;
2393 h
->default_ref_list
[ list
][index
]= *h
->long_ref
[i
];
2394 h
->default_ref_list
[ list
][index
++].pic_id
= i
;;
2397 if(h
->long_ref_count
> 1 && h
->short_ref_count
==0){
2398 Picture temp
= h
->default_ref_list
[1][0];
2399 h
->default_ref_list
[1][0] = h
->default_ref_list
[1][1];
2400 h
->default_ref_list
[1][0] = temp
;
2403 if(index
< h
->ref_count
[ list
])
2404 memset(&h
->default_ref_list
[list
][index
], 0, sizeof(Picture
)*(h
->ref_count
[ list
] - index
));
2408 for(i
=0; i
<h
->short_ref_count
&& index
< h
->ref_count
[0]; i
++){
2409 if(h
->short_ref
[i
]->reference
!= 3) continue; //FIXME refernce field shit
2410 h
->default_ref_list
[0][index
]= *h
->short_ref
[i
];
2411 h
->default_ref_list
[0][index
++].pic_id
= h
->short_ref
[i
]->frame_num
;
2413 for(i
=0; i
<h
->long_ref_count
&& index
< h
->ref_count
[0]; i
++){
2414 if(h
->long_ref
[i
]->reference
!= 3) continue;
2415 h
->default_ref_list
[0][index
]= *h
->long_ref
[i
];
2416 h
->default_ref_list
[0][index
++].pic_id
= i
;;
2418 if(index
< h
->ref_count
[0])
2419 memset(&h
->default_ref_list
[0][index
], 0, sizeof(Picture
)*(h
->ref_count
[0] - index
));
2422 if(h
->slice_type
==B_TYPE
){
2424 //FIXME second field balh
2430 static int decode_ref_pic_list_reordering(H264Context
*h
){
2431 MpegEncContext
* const s
= &h
->s
;
2434 if(h
->slice_type
==I_TYPE
|| h
->slice_type
==SI_TYPE
) return 0; //FIXME move beofre func
2436 for(list
=0; list
<2; list
++){
2437 memcpy(h
->ref_list
[list
], h
->default_ref_list
[list
], sizeof(Picture
)*h
->ref_count
[list
]);
2439 if(get_bits1(&s
->gb
)){
2440 int pred
= h
->curr_pic_num
;
2443 for(index
=0; ; index
++){
2444 int reordering_of_pic_nums_idc
= get_ue_golomb(&s
->gb
);
2449 if(index
>= h
->ref_count
[list
]){
2450 fprintf(stderr
, "reference count overflow\n");
2454 if(reordering_of_pic_nums_idc
<3){
2455 if(reordering_of_pic_nums_idc
<2){
2456 const int abs_diff_pic_num
= get_ue_golomb(&s
->gb
) + 1;
2458 if(abs_diff_pic_num
>= h
->max_pic_num
){
2459 fprintf(stderr
, "abs_diff_pic_num overflow\n");
2463 if(reordering_of_pic_nums_idc
== 0) pred
-= abs_diff_pic_num
;
2464 else pred
+= abs_diff_pic_num
;
2465 pred
&= h
->max_pic_num
- 1;
2467 for(i
= h
->ref_count
[list
]-1; i
>=index
; i
--){
2468 if(h
->ref_list
[list
][i
].pic_id
== pred
&& h
->ref_list
[list
][i
].long_ref
==0)
2472 pic_id
= get_ue_golomb(&s
->gb
); //long_term_pic_idx
2474 for(i
= h
->ref_count
[list
]-1; i
>=index
; i
--){
2475 if(h
->ref_list
[list
][i
].pic_id
== pic_id
&& h
->ref_list
[list
][i
].long_ref
==1)
2481 fprintf(stderr
, "reference picture missing during reorder\n");
2482 memset(&h
->ref_list
[list
][index
], 0, sizeof(Picture
)); //FIXME
2483 }else if(i
> index
){
2484 Picture tmp
= h
->ref_list
[list
][i
];
2485 for(; i
>index
; i
--){
2486 h
->ref_list
[list
][i
]= h
->ref_list
[list
][i
-1];
2488 h
->ref_list
[list
][index
]= tmp
;
2490 }else if(reordering_of_pic_nums_idc
==3)
2493 fprintf(stderr
, "illegal reordering_of_pic_nums_idc\n");
2499 if(h
->slice_type
!=B_TYPE
) break;
2504 static int pred_weight_table(H264Context
*h
){
2505 MpegEncContext
* const s
= &h
->s
;
2508 h
->luma_log2_weight_denom
= get_ue_golomb(&s
->gb
);
2509 h
->chroma_log2_weight_denom
= get_ue_golomb(&s
->gb
);
2511 for(list
=0; list
<2; list
++){
2512 for(i
=0; i
<h
->ref_count
[list
]; i
++){
2513 int luma_weight_flag
, chroma_weight_flag
;
2515 luma_weight_flag
= get_bits1(&s
->gb
);
2516 if(luma_weight_flag
){
2517 h
->luma_weight
[list
][i
]= get_se_golomb(&s
->gb
);
2518 h
->luma_offset
[list
][i
]= get_se_golomb(&s
->gb
);
2521 chroma_weight_flag
= get_bits1(&s
->gb
);
2522 if(chroma_weight_flag
){
2525 h
->chroma_weight
[list
][i
][j
]= get_se_golomb(&s
->gb
);
2526 h
->chroma_offset
[list
][i
][j
]= get_se_golomb(&s
->gb
);
2530 if(h
->slice_type
!= B_TYPE
) break;
2536 * instantaneos decoder refresh.
2538 static void idr(H264Context
*h
){
2541 for(i
=0; i
<h
->long_ref_count
; i
++){
2542 h
->long_ref
[i
]->reference
=0;
2543 h
->long_ref
[i
]= NULL
;
2545 h
->long_ref_count
=0;
2547 for(i
=0; i
<h
->short_ref_count
; i
++){
2548 h
->short_ref
[i
]->reference
=0;
2549 h
->short_ref
[i
]= NULL
;
2551 h
->short_ref_count
=0;
2556 * @return the removed picture or NULL if an error occures
2558 static Picture
* remove_short(H264Context
*h
, int frame_num
){
2559 MpegEncContext
* const s
= &h
->s
;
2562 if(s
->avctx
->debug
&FF_DEBUG_MMCO
)
2563 printf("remove short %d count %d\n", frame_num
, h
->short_ref_count
);
2565 for(i
=0; i
<h
->short_ref_count
; i
++){
2566 Picture
*pic
= h
->short_ref
[i
];
2567 if(s
->avctx
->debug
&FF_DEBUG_MMCO
)
2568 printf("%d %d %p\n", i
, pic
->frame_num
, pic
);
2569 if(pic
->frame_num
== frame_num
){
2570 h
->short_ref
[i
]= NULL
;
2571 memmove(&h
->short_ref
[i
], &h
->short_ref
[i
+1], (h
->short_ref_count
- i
- 1)*sizeof(Picture
*));
2572 h
->short_ref_count
--;
2581 * @return the removed picture or NULL if an error occures
2583 static Picture
* remove_long(H264Context
*h
, int i
){
2586 if(i
>= h
->long_ref_count
) return NULL
;
2587 pic
= h
->long_ref
[i
];
2588 if(pic
==NULL
) return NULL
;
2590 h
->long_ref
[i
]= NULL
;
2591 memmove(&h
->long_ref
[i
], &h
->long_ref
[i
+1], (h
->long_ref_count
- i
- 1)*sizeof(Picture
*));
2592 h
->long_ref_count
--;
2598 * Executes the reference picture marking (memory management control operations).
2600 static int execute_ref_pic_marking(H264Context
*h
, MMCO
*mmco
, int mmco_count
){
2601 MpegEncContext
* const s
= &h
->s
;
2603 int current_is_long
=0;
2606 if((s
->avctx
->debug
&FF_DEBUG_MMCO
) && mmco_count
==0)
2607 printf("no mmco here\n");
2609 for(i
=0; i
<mmco_count
; i
++){
2610 if(s
->avctx
->debug
&FF_DEBUG_MMCO
)
2611 printf("mmco:%d %d %d\n", h
->mmco
[i
].opcode
, h
->mmco
[i
].short_frame_num
, h
->mmco
[i
].long_index
);
2613 switch(mmco
[i
].opcode
){
2614 case MMCO_SHORT2UNUSED
:
2615 pic
= remove_short(h
, mmco
[i
].short_frame_num
);
2616 if(pic
==NULL
) return -1;
2619 case MMCO_SHORT2LONG
:
2620 pic
= remove_long(h
, mmco
[i
].long_index
);
2621 if(pic
) pic
->reference
=0;
2623 h
->long_ref
[ mmco
[i
].long_index
]= remove_short(h
, mmco
[i
].short_frame_num
);
2624 h
->long_ref
[ mmco
[i
].long_index
]->long_ref
=1;
2626 case MMCO_LONG2UNUSED
:
2627 pic
= remove_long(h
, mmco
[i
].long_index
);
2628 if(pic
==NULL
) return -1;
2632 pic
= remove_long(h
, mmco
[i
].long_index
);
2633 if(pic
) pic
->reference
=0;
2635 h
->long_ref
[ mmco
[i
].long_index
]= s
->current_picture_ptr
;
2636 h
->long_ref
[ mmco
[i
].long_index
]->long_ref
=1;
2637 h
->long_ref_count
++;
2641 case MMCO_SET_MAX_LONG
:
2642 assert(mmco
[i
].long_index
<= 16);
2643 while(mmco
[i
].long_index
< h
->long_ref_count
){
2644 pic
= remove_long(h
, mmco
[i
].long_index
);
2647 while(mmco
[i
].long_index
> h
->long_ref_count
){
2648 h
->long_ref
[ h
->long_ref_count
++ ]= NULL
;
2652 while(h
->short_ref_count
){
2653 pic
= remove_short(h
, h
->short_ref
[0]->frame_num
);
2656 while(h
->long_ref_count
){
2657 pic
= remove_long(h
, h
->long_ref_count
-1);
2665 if(!current_is_long
){
2666 pic
= remove_short(h
, s
->current_picture_ptr
->frame_num
);
2669 fprintf(stderr
, "illegal short term buffer state detected\n");
2672 if(h
->short_ref_count
)
2673 memmove(&h
->short_ref
[1], &h
->short_ref
[0], h
->short_ref_count
*sizeof(Picture
*));
2675 h
->short_ref
[0]= s
->current_picture_ptr
;
2676 h
->short_ref
[0]->long_ref
=0;
2677 h
->short_ref_count
++;
2683 static int decode_ref_pic_marking(H264Context
*h
){
2684 MpegEncContext
* const s
= &h
->s
;
2687 if(h
->nal_unit_type
== NAL_IDR_SLICE
){ //FIXME fields
2688 s
->broken_link
= get_bits1(&s
->gb
) -1;
2689 h
->mmco
[0].long_index
= get_bits1(&s
->gb
) - 1; // current_long_term_idx
2690 if(h
->mmco
[0].long_index
== -1)
2693 h
->mmco
[0].opcode
= MMCO_LONG
;
2697 if(get_bits1(&s
->gb
)){ // adaptive_ref_pic_marking_mode_flag
2698 for(i
= h
->mmco_index
; i
<MAX_MMCO_COUNT
; i
++) {
2699 MMCOOpcode opcode
= get_ue_golomb(&s
->gb
);;
2701 h
->mmco
[i
].opcode
= opcode
;
2702 if(opcode
==MMCO_SHORT2UNUSED
|| opcode
==MMCO_SHORT2LONG
){
2703 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
2704 /* if(h->mmco[i].short_frame_num >= h->short_ref_count || h->short_ref[ h->mmco[i].short_frame_num ] == NULL){
2705 fprintf(stderr, "illegal short ref in memory management control operation %d\n", mmco);
2709 if(opcode
==MMCO_SHORT2LONG
|| opcode
==MMCO_LONG2UNUSED
|| opcode
==MMCO_LONG
|| opcode
==MMCO_SET_MAX_LONG
){
2710 h
->mmco
[i
].long_index
= get_ue_golomb(&s
->gb
);
2711 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){
2712 fprintf(stderr
, "illegal long ref in memory management control operation %d\n", opcode
);
2717 if(opcode
> MMCO_LONG
){