/third_party/ffmpeg/libavcodec/ |
D | h264_direct.c | 277 fill_rectangle(&sl->ref_cache[0][scan8[0]], 4, 4, 8, (uint8_t)ref[0], 1); in pred_spatial_direct_motion() 278 fill_rectangle(&sl->ref_cache[1][scan8[0]], 4, 4, 8, (uint8_t)ref[1], 1); in pred_spatial_direct_motion() 279 fill_rectangle(&sl->mv_cache[0][scan8[0]], 4, 4, 8, 0, 4); in pred_spatial_direct_motion() 280 fill_rectangle(&sl->mv_cache[1][scan8[0]], 4, 4, 8, 0, 4); in pred_spatial_direct_motion() 371 fill_rectangle(&sl->ref_cache[0][scan8[i8 * 4]], 2, 2, 8, in pred_spatial_direct_motion() 373 fill_rectangle(&sl->ref_cache[1][scan8[i8 * 4]], 2, 2, 8, in pred_spatial_direct_motion() 394 fill_rectangle(&sl->mv_cache[0][scan8[i8 * 4]], 2, 2, 8, a, 4); in pred_spatial_direct_motion() 395 fill_rectangle(&sl->mv_cache[1][scan8[i8 * 4]], 2, 2, 8, b, 4); in pred_spatial_direct_motion() 404 fill_rectangle(&sl->ref_cache[0][scan8[0]], 4, 4, 8, (uint8_t)ref[0], 1); in pred_spatial_direct_motion() 405 fill_rectangle(&sl->ref_cache[1][scan8[0]], 4, 4, 8, (uint8_t)ref[1], 1); in pred_spatial_direct_motion() [all …]
|
D | h264_cabac.c | 1706 fill_rectangle(&sl->non_zero_count_cache[scan8[n]], 2, 2, 8, coeff_count, 1); in decode_cabac_residual_internal() 1852 fill_rectangle(&sl->non_zero_count_cache[scan8[n]], 2, 2, 8, 0, 1); in decode_cabac_residual_nondc() 1883 fill_rectangle(&sl->non_zero_count_cache[scan8[16*p]], 4, 4, 8, 0, 1); in decode_cabac_luma_residual() 1901 fill_rectangle(&sl->non_zero_count_cache[scan8[4*i8x8+16*p]], 2, 2, 8, 0, 1); in decode_cabac_luma_residual() 2073 fill_rectangle(&sl->intra4x4_pred_mode_cache[scan8[i]], 2, 2, 8, mode, 1); in ff_h264_decode_mb_cabac() 2121 … fill_rectangle(&sl->direct_cache[scan8[4*i]], 2, 2, 8, (sl->sub_mb_type[i] >> 1) & 0xFF, 1); in ff_h264_decode_mb_cabac() 2159 fill_rectangle(sl->mvd_cache[list][scan8[4*i]], 2, 2, 8, 0, 2); in ff_h264_decode_mb_cabac() 2206 fill_rectangle(sl->mv_cache [list][ scan8[4*i] ], 2, 2, 8, 0, 4); in ff_h264_decode_mb_cabac() 2207 fill_rectangle(sl->mvd_cache[list][ scan8[4*i] ], 2, 2, 8, 0, 2); in ff_h264_decode_mb_cabac() 2213 fill_rectangle(sl->mvd_cache[0][scan8[0]], 4, 4, 8, 0, 2); in ff_h264_decode_mb_cabac() [all …]
|
D | h264_cavlc.c | 657 fill_rectangle(&sl->non_zero_count_cache[scan8[p*16]], 4, 4, 8, 0, 1); in decode_luma_residual() 820 fill_rectangle(&sl->intra4x4_pred_mode_cache[ scan8[i] ], 2, 2, 8, mode, 1); in ff_h264_decode_mb_cavlc() 969 fill_rectangle(&sl->ref_cache[list][ scan8[0] ], 4, 4, 8, val, 1); in ff_h264_decode_mb_cavlc() 979 fill_rectangle(sl->mv_cache[list][ scan8[0] ], 4, 4, 8, pack16to32(mx,my), 4); in ff_h264_decode_mb_cavlc() 1002 fill_rectangle(&sl->ref_cache[list][ scan8[0] + 16*i ], 4, 2, 8, val, 1); in ff_h264_decode_mb_cavlc() 1017 fill_rectangle(sl->mv_cache[list][ scan8[0] + 16*i ], 4, 2, 8, val, 4); in ff_h264_decode_mb_cavlc() 1040 fill_rectangle(&sl->ref_cache[list][ scan8[0] + 2*i ], 2, 4, 8, val, 1); in ff_h264_decode_mb_cavlc() 1055 fill_rectangle(sl->mv_cache[list][ scan8[0] + 2*i ], 2, 4, 8, val, 4); in ff_h264_decode_mb_cavlc() 1169 fill_rectangle(&sl->non_zero_count_cache[scan8[16]], 4, 4, 8, 0, 1); in ff_h264_decode_mb_cavlc() 1170 fill_rectangle(&sl->non_zero_count_cache[scan8[32]], 4, 4, 8, 0, 1); in ff_h264_decode_mb_cavlc() [all …]
|
D | h264_mb_template.c | 81 fill_rectangle(ref, 4, 4, 8, (16 + *ref) ^ (sl->mb_y & 1), 1); in FUNC() 86 fill_rectangle(&sl->ref_cache[list][scan8[i]], 2, 2, in FUNC() 291 fill_rectangle(ref, 4, 4, 8, (16 + *ref) ^ (sl->mb_y & 1), 1); in FUNC() 296 fill_rectangle(&sl->ref_cache[list][scan8[i]], 2, 2, in FUNC()
|
D | h264_mvpred.h | 269 fill_rectangle(&sl->ref_cache[0][scan8[0]], 4, 4, 8, 0, 1); in pred_pskip_motion() 349 fill_rectangle(sl->mv_cache[0][scan8[0]], 4, 4, 8, pack16to32(mx, my), 4); in pred_pskip_motion() 353 fill_rectangle(sl->mv_cache[0][scan8[0]], 4, 4, 8, 0, 4); in pred_pskip_motion() 727 fill_rectangle(direct_cache, 4, 4, 8, MB_TYPE_16x16 >> 1, 1); in fill_decode_caches()
|
D | rectangle.h | 41 static av_always_inline void fill_rectangle(void *vp, int w, int h, int stride, uint32_t val, int s… in fill_rectangle() function
|
D | rv34.c | 52 fill_rectangle(dst, 1, 2, stride, 0, 4); in ZERO8x2() 53 fill_rectangle(((uint8_t*)(dst))+4, 1, 2, stride, 0, 4); in ZERO8x2() 358 fill_rectangle(intra_types, 4, 4, r->intra_types_stride, t, sizeof(intra_types[0])); in rv34_decode_intra_mb_header() 403 fill_rectangle(intra_types, 4, 4, r->intra_types_stride, 0, sizeof(intra_types[0])); in rv34_decode_inter_mb_header() 412 fill_rectangle(intra_types, 4, 4, r->intra_types_stride, t, sizeof(intra_types[0])); in rv34_decode_inter_mb_header() 1131 fill_rectangle(r->avail_cache + 6, 2, 2, 4, 0, 4); in rv34_output_intra() 1207 fill_rectangle(r->avail_cache + 6, 2, 2, 4, 1, 4); in rv34_decode_inter_macroblock() 1309 fill_rectangle(r->avail_cache + 6, 2, 2, 4, 1, 4); in rv34_decode_intra_macroblock()
|
D | h264dec.c | 93 fill_rectangle(&h->cur_pic.ref_index[0][4 * sl->mb_xy], in h264_er_decode_mb() 95 fill_rectangle(&sl->ref_cache[0][scan8[0]], 4, 4, 8, ref, 1); in h264_er_decode_mb() 96 fill_rectangle(sl->mv_cache[0][scan8[0]], 4, 4, 8, in h264_er_decode_mb()
|
D | h264dec.h | 795 fill_rectangle(&h->cur_pic.ref_index[0][b8_xy], in write_back_motion()
|
D | svq3.c | 606 fill_rectangle(s->cur_pic->motion_val[dir][b_xy], in svq3_mc_dir()
|
D | h264_slice.c | 2287 fill_rectangle(mv_dst, 4, 4, 8, pack16to32(0, 0), 4); in fill_filter_caches_inter()
|
/third_party/qrcodegen/rust-no-heap/src/ |
D | lib.rs | 498 result.fill_rectangle(6, 0, 1, size); in function_modules_marked() 499 result.fill_rectangle(0, 6, size, 1); in function_modules_marked() 502 result.fill_rectangle(0, 0, 9, 9); in function_modules_marked() 503 result.fill_rectangle(size - 8, 0, 8, 9); in function_modules_marked() 504 result.fill_rectangle(0, size - 8, 9, 8); in function_modules_marked() 513 result.fill_rectangle(pos0 - 2, pos1 - 2, 5, 5); in function_modules_marked() 520 result.fill_rectangle(size - 11, 0, 3, 6); in function_modules_marked() 521 result.fill_rectangle(0, size - 11, 6, 3); in function_modules_marked() 632 fn fill_rectangle(&mut self, left: u8, top: u8, width: u8, height: u8) { in fill_rectangle() method
|
/third_party/ffmpeg/fftools/ |
D | ffplay.c | 828 static inline void fill_rectangle(int x, int y, int w, int h) in fill_rectangle() function 1134 fill_rectangle(s->xleft + x, ys, 1, y); in video_audio_display() 1145 fill_rectangle(s->xleft, y, s->width, 1); in video_audio_display()
|