lavc/ppc/hpeldsp_altivec: Remove declaration of two unused variables.

This commit is contained in:
Carl Eugen Hoyos 2017-11-01 22:41:09 +01:00
parent 3df4939988
commit 42a9722a5c
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ void ff_avg_pixels16_altivec(uint8_t *block, const uint8_t *pixels, ptrdiff_t li
/* next one assumes that ((line_size % 8) == 0) */
static void avg_pixels8_altivec(uint8_t * block, const uint8_t * pixels, ptrdiff_t line_size, int h)
{
register vector unsigned char pixelsv1, pixelsv2, pixelsv, blockv;
register vector unsigned char pixelsv, blockv;
int i;
for (i = 0; i < h; i++) {