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
1a583c0c
Commit
1a583c0c
authored
Feb 18, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fdct: Move ppc-specific declarations to a header in the ppc directory
parent
5dcc2015
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
7 deletions
+5
-7
dct-test.c
libavcodec/dct-test.c
+1
-3
fdct.h
libavcodec/ppc/fdct.h
+3
-3
fdctdsp.c
libavcodec/ppc/fdctdsp.c
+1
-1
No files found.
libavcodec/dct-test.c
View file @
1a583c0c
...
...
@@ -45,14 +45,12 @@
#include "aandcttab.h"
#include "faandct.h"
#include "faanidct.h"
#include "ppc/fdct.h"
#include "x86/fdct.h"
#include "x86/idct_xvid.h"
#include "x86/simple_idct.h"
#include "dctref.h"
// ALTIVEC
void
ff_fdct_altivec
(
int16_t
*
block
);
// ARM
void
ff_j_rev_dct_arm
(
int16_t
*
data
);
void
ff_simple_idct_arm
(
int16_t
*
data
);
...
...
libavcodec/ppc/fdct
dsp
.h
→
libavcodec/ppc/fdct.h
View file @
1a583c0c
...
...
@@ -16,11 +16,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef AVCODEC_PPC_FDCT
DSP
_H
#define AVCODEC_PPC_FDCT
DSP
_H
#ifndef AVCODEC_PPC_FDCT_H
#define AVCODEC_PPC_FDCT_H
#include <stdint.h>
void
ff_fdct_altivec
(
int16_t
*
block
);
#endif
/* AVCODEC_PPC_FDCT
DSP
_H */
#endif
/* AVCODEC_PPC_FDCT_H */
libavcodec/ppc/fdctdsp.c
View file @
1a583c0c
...
...
@@ -27,7 +27,7 @@
#include "libavutil/cpu.h"
#include "libavutil/ppc/cpu.h"
#include "libavcodec/fdctdsp.h"
#include "fdct
dsp
.h"
#include "fdct.h"
#if HAVE_ALTIVEC
...
...
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