Home | History | Annotate | Download | only in enc

Lines Matching refs:step

52 static inline void do_filter2(uint8_t* p, int step) {
53 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
57 p[-step] = clip1[255 + p0 + a2];
62 static inline void do_filter4(uint8_t* p, int step) {
63 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
68 p[-2*step] = clip1[255 + p1 + a3];
69 p[- step] = clip1[255 + p0 + a2];
71 p[ step] = clip1[255 + q1 - a3];
75 static inline int hev(const uint8_t* p, int step, int thresh) {
76 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
80 static inline int needs_filter(const uint8_t* p, int step, int thresh) {
81 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
85 static inline int needs_filter2(const uint8_t* p, int step, int t, int it) {
86 const int p3 = p[-4*step], p2 = p[-3*step], p1 = p[-2*step], p0 = p[-step];
87 const int q0 = p[0], q1 = p[step], q2 = p[2*step], q3 = p[3*step];