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
3a1867de
Commit
3a1867de
authored
Jan 02, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wavpack: fix typos in previous cosmetic clean-up commit
parent
513c238f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
wavpack.c
libavcodec/wavpack.c
+2
-2
No files found.
libavcodec/wavpack.c
View file @
3a1867de
...
@@ -759,7 +759,7 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
...
@@ -759,7 +759,7 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
void
*
samples
=
data
;
void
*
samples
=
data
;
int
samplecount
;
int
samplecount
;
int
got_terms
=
0
,
got_weights
=
0
,
got_samples
=
0
,
int
got_terms
=
0
,
got_weights
=
0
,
got_samples
=
0
,
got_entropy
=
0
,
got_bs
=
0
,
got_float
=
0
;
got_hybrid
=
0
;
got_entropy
=
0
,
got_bs
=
0
,
got_float
=
0
,
got_hybrid
=
0
;
const
uint8_t
*
orig_buf
=
buf
;
const
uint8_t
*
orig_buf
=
buf
;
const
uint8_t
*
buf_end
=
buf
+
buf_size
;
const
uint8_t
*
buf_end
=
buf
+
buf_size
;
int
i
,
j
,
id
,
size
,
ssize
,
weights
,
t
;
int
i
,
j
,
id
,
size
,
ssize
,
weights
,
t
;
...
@@ -887,7 +887,7 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
...
@@ -887,7 +887,7 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
continue
;
continue
;
}
}
t
=
0
;
t
=
0
;
for
i
=
s
->
terms
-
1
;
(
i
>=
0
)
&&
(
t
<
size
);
i
--
)
{
for
(
i
=
s
->
terms
-
1
;
(
i
>=
0
)
&&
(
t
<
size
);
i
--
)
{
if
(
s
->
decorr
[
i
].
value
>
8
)
{
if
(
s
->
decorr
[
i
].
value
>
8
)
{
s
->
decorr
[
i
].
samplesA
[
0
]
=
wp_exp2
(
AV_RL16
(
buf
));
buf
+=
2
;
s
->
decorr
[
i
].
samplesA
[
0
]
=
wp_exp2
(
AV_RL16
(
buf
));
buf
+=
2
;
s
->
decorr
[
i
].
samplesA
[
1
]
=
wp_exp2
(
AV_RL16
(
buf
));
buf
+=
2
;
s
->
decorr
[
i
].
samplesA
[
1
]
=
wp_exp2
(
AV_RL16
(
buf
));
buf
+=
2
;
...
...
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