Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
451
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
b56c7ee2
Commit
b56c7ee2
authored
11 years ago
by
Rémi Denis-Courmont
Browse files
Options
Downloads
Patches
Plain Diff
equalizer: fix inverted parameters in test case
parent
27be9196
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/libvlc/equalizer.c
+1
-1
1 addition, 1 deletion
test/libvlc/equalizer.c
with
1 addition
and
1 deletion
test/libvlc/equalizer.c
+
1
−
1
View file @
b56c7ee2
...
...
@@ -139,7 +139,7 @@ static void test_equalizer (const char ** argv, int argc)
log
(
"Testing equalizer-bands string limit
\n
"
);
for
(
unsigned
i
=
0
;
i
<
u_bands
;
i
++
)
assert
(
0
==
libvlc_audio_equalizer_set_amp_at_index
(
equalizer
,
i
,
-
19
.
1234567
f
));
assert
(
0
==
libvlc_audio_equalizer_set_amp_at_index
(
equalizer
,
-
19
.
1234567
f
,
i
));
assert
(
0
==
libvlc_media_player_set_equalizer
(
mp
,
equalizer
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment