Searched refs:get_qPy (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | hevc_filter.c | 133 static int get_qPy(HEVCContext *s, int xC, int yC) in get_qPy() function 525 const int qp = (get_qPy(s, x - 1, y) + get_qPy(s, x, y) + 1) >> 1; in deblocking_filter_CTB() 555 const int qp = (get_qPy(s, x, y - 1) + get_qPy(s, x, y) + 1) >> 1; in deblocking_filter_CTB() 592 … const int qp0 = (get_qPy(s, x - 1, y) + get_qPy(s, x, y) + 1) >> 1; in deblocking_filter_CTB() 593 … const int qp1 = (get_qPy(s, x - 1, y + (4 * v)) + get_qPy(s, x, y + (4 * v)) + 1) >> 1; in deblocking_filter_CTB() 625 …const int qp0 = bs0 == 2 ? (get_qPy(s, x, y - 1) + get_qPy(s, x, y) + 1) >> 1 … in deblocking_filter_CTB() 626 …const int qp1 = bs1 == 2 ? (get_qPy(s, x + (4 * h), y - 1) + get_qPy(s, x + (4 * h), y) + 1) >> 1 … in deblocking_filter_CTB()
|