Home
last modified time | relevance | path

Searched refs:bs_width (Results 1 – 3 of 3) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dhevc_filter.c522 const int bs0 = s->vertical_bs[(x + y * s->bs_width) >> 2]; in deblocking_filter_CTB()
523 const int bs1 = s->vertical_bs[(x + (y + 4) * s->bs_width) >> 2]; in deblocking_filter_CTB()
552 const int bs0 = s->horizontal_bs[( x + y * s->bs_width) >> 2]; in deblocking_filter_CTB()
553 const int bs1 = s->horizontal_bs[((x + 4) + y * s->bs_width) >> 2]; in deblocking_filter_CTB()
588 const int bs0 = s->vertical_bs[(x + y * s->bs_width) >> 2]; in deblocking_filter_CTB()
589 const int bs1 = s->vertical_bs[(x + (y + (4 * v)) * s->bs_width) >> 2]; in deblocking_filter_CTB()
622 const int bs0 = s->horizontal_bs[( x + y * s->bs_width) >> 2]; in deblocking_filter_CTB()
623 const int bs1 = s->horizontal_bs[((x + 4 * h) + y * s->bs_width) >> 2]; in deblocking_filter_CTB()
761 s->horizontal_bs[((x0 + i) + y0 * s->bs_width) >> 2] = bs; in ff_hevc_deblocking_boundary_strengths()
799 s->vertical_bs[(x0 + (y0 + i) * s->bs_width) >> 2] = bs; in ff_hevc_deblocking_boundary_strengths()
[all …]
Dhevcdec.h517 int bs_width; member
Dhevcdec.c98 s->bs_width = (width >> 2) + 1; in pic_arrays_init()
125 s->horizontal_bs = av_mallocz_array(s->bs_width, s->bs_height); in pic_arrays_init()
126 s->vertical_bs = av_mallocz_array(s->bs_width, s->bs_height); in pic_arrays_init()
2904 memset(s->horizontal_bs, 0, s->bs_width * s->bs_height); in hevc_frame_start()
2905 memset(s->vertical_bs, 0, s->bs_width * s->bs_height); in hevc_frame_start()