Home
last modified time | relevance | path

Searched refs:IS_INTRA (Results 1 – 19 of 19) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dhevcpred_template.c39 #define IS_INTRA(x, y) \ in FUNC() macro
52 if (!IS_INTRA(i, -1)) \ in FUNC()
58 if (!IS_INTRA(i - 1, -1)) \ in FUNC()
62 if (!IS_INTRA(-1, i - 3)) \ in FUNC()
68 if (!IS_INTRA(-1, i)) \ in FUNC()
203 while (j > -1 && !IS_INTRA(-1, j)) in FUNC()
205 if (!IS_INTRA(-1, j)) { in FUNC()
207 while (j < size_max_x && !IS_INTRA(j, -1)) in FUNC()
214 while (j < size_max_x && !IS_INTRA(j, -1)) in FUNC()
237 if (!IS_INTRA(-1, - 1)) in FUNC()
[all …]
Derror_resilience.c156 int intra_j = IS_INTRA(s->cur_pic.mb_type[mb_index_j]); in guess_dc()
169 int intra_j = IS_INTRA(s->cur_pic.mb_type[mb_index_j]); in guess_dc()
184 int intra_j = IS_INTRA(s->cur_pic.mb_type[mb_index_j]); in guess_dc()
197 int intra_j = IS_INTRA(s->cur_pic.mb_type[mb_index_j]); in guess_dc()
256 …int left_intra = IS_INTRA(s->cur_pic.mb_type[( b_x >> is_luma) + (b_y >> is_luma) * s->mb_s… in h_block_filter()
257 …int right_intra = IS_INTRA(s->cur_pic.mb_type[((b_x + 1) >> is_luma) + (b_y >> is_luma) * s->mb_s… in h_block_filter()
325 …int top_intra = IS_INTRA(s->cur_pic.mb_type[(b_x >> is_luma) + ( b_y >> is_luma) * s->mb_… in v_block_filter()
326 …int bottom_intra = IS_INTRA(s->cur_pic.mb_type[(b_x >> is_luma) + ((b_y + 1) >> is_luma) * s->mb_… in v_block_filter()
421 if (IS_INTRA(s->cur_pic.mb_type[mb_xy])) in guess_mv()
446 if (IS_INTRA(s->cur_pic.mb_type[mb_xy])) in guess_mv()
[all …]
Dh264_mb_template.c153 if (IS_INTRA(mb_type)) { in FUNC()
197 if (IS_INTRA(mb_type) && h->ps.sps->profile_idc == 244 && in FUNC()
238 … h->ps.pps->dequant4_coeff[IS_INTRA(mb_type) ? 1 : 4][qp[0]][0]); in FUNC()
241 … h->ps.pps->dequant4_coeff[IS_INTRA(mb_type) ? 2 : 5][qp[1]][0]); in FUNC()
325 if (IS_INTRA(mb_type)) { in FUNC()
Dh264_direct.c375 if (!IS_INTRA(mb_type_col[y8]) && !sl->ref_list[1][0].parent->long_ref && in pred_spatial_direct_motion()
406 if (!IS_INTRA(mb_type_col[0]) && !sl->ref_list[1][0].parent->long_ref && in pred_spatial_direct_motion()
444 if (!IS_INTRA(mb_type_col[0]) && !sl->ref_list[1][0].parent->long_ref && in pred_spatial_direct_motion()
610 if (IS_INTRA(mb_type_col[y8])) { in pred_temp_direct_motion()
649 if (IS_INTRA(mb_type_col[0])) { in pred_temp_direct_motion()
677 if (IS_INTRA(mb_type_col[0])) { in pred_temp_direct_motion()
Dh264_loopfilter.c270 if( IS_INTRA(mb_type) ) { in h264_filter_mb_fast_internal()
376 if( IS_INTRA(left_type) ) in h264_filter_mb_fast_internal()
378 if( IS_INTRA(top_type) ) in h264_filter_mb_fast_internal()
511 if (IS_INTRA(mb_type | h->cur_pic.mb_type[mbn_xy])) { in filter_mb_dir()
549 if( IS_INTRA(mb_type|mbm_type)) { in filter_mb_dir()
636 if( IS_INTRA(mb_type)) { in filter_mb_dir()
748 if( IS_INTRA(mb_type) ) { in ff_h264_filter_mb()
767 if( IS_INTRA( mbn_type ) ) in ff_h264_filter_mb()
Dmpegutils.c218 else if (IS_INTRA(mb_type) && IS_ACPRED(mb_type)) in ff_print_debug_info2()
250 else if (IS_INTRA(mb_type) || IS_16X16(mb_type)) in ff_print_debug_info2()
318 } else if ((IS_INTRA(mb_type) && IS_ACPRED(mb_type)) || in ff_print_debug_info2()
Dh264_mvpred.h466 if (IS_INTRA(mb_type)) { in fill_decode_caches()
467 int type_mask = h->ps.pps->constrained_intra_pred ? IS_INTRA(-1) : -1; in fill_decode_caches()
554 uint32_t top_empty = CABAC(h) && !IS_INTRA(mb_type) ? 0 : 0x40404040; in fill_decode_caches()
585 nnz_cache[3 + 8 * 12 + 2 * 8 * i] = CABAC(h) && !IS_INTRA(mb_type) ? 0 : 64; in fill_decode_caches()
594 sl->top_cbp = IS_INTRA(mb_type) ? 0x7CF : 0x00F; in fill_decode_caches()
601 sl->left_cbp = IS_INTRA(mb_type) ? 0x7CF : 0x00F; in fill_decode_caches()
Dmpegutils.h78 #define IS_INTRA(a) ((a) & 7) macro
Drv30.c162 if(IS_INTRA(mbtype) || IS_SEPARATE_DC(mbtype)) in rv30_loop_filter()
164 if(IS_INTRA(mbtype)) in rv30_loop_filter()
Dh264_cabac.c1886 int cqm = (IS_INTRA( mb_type ) ? 0:3) + p; in decode_cabac_luma_residual()
2065 if( IS_INTRA( mb_type ) ) { in ff_h264_decode_mb_cabac()
2338 if( dct8x8_allowed && (cbp&15) && !IS_INTRA( mb_type ) ) { in ff_h264_decode_mb_cabac()
2355 nnz_cache[3+8*12 + 2*8*i]= IS_INTRA(mb_type) ? 64 : 0; in ff_h264_decode_mb_cabac()
2359 uint32_t top_empty = !IS_INTRA(mb_type) ? 0 : 0x40404040; in ff_h264_decode_mb_cabac()
2444 … qmul = h->ps.pps->dequant4_coeff[c+1+(IS_INTRA( mb_type ) ? 0:3)][sl->chroma_qp[c]]; in ff_h264_decode_mb_cabac()
2468 … qmul = h->ps.pps->dequant4_coeff[c+1+(IS_INTRA( mb_type ) ? 0:3)][sl->chroma_qp[c]]; in ff_h264_decode_mb_cabac()
Drv40.c374 if(IS_INTRA(mbtype) || IS_SEPARATE_DC(mbtype)) in rv40_loop_filter()
376 if(IS_INTRA(mbtype)) in rv40_loop_filter()
413 mb_strong[i] = IS_INTRA(mbtype[i]) || IS_SEPARATE_DC(mbtype[i]); in rv40_loop_filter()
Dh264_cavlc.c666 int cqm = (IS_INTRA( mb_type ) ? 0:3)+p; in decode_luma_residual()
804 if(IS_INTRA(mb_type)){ in ff_h264_decode_mb_cavlc()
1096 if(dct8x8_allowed && (cbp&15) && !IS_INTRA(mb_type)){ in ff_h264_decode_mb_cavlc()
1162 …const uint32_t *qmul = h->ps.pps->dequant4_coeff[chroma_idx+1+(IS_INTRA( mb_type ) ? 0:3)][sl->chr… in ff_h264_decode_mb_cavlc()
Dmpegvideo_motion.c692 if (mb_y == 0 || IS_INTRA(cur_frame->mb_type[xy - s->mb_stride])) { in apply_obmc()
702 if (mb_x == 0 || IS_INTRA(cur_frame->mb_type[xy - 1])) { in apply_obmc()
711 if (mb_x + 1 >= s->mb_width || IS_INTRA(cur_frame->mb_type[xy + 1])) { in apply_obmc()
Dsvq3.c629 s->qscale, IS_INTRA(mb_type) ? 1 : 0); in hl_decode_mb_idct_luma()
695 if (IS_INTRA(mb_type)) { in hl_decode_mb()
943 cbp = IS_INTRA(mb_type) ? ff_h264_golomb_to_intra4x4_cbp[vlc] in svq3_decode_mb()
1013 if (IS_INTRA(mb_type)) in svq3_decode_mb()
Drv34.c416 if(IS_INTRA(s->current_picture_ptr->mb_type[mb_pos])){ in rv34_decode_inter_mb_header()
894 if(IS_INTRA(next_bt) || IS_SKIP(next_bt)){ in rv34_decode_mv()
1237 if (IS_INTRA(s->current_picture_ptr->mb_type[mb_pos])){ in rv34_decode_inter_macroblock()
Dituh263dec.c827 s->mb_intra = IS_INTRA(mb_type); in ff_h263_decode_mb()
Dmpeg12dec.c679 if (IS_INTRA(mb_type)) { in mpeg_decode_mb()
729 if (IS_INTRA(mb_type)) { in mpeg_decode_mb()
Dmpeg4videodec.c913 if (IS_INTRA(s->current_picture.mb_type[xy])) { in mpeg4_decode_partition_b()
1336 s->mb_intra = IS_INTRA(mb_type); in mpeg4_decode_partitioned_mb()
Dh264_slice.c2371 if (IS_INTRA(mb_type)) in fill_filter_caches()