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
bd63ecec
Commit
bd63ecec
authored
May 06, 2016
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/dcadsp: use LOCAL_ALIGNED_32 instead of LOCAL_ALIGNED(32, ...)
parent
abb69a2f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
dcadsp.c
libavcodec/dcadsp.c
+4
-4
No files found.
libavcodec/dcadsp.c
View file @
bd63ecec
...
...
@@ -122,7 +122,7 @@ static void sub_qmf32_float_c(SynthFilterContext *synth,
const
float
*
filter_coeff
,
ptrdiff_t
npcmblocks
,
float
scale
)
{
LOCAL_ALIGNED
(
32
,
float
,
input
,
[
32
]);
LOCAL_ALIGNED
_32
(
float
,
input
,
[
32
]);
int
i
,
j
;
for
(
j
=
0
;
j
<
npcmblocks
;
j
++
)
{
...
...
@@ -151,7 +151,7 @@ static void sub_qmf64_float_c(SynthFilterContext *synth,
const
float
*
filter_coeff
,
ptrdiff_t
npcmblocks
,
float
scale
)
{
LOCAL_ALIGNED
(
32
,
float
,
input
,
[
64
]);
LOCAL_ALIGNED
_32
(
float
,
input
,
[
64
]);
int
i
,
j
;
if
(
!
subband_samples_hi
)
...
...
@@ -243,7 +243,7 @@ static void sub_qmf32_fixed_c(SynthFilterContext *synth,
int32_t
*
hist1
,
int
*
offset
,
int32_t
*
hist2
,
const
int32_t
*
filter_coeff
,
ptrdiff_t
npcmblocks
)
{
LOCAL_ALIGNED
(
32
,
int32_t
,
input
,
[
32
]);
LOCAL_ALIGNED
_32
(
int32_t
,
input
,
[
32
]);
int
i
,
j
;
for
(
j
=
0
;
j
<
npcmblocks
;
j
++
)
{
...
...
@@ -267,7 +267,7 @@ static void sub_qmf64_fixed_c(SynthFilterContext *synth,
int32_t
*
hist1
,
int
*
offset
,
int32_t
*
hist2
,
const
int32_t
*
filter_coeff
,
ptrdiff_t
npcmblocks
)
{
LOCAL_ALIGNED
(
32
,
int32_t
,
input
,
[
64
]);
LOCAL_ALIGNED
_32
(
int32_t
,
input
,
[
64
]);
int
i
,
j
;
if
(
!
subband_samples_hi
)
...
...
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