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
75f11901
Commit
75f11901
authored
Feb 11, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mips: Move MMI function declarations to a header.
This fixes compilation with -Werror=missing-prototypes.
parent
d1c4ec7f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
dsputil_mmi.c
libavcodec/ps2/dsputil_mmi.c
+0
-4
mmi.h
libavcodec/ps2/mmi.h
+8
-0
No files found.
libavcodec/ps2/dsputil_mmi.c
View file @
75f11901
...
@@ -25,10 +25,6 @@
...
@@ -25,10 +25,6 @@
#include "libavcodec/dsputil.h"
#include "libavcodec/dsputil.h"
#include "mmi.h"
#include "mmi.h"
void
ff_mmi_idct_put
(
uint8_t
*
dest
,
int
line_size
,
DCTELEM
*
block
);
void
ff_mmi_idct_add
(
uint8_t
*
dest
,
int
line_size
,
DCTELEM
*
block
);
void
ff_mmi_idct
(
DCTELEM
*
block
);
static
void
clear_blocks_mmi
(
DCTELEM
*
blocks
)
static
void
clear_blocks_mmi
(
DCTELEM
*
blocks
)
{
{
__asm__
volatile
(
__asm__
volatile
(
...
...
libavcodec/ps2/mmi.h
View file @
75f11901
...
@@ -21,6 +21,14 @@
...
@@ -21,6 +21,14 @@
#ifndef AVCODEC_PS2_MMI_H
#ifndef AVCODEC_PS2_MMI_H
#define AVCODEC_PS2_MMI_H
#define AVCODEC_PS2_MMI_H
#include <stdint.h>
#include "libavcodec/dsputil.h"
void
ff_mmi_idct_put
(
uint8_t
*
dest
,
int
line_size
,
DCTELEM
*
block
);
void
ff_mmi_idct_add
(
uint8_t
*
dest
,
int
line_size
,
DCTELEM
*
block
);
void
ff_mmi_idct
(
DCTELEM
*
block
);
#define align16 __attribute__ ((aligned (16)))
#define align16 __attribute__ ((aligned (16)))
/*
/*
...
...
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