x86: dsputil: Move avg_pixels16_mmx() out of rnd_template.c

The function does not do any rounding, so there is no point in
keeping it in a round template file.
This commit is contained in:
Diego Biurrun
2013-04-27 22:52:26 +02:00
parent 9c112a6158
commit 9328062321
5 changed files with 29 additions and 24 deletions

View File

@@ -1028,7 +1028,7 @@ void ff_put_cavs_qpel16_mc00_mmx(uint8_t *dst, uint8_t *src, ptrdiff_t stride)
void ff_avg_cavs_qpel16_mc00_mmx(uint8_t *dst, uint8_t *src, ptrdiff_t stride)
{
avg_pixels16_mmx(dst, src, stride, 16);
ff_avg_pixels16_mmx(dst, src, stride, 16);
}
/* VC-1-specific */