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
07d5700d
Commit
07d5700d
authored
Apr 14, 2009
by
Cyril Mathé
Committed by
Rémi Denis-Courmont
Apr 17, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change strtof to us_strtof to avoid some problem
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
71587594
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/audio_filter/equalizer.c
modules/audio_filter/equalizer.c
+3
-1
No files found.
modules/audio_filter/equalizer.c
View file @
07d5700d
...
...
@@ -33,6 +33,7 @@
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_charset.h>
#include "vlc_aout.h"
...
...
@@ -588,7 +589,8 @@ static int BandsCallback( vlc_object_t *p_this, char const *psz_cmd,
break
;
/* Read dB -20/20 */
f
=
strtof
(
p
,
&
psz_next
);
f
=
us_strtof
(
p
,
&
psz_next
);
if
(
psz_next
==
p
)
break
;
/* no conversion */
...
...
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