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
2cbc1ec6
Commit
2cbc1ec6
authored
Mar 09, 2010
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix indentation after r22414.
Originally committed as revision 22415 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
d00261a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
wmadec.c
libavcodec/wmadec.c
+10
-10
No files found.
libavcodec/wmadec.c
View file @
2cbc1ec6
...
...
@@ -791,18 +791,18 @@ static int wma_decode_frame(WMACodecContext *s, int16_t *samples)
n
=
s
->
frame_len
;
incr
=
s
->
nb_channels
;
if
(
s
->
dsp
.
float_to_int16_interleave
==
ff_float_to_int16_interleave_c
)
{
for
(
ch
=
0
;
ch
<
s
->
nb_channels
;
ch
++
)
{
ptr
=
samples
+
ch
;
iptr
=
s
->
frame_out
[
ch
];
for
(
ch
=
0
;
ch
<
s
->
nb_channels
;
ch
++
)
{
ptr
=
samples
+
ch
;
iptr
=
s
->
frame_out
[
ch
];
for
(
i
=
0
;
i
<
n
;
i
++
)
{
*
ptr
=
av_clip_int16
(
lrintf
(
*
iptr
++
));
ptr
+=
incr
;
for
(
i
=
0
;
i
<
n
;
i
++
)
{
*
ptr
=
av_clip_int16
(
lrintf
(
*
iptr
++
));
ptr
+=
incr
;
}
/* prepare for next block */
memmove
(
&
s
->
frame_out
[
ch
][
0
],
&
s
->
frame_out
[
ch
][
s
->
frame_len
],
s
->
frame_len
*
sizeof
(
float
));
}
/* prepare for next block */
memmove
(
&
s
->
frame_out
[
ch
][
0
],
&
s
->
frame_out
[
ch
][
s
->
frame_len
],
s
->
frame_len
*
sizeof
(
float
));
}
}
else
{
float
*
output
[
MAX_CHANNELS
];
for
(
ch
=
0
;
ch
<
MAX_CHANNELS
;
ch
++
)
...
...
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