mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-02-13 19:05:37 +00:00
ppc: fmtconvert: Drop two unused variables.
This commit is contained in:
parent
9ec8971060
commit
4eef2ed707
1 changed files with 2 additions and 2 deletions
|
|
@ -92,8 +92,8 @@ static void float_to_int16_altivec(int16_t *dst, const float *src, long len)
|
|||
static void float_to_int16_stride_altivec(int16_t *dst, const float *src,
|
||||
long len, int stride)
|
||||
{
|
||||
int i, j;
|
||||
vector signed short d, s;
|
||||
int i;
|
||||
vector signed short d;
|
||||
|
||||
for (i = 0; i < len - 7; i += 8) {
|
||||
d = float_to_int16_one_altivec(src + i);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue