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
47e6dfa4
Commit
47e6dfa4
authored
Jun 07, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use unsigned
parent
b012efbd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/audio_filter/param_eq.c
modules/audio_filter/param_eq.c
+4
-4
No files found.
modules/audio_filter/param_eq.c
View file @
47e6dfa4
...
...
@@ -39,7 +39,7 @@ static int Open ( vlc_object_t * );
static
void
Close
(
vlc_object_t
*
);
static
void
CalcPeakEQCoeffs
(
float
,
float
,
float
,
float
,
float
*
);
static
void
CalcShelfEQCoeffs
(
float
,
float
,
float
,
int
,
float
,
float
*
);
static
void
ProcessEQ
(
float
*
,
float
*
,
float
*
,
int
,
int
,
float
*
,
int
);
static
void
ProcessEQ
(
float
*
,
float
*
,
float
*
,
unsigned
,
unsigned
,
float
*
,
unsigned
);
static
void
DoWork
(
aout_instance_t
*
,
aout_filter_t
*
,
aout_buffer_t
*
,
aout_buffer_t
*
);
...
...
@@ -301,10 +301,10 @@ static void CalcShelfEQCoeffs( float f0, float slope, float gainDB, int high,
size of coeffs is 5*eqCount
*/
void
ProcessEQ
(
float
*
src
,
float
*
dest
,
float
*
state
,
int
channels
,
int
samples
,
float
*
coeffs
,
int
eqCount
)
unsigned
channels
,
unsigned
samples
,
float
*
coeffs
,
unsigned
eqCount
)
{
int
i
,
chn
,
eq
;
unsigned
i
,
chn
,
eq
;
float
b0
,
b1
,
b2
,
a1
,
a2
;
float
x
,
y
=
0
;
float
*
src1
,
*
dest1
;
...
...
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