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
56f81d71
Commit
56f81d71
authored
Mar 08, 2006
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modules/misc/rtsp.c is using us_strtod
parent
9e90e119
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
include/charset.h
include/charset.h
+1
-1
include/vlc_symbols.h
include/vlc_symbols.h
+6
-0
No files found.
include/charset.h
View file @
56f81d71
...
...
@@ -52,7 +52,7 @@ VLC_EXPORT( char *, __vlc_fix_readdir_charset, ( vlc_object_t *, const char * )
extern
double
i18n_strtod
(
const
char
*
,
char
**
);
extern
double
i18n_atof
(
const
char
*
);
extern
double
us_strtod
(
const
char
*
,
char
**
);
VLC_EXPORT
(
double
,
us_strtod
,
(
const
char
*
,
char
**
)
);
VLC_EXPORT
(
double
,
us_atof
,
(
const
char
*
)
);
# ifdef __cplusplus
...
...
include/vlc_symbols.h
View file @
56f81d71
...
...
@@ -477,6 +477,8 @@ struct module_symbols_t
vlm_media_t
*
(
*
vlm_MediaSearch_inner
)
(
vlm_t
*
,
const
char
*
);
int
(
*
playlist_TreeMove_inner
)
(
playlist_t
*
,
playlist_item_t
*
,
playlist_item_t
*
,
int
,
int
);
const
char
*
(
*
config_GetDataDir_inner
)
(
const
vlc_object_t
*
);
double
(
*
us_atof_inner
)
(
const
char
*
);
double
(
*
us_strtod_inner
)
(
const
char
*
,
char
**
);
};
# if defined (__PLUGIN__)
# define aout_FiltersCreatePipeline (p_symbols)->aout_FiltersCreatePipeline_inner
...
...
@@ -934,6 +936,8 @@ struct module_symbols_t
# define vlm_MediaSearch (p_symbols)->vlm_MediaSearch_inner
# define playlist_TreeMove (p_symbols)->playlist_TreeMove_inner
# define config_GetDataDir (p_symbols)->config_GetDataDir_inner
# define us_atof (p_symbols)->us_atof_inner
# define us_strtod (p_symbols)->us_strtod_inner
# elif defined (HAVE_DYNAMIC_PLUGINS) && !defined (__BUILTIN__)
/******************************************************************
* STORE_SYMBOLS: store VLC APIs into p_symbols for plugin access.
...
...
@@ -1394,6 +1398,8 @@ struct module_symbols_t
((p_symbols)->vlm_MediaSearch_inner) = vlm_MediaSearch; \
((p_symbols)->playlist_TreeMove_inner) = playlist_TreeMove; \
((p_symbols)->config_GetDataDir_inner) = config_GetDataDir; \
((p_symbols)->us_atof_inner) = us_atof; \
((p_symbols)->us_strtod_inner) = us_strtod; \
(p_symbols)->net_ConvertIPv4_deprecated = NULL; \
(p_symbols)->__stats_CounterGet_deprecated = NULL; \
(p_symbols)->__stats_TimerDumpAll_deprecated = NULL; \
...
...
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