Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
0d793db1
Commit
0d793db1
authored
Jun 03, 2011
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
swscale: remove unused COMPILE_TEMPLATE_ALTIVEC.
parent
f190f676
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
7 deletions
+0
-7
swscale_template.c
libswscale/ppc/swscale_template.c
+0
-4
swscale.c
libswscale/swscale.c
+0
-3
No files found.
libswscale/ppc/swscale_template.c
View file @
0d793db1
...
...
@@ -19,11 +19,8 @@
*/
#if COMPILE_TEMPLATE_ALTIVEC
#include "swscale_altivec_template.c"
#endif
#if COMPILE_TEMPLATE_ALTIVEC
static
inline
void
RENAME
(
yuv2yuvX
)(
SwsContext
*
c
,
const
int16_t
*
lumFilter
,
const
int16_t
**
lumSrc
,
int
lumFilterSize
,
const
int16_t
*
chrFilter
,
const
int16_t
**
chrUSrc
,
...
...
@@ -61,7 +58,6 @@ static inline void RENAME(yuv2packedX)(SwsContext *c, const int16_t *lumFilter,
chrFilter
,
chrUSrc
,
chrVSrc
,
chrFilterSize
,
alpSrc
,
dest
,
dstW
,
dstY
);
}
#endif
static
void
RENAME
(
sws_init_swScale
)(
SwsContext
*
c
)
{
...
...
libswscale/swscale.c
View file @
0d793db1
...
...
@@ -1186,14 +1186,11 @@ static inline void monoblack2Y(uint8_t *dst, const uint8_t *src, int width, uint
//Plain C versions
#define COMPILE_TEMPLATE_MMX2 0
#define COMPILE_TEMPLATE_ALTIVEC 0
#include "swscale_template.c"
#if HAVE_ALTIVEC
#undef RENAME
#undef COMPILE_TEMPLATE_ALTIVEC
#define COMPILE_TEMPLATE_ALTIVEC 1
#define RENAME(a) a ## _altivec
#include "ppc/swscale_template.c"
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment