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
5fbf9c12
Commit
5fbf9c12
authored
Apr 09, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_noise: fix build without mmx*inline
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
9dc88ac3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
vf_noise.c
libavfilter/vf_noise.c
+6
-6
No files found.
libavfilter/vf_noise.c
View file @
5fbf9c12
...
...
@@ -214,10 +214,10 @@ static inline void line_noise_c(uint8_t *dst, const uint8_t *src, int8_t *noise,
#define ASMALIGN(ZEROBITS) ".p2align " #ZEROBITS "\n\t"
#if HAVE_MMX_INLINE
static
void
line_noise_mmx
(
uint8_t
*
dst
,
const
uint8_t
*
src
,
int8_t
*
noise
,
int
len
,
int
shift
)
{
#if HAVE_MMX_INLINE
x86_reg
mmx_len
=
len
&
(
~
7
);
noise
+=
shift
;
...
...
@@ -241,13 +241,13 @@ static void line_noise_mmx(uint8_t *dst, const uint8_t *src,
);
if
(
mmx_len
!=
len
)
line_noise_c
(
dst
+
mmx_len
,
src
+
mmx_len
,
noise
+
mmx_len
,
len
-
mmx_len
,
0
);
}
#endif
}
#if HAVE_MMXEXT_INLINE
static
void
line_noise_mmxext
(
uint8_t
*
dst
,
const
uint8_t
*
src
,
int8_t
*
noise
,
int
len
,
int
shift
)
{
#if HAVE_MMXEXT_INLINE
x86_reg
mmx_len
=
len
&
(
~
7
);
noise
+=
shift
;
...
...
@@ -271,8 +271,8 @@ static void line_noise_mmxext(uint8_t *dst, const uint8_t *src,
);
if
(
mmx_len
!=
len
)
line_noise_c
(
dst
+
mmx_len
,
src
+
mmx_len
,
noise
+
mmx_len
,
len
-
mmx_len
,
0
);
}
#endif
}
static
inline
void
line_noise_avg_c
(
uint8_t
*
dst
,
const
uint8_t
*
src
,
int
len
,
int8_t
**
shift
)
...
...
@@ -286,10 +286,10 @@ static inline void line_noise_avg_c(uint8_t *dst, const uint8_t *src,
}
}
#if HAVE_MMX_INLINE
static
inline
void
line_noise_avg_mmx
(
uint8_t
*
dst
,
const
uint8_t
*
src
,
int
len
,
int8_t
**
shift
)
{
#if HAVE_MMX_INLINE
x86_reg
mmx_len
=
len
&
(
~
7
);
__asm__
volatile
(
...
...
@@ -327,8 +327,8 @@ static inline void line_noise_avg_mmx(uint8_t *dst, const uint8_t *src,
int8_t
*
shift2
[
3
]
=
{
shift
[
0
]
+
mmx_len
,
shift
[
1
]
+
mmx_len
,
shift
[
2
]
+
mmx_len
};
line_noise_avg_c
(
dst
+
mmx_len
,
src
+
mmx_len
,
len
-
mmx_len
,
shift2
);
}
}
#endif
}
static
void
noise
(
uint8_t
*
dst
,
const
uint8_t
*
src
,
int
dst_linesize
,
int
src_linesize
,
...
...
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