Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
35562dc9
Commit
35562dc9
authored
Dec 27, 2007
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix make checkheaders.
Originally committed as revision 11331 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
3035cb67
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
0 deletions
+14
-0
dsputil_altivec.h
libavcodec/ppc/dsputil_altivec.h
+2
-0
gcc_fixes.h
libavcodec/ppc/gcc_fixes.h
+2
-0
imgresample_altivec.h
libavcodec/ppc/imgresample_altivec.h
+2
-0
util_altivec.h
libavcodec/ppc/util_altivec.h
+8
-0
No files found.
libavcodec/ppc/dsputil_altivec.h
View file @
35562dc9
...
...
@@ -23,6 +23,8 @@
#ifndef FFMPEG_DSPUTIL_ALTIVEC_H
#define FFMPEG_DSPUTIL_ALTIVEC_H
#include <stdint.h>
#include "dsputil_ppc.h"
extern
int
has_altivec
(
void
);
...
...
libavcodec/ppc/gcc_fixes.h
View file @
35562dc9
...
...
@@ -23,6 +23,8 @@
#ifndef FFMPEG_GCC_FIXES_H
#define FFMPEG_GCC_FIXES_H
#include "config.h"
#ifdef HAVE_ALTIVEC_H
#include <altivec.h>
#endif
...
...
libavcodec/ppc/imgresample_altivec.h
View file @
35562dc9
...
...
@@ -19,6 +19,8 @@
#ifndef FFMPEG_IMGRESAMPLE_ALTIVEC_H
#define FFMPEG_IMGRESAMPLE_ALTIVEC_H
#include <stdint.h>
void
v_resample16_altivec
(
uint8_t
*
dst
,
int
dst_width
,
const
uint8_t
*
src
,
int
wrap
,
int16_t
*
filter
);
#endif
/* FFMPEG_IMGRESAMPLE_ALTIVEC_H */
libavcodec/ppc/util_altivec.h
View file @
35562dc9
...
...
@@ -24,6 +24,14 @@
#ifndef FFMPEG_UTIL_ALTIVEC_H
#define FFMPEG_UTIL_ALTIVEC_H
#include <stdint.h>
#include "config.h"
#ifdef HAVE_ALTIVEC_H
#include <altivec.h>
#endif
// used to build registers permutation vectors (vcprm)
// the 's' are for words in the _s_econd vector
#define WORD_0 0x00,0x01,0x02,0x03
...
...
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