Searched refs:OP_AVG (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libavcodec/x86/ |
D | vc1dsp_mmx.c | 48 #define OP_AVG(S,D) "pavgb " #S ", " #D " \n\t" macro 134 VC1_SHIFT2(OP_AVG, avg_) 312 MSPEL_FILTER13_8B (shift1, "0(%1,%4 )", "0(%1,%3,2)", "0(%1,%3 )", "0(%1 )", OP_AVG, avg_) 315 MSPEL_FILTER13_HOR_16B(shift1, "2*3(%1)", "2*2(%1)", "2*1(%1)", "2*0(%1)", OP_AVG, avg_) 319 MSPEL_FILTER13_8B (shift3, "0(%1 )", "0(%1,%3 )", "0(%1,%3,2)", "0(%1,%4 )", OP_AVG, avg_) 322 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 | 76 #define OP_AVG(dst, val) (dst) = (((dst) + (val) + 1)>>1) macro 81 PIXOP_BILINEAR(avg, OP_AVG, 8) 82 PIXOP_BILINEAR(avg, OP_AVG, 16) 83 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 | 1608 #define OP_AVG(S, D) \ macro 1757 VC1_HOR_16B_SHIFT2(OP_AVG, avg_) 1829 VC1_SHIFT2(OP_AVG, avg_) 2057 MSPEL_FILTER13_8B(shift1, %[offset_x3], %[offset_x2], %[offset_x1], $0, OP_AVG, avg_) 2060 MSPEL_FILTER13_HOR_16B(shift1, 6, 4, 2, 0, OP_AVG, avg_) 2064 MSPEL_FILTER13_8B(shift3, $0, %[offset_x1], %[offset_x2], %[offset_x3], OP_AVG, avg_) 2067 MSPEL_FILTER13_HOR_16B(shift3, 0, 2, 4, 6, OP_AVG, avg_)
|