mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 01:25:25 +00:00
dct-test: Add the missing ff_ prefix to the altivec functions
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
89baf35996
commit
0733375059
@ -53,8 +53,8 @@ void ff_bfin_idct(DCTELEM *block);
|
||||
void ff_bfin_fdct(DCTELEM *block);
|
||||
|
||||
// ALTIVEC
|
||||
void fdct_altivec(DCTELEM *block);
|
||||
//void idct_altivec(DCTELEM *block);?? no routine
|
||||
void ff_fdct_altivec(DCTELEM *block);
|
||||
//void ff_idct_altivec(DCTELEM *block);?? no routine
|
||||
|
||||
// ARM
|
||||
void ff_j_rev_dct_arm(DCTELEM *data);
|
||||
@ -95,7 +95,7 @@ static const struct algo fdct_tab[] = {
|
||||
#endif
|
||||
|
||||
#if HAVE_ALTIVEC
|
||||
{ "altivecfdct", fdct_altivec, NO_PERM, AV_CPU_FLAG_ALTIVEC },
|
||||
{ "altivecfdct", ff_fdct_altivec, NO_PERM, AV_CPU_FLAG_ALTIVEC },
|
||||
#endif
|
||||
|
||||
#if ARCH_BFIN
|
||||
|
Loading…
Reference in New Issue
Block a user