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
5a48caa3
Commit
5a48caa3
authored
Feb 14, 2014
by
Christophe Gisquet
Committed by
Michael Niedermayer
Feb 15, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dca: replace some memcpy by AV_COPY128
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
133b3420
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
dcadec.c
libavcodec/dcadec.c
+1
-3
No files found.
libavcodec/dcadec.c
View file @
5a48caa3
...
...
@@ -1402,9 +1402,7 @@ static int dca_subsubframe(DCAContext *s, int base_channel, int block_index)
/* Backup predictor history for adpcm */
for
(
k
=
base_channel
;
k
<
s
->
prim_channels
;
k
++
)
for
(
l
=
0
;
l
<
s
->
vq_start_subband
[
k
];
l
++
)
memcpy
(
s
->
subband_samples_hist
[
k
][
l
],
&
subband_samples
[
k
][
l
][
4
],
4
*
sizeof
(
subband_samples
[
0
][
0
][
0
]));
AV_COPY128
(
s
->
subband_samples_hist
[
k
][
l
],
&
subband_samples
[
k
][
l
][
4
]);
return
0
;
}
...
...
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