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
2e74a5ab
Commit
2e74a5ab
authored
Feb 23, 2012
by
Christophe GISQUET
Committed by
Ronald S. Bultje
Feb 23, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SBR DSP: use intptr_t for the ixh parameter.
Signed-off-by:
Ronald S. Bultje
<
rsbultje@gmail.com
>
parent
31632e73
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
sbrdsp_init_arm.c
libavcodec/arm/sbrdsp_init_arm.c
+1
-1
sbrdsp.c
libavcodec/sbrdsp.c
+1
-1
sbrdsp.h
libavcodec/sbrdsp.h
+3
-1
No files found.
libavcodec/arm/sbrdsp_init_arm.c
View file @
2e74a5ab
...
...
@@ -30,7 +30,7 @@ void ff_sbr_qmf_post_shuffle_neon(float W[32][2], const float *z);
void
ff_sbr_qmf_deint_neg_neon
(
float
*
v
,
const
float
*
src
);
void
ff_sbr_qmf_deint_bfly_neon
(
float
*
v
,
const
float
*
src0
,
const
float
*
src1
);
void
ff_sbr_hf_g_filt_neon
(
float
(
*
Y
)[
2
],
const
float
(
*
X_high
)[
40
][
2
],
const
float
*
g_filt
,
int
m_max
,
int
ixh
);
const
float
*
g_filt
,
int
m_max
,
int
ptr_t
ixh
);
void
ff_sbr_hf_gen_neon
(
float
(
*
X_high
)[
2
],
const
float
(
*
X_low
)[
2
],
const
float
alpha0
[
2
],
const
float
alpha1
[
2
],
float
bw
,
int
start
,
int
end
);
...
...
libavcodec/sbrdsp.c
View file @
2e74a5ab
...
...
@@ -151,7 +151,7 @@ static void sbr_hf_gen_c(float (*X_high)[2], const float (*X_low)[2],
}
static
void
sbr_hf_g_filt_c
(
float
(
*
Y
)[
2
],
const
float
(
*
X_high
)[
40
][
2
],
const
float
*
g_filt
,
int
m_max
,
int
ixh
)
const
float
*
g_filt
,
int
m_max
,
int
ptr_t
ixh
)
{
int
m
;
...
...
libavcodec/sbrdsp.h
View file @
2e74a5ab
...
...
@@ -21,6 +21,8 @@
#ifndef LIBAVCODEC_SBRDSP_H
#define LIBAVCODEC_SBRDSP_H
#include <stdint.h>
typedef
struct
SBRDSPContext
{
void
(
*
sum64x5
)(
float
*
z
);
float
(
*
sum_square
)(
float
(
*
x
)[
2
],
int
n
);
...
...
@@ -34,7 +36,7 @@ typedef struct SBRDSPContext {
const
float
alpha0
[
2
],
const
float
alpha1
[
2
],
float
bw
,
int
start
,
int
end
);
void
(
*
hf_g_filt
)(
float
(
*
Y
)[
2
],
const
float
(
*
X_high
)[
40
][
2
],
const
float
*
g_filt
,
int
m_max
,
int
ixh
);
const
float
*
g_filt
,
int
m_max
,
int
ptr_t
ixh
);
void
(
*
hf_apply_noise
[
4
])(
float
(
*
Y
)[
2
],
const
float
*
s_m
,
const
float
*
q_filt
,
int
noise
,
int
kx
,
int
m_max
);
...
...
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