Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
bff9ec70
Commit
bff9ec70
authored
Aug 08, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
equalizer: fix out of range test case
(cherry picked from commit ee77bd03d27f987750aab648016376f58d72f7bf)
parent
00688943
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
test/libvlc/equalizer.c
test/libvlc/equalizer.c
+2
-1
No files found.
test/libvlc/equalizer.c
View file @
bff9ec70
...
...
@@ -3,6 +3,7 @@
*/
#include <string.h>
#include <math.h>
#include "test.h"
...
...
@@ -118,7 +119,7 @@ static void test_equalizer (const char ** argv, int argc)
// amp at index out of range
assert
(
0
.
0
f
==
libvlc_audio_equalizer_get_amp_at_index
(
equalizer
,
u_bands
));
assert
(
isnan
(
libvlc_audio_equalizer_get_amp_at_index
(
equalizer
,
u_bands
)
));
assert
(
-
1
==
libvlc_audio_equalizer_set_amp_at_index
(
equalizer
,
19
.
9
f
,
u_bands
));
// no equalizer
...
...
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