Searched refs:OP_AVG (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libavcodec/x86/ |
D | vc1dsp_mmx.c | 47 #define OP_AVG(S,D) "pavgb " #S ", " #D " \n\t" macro 133 VC1_SHIFT2(OP_AVG, avg_) 311 MSPEL_FILTER13_8B (shift1, "0(%1,%4 )", "0(%1,%3,2)", "0(%1,%3 )", "0(%1 )", OP_AVG, avg_) 314 MSPEL_FILTER13_HOR_16B(shift1, "2*3(%1)", "2*2(%1)", "2*1(%1)", "2*0(%1)", OP_AVG, avg_) 318 MSPEL_FILTER13_8B (shift3, "0(%1 )", "0(%1,%3 )", "0(%1,%3,2)", "0(%1,%4 )", OP_AVG, avg_) 321 MSPEL_FILTER13_HOR_16B(shift3, "2*0(%1)", "2*1(%1)", "2*2(%1)", "2*3(%1)", OP_AVG, avg_)
|
D | vc1dsp_mc.asm | 37 %macro OP_AVG 2 ; dst, src 193 HOR_16B_SHIFT2 OP_AVG, avg
|
/third_party/ffmpeg/libavcodec/ |
D | diracdsp.c | 78 #define OP_AVG(dst, val) (dst) = (((dst) + (val) + 1)>>1) macro 83 PIXOP_BILINEAR(avg, OP_AVG, 8) 84 PIXOP_BILINEAR(avg, OP_AVG, 16) 85 PIXOP_BILINEAR(avg, OP_AVG, 32)
|
D | pngdec.c | 296 #define OP_AVG(x, s, l) (((((x) + (l)) >> 1) + (s)) & 0xff) in ff_png_filter_row() macro 297 UNROLL_FILTER(OP_AVG); in ff_png_filter_row()
|
/third_party/ffmpeg/libavcodec/mips/ |
D | vc1dsp_mmi.c | 1606 #define OP_AVG(S, D) \ macro 1754 VC1_HOR_16B_SHIFT2(OP_AVG, avg_) 1825 VC1_SHIFT2(OP_AVG, avg_) 2049 MSPEL_FILTER13_8B(shift1, %[offset_x3], %[offset_x2], %[offset_x1], $0, OP_AVG, avg_) 2052 MSPEL_FILTER13_HOR_16B(shift1, 6, 4, 2, 0, OP_AVG, avg_) 2056 MSPEL_FILTER13_8B(shift3, $0, %[offset_x1], %[offset_x2], %[offset_x3], OP_AVG, avg_) 2059 MSPEL_FILTER13_HOR_16B(shift3, 0, 2, 4, 6, OP_AVG, avg_)
|