Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
63b51e51
Commit
63b51e51
authored
May 04, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iconv_macosx: never used, removed
parent
38276a46
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
9 deletions
+0
-9
src/libvlc.h
src/libvlc.h
+0
-2
src/misc/darwin_specific.c
src/misc/darwin_specific.c
+0
-7
No files found.
src/libvlc.h
View file @
63b51e51
...
...
@@ -125,8 +125,6 @@ struct libvlc_global_data_t
char
*
psz_vlcpath
;
#elif defined( __APPLE__ )
char
*
psz_vlcpath
;
vlc_iconv_t
iconv_macosx
;
/* for HFS+ file names */
vlc_mutex_t
iconv_lock
;
#elif defined( WIN32 )
char
*
psz_vlcpath
;
#endif
...
...
src/misc/darwin_specific.c
View file @
63b51e51
...
...
@@ -168,9 +168,6 @@ void system_Init( libvlc_int_t *p_this, int *pi_argc, const char *ppsz_argv[] )
}
CFRelease
(
all_locales
);
}
vlc_mutex_init
(
&
vlc_global
()
->
iconv_lock
);
vlc_global
()
->
iconv_macosx
=
vlc_iconv_open
(
"UTF-8"
,
"UTF-8-MAC"
);
}
/*****************************************************************************
...
...
@@ -190,9 +187,5 @@ void system_End( libvlc_int_t *p_this )
{
(
void
)
p_this
;
free
(
vlc_global
()
->
psz_vlcpath
);
if
(
vlc_global
()
->
iconv_macosx
!=
(
vlc_iconv_t
)
-
1
)
vlc_iconv_close
(
vlc_global
()
->
iconv_macosx
);
vlc_mutex_destroy
(
&
vlc_global
()
->
iconv_lock
);
}
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