Home | History | Annotate | Download | only in dsp

Lines Matching refs:FMT

94 #define CONVERT8(FMT, XSTEP, N, src_y, src_uv, out, cur_x) {            \
151 STR_ ## FMT(out + off, y, u, v); \
177 #define CONVERT1(FMT, XSTEP, N, src_y, src_uv, rgb, cur_x) { \
184 VP8YuvTo ## FMT(y, u, v, rgb + off); \
188 #define CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, uv, \
191 CONVERT8(FMT, XSTEP, len, top_y, uv, top_dst, cur_x) \
194 CONVERT8(FMT, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x) \
198 #define CONVERT2RGB_1(FMT, XSTEP, top_y, bottom_y, uv, \
201 CONVERT1(FMT, XSTEP, len, top_y, uv, top_dst, cur_x); \
204 CONVERT1(FMT, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x); \
208 #define NEON_UPSAMPLE_FUNC(FUNC_NAME, FMT, XSTEP) \
235 VP8YuvTo ## FMT(top_y[0], u0, v0, top_dst); \
240 VP8YuvTo ## FMT(bottom_y[0], u0, v0, bottom_dst); \
246 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
256 CONVERT2RGB_1(FMT, XSTEP, top_y, bottom_y, r_uv, \