Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
377df083
Commit
377df083
authored
Jul 24, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* equalizer : [0] isn't cool, use a define.
parent
58b6fda7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/audio_filter/equalizer.c
modules/audio_filter/equalizer.c
+3
-3
No files found.
modules/audio_filter/equalizer.c
View file @
377df083
...
...
@@ -91,7 +91,7 @@ vlc_module_end();
/*****************************************************************************
* Local prototypes
*****************************************************************************/
#define EQZ_BANDS_MAX 10
typedef
struct
aout_filter_sys_t
{
/* Filter static config */
...
...
@@ -210,7 +210,7 @@ typedef struct
float
f_alpha
;
float
f_beta
;
float
f_gamma
;
}
band
[
0
];
}
band
[
EQZ_BANDS_MAX
];
}
eqz_config_t
;
...
...
@@ -253,7 +253,7 @@ typedef struct
char
*
psz_name
;
int
i_band
;
float
f_preamp
;
float
f_amp
[
0
];
float
f_amp
[
EQZ_BANDS_MAX
];
}
eqz_preset_t
;
static
const
eqz_preset_t
eqz_preset_flat_10b
=
...
...
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