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
b85e9d31
Commit
b85e9d31
authored
Sep 01, 2011
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
resample: fix set but unused variable (lfe) warning.
parent
f067d8a6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
resample.c
libavcodec/resample.c
+2
-2
No files found.
libavcodec/resample.c
View file @
b85e9d31
...
...
@@ -121,11 +121,11 @@ static void surround_to_stereo(short **output, short *input, int channels, int s
short
l
,
r
;
for
(
i
=
0
;
i
<
samples
;
i
++
)
{
int
fl
,
fr
,
c
,
rl
,
rr
,
lfe
;
int
fl
,
fr
,
c
,
rl
,
rr
;
fl
=
input
[
0
];
fr
=
input
[
1
];
c
=
input
[
2
];
lfe
=
input
[
3
];
//
lfe = input[3];
rl
=
input
[
4
];
rr
=
input
[
5
];
...
...
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