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
bb5f959c
Commit
bb5f959c
authored
Nov 08, 2006
by
Marian Durkovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support non-ANSI CP characters from command line / click on media file
parent
4ab7aa39
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
3 deletions
+31
-3
src/libvlc-common.c
src/libvlc-common.c
+31
-3
No files found.
src/libvlc-common.c
View file @
bb5f959c
...
...
@@ -111,6 +111,8 @@ static void Version ( void );
#ifdef WIN32
static
void
ShowConsole
(
vlc_bool_t
);
static
void
PauseConsole
(
void
);
extern
void
__wgetmainargs
(
int
*
argc
,
wchar_t
***
wargv
,
wchar_t
***
wenviron
,
int
expand_wildcards
,
int
*
startupinfo
);
#endif
static
int
ConsoleWidth
(
void
);
...
...
@@ -1042,6 +1044,17 @@ static int GetFilenames( libvlc_int_t *p_vlc, int i_argc, char *ppsz_argv[] )
{
int
i_opt
,
i_options
;
#ifdef WIN32
wchar_t
**
wargv
,
**
wenvp
;
int
si
=
{
0
};
if
(
GetVersion
()
<
0x80000000
)
{
/* fetch unicode argv[] for Windows NT and above */
__wgetmainargs
(
&
i_opt
,
&
wargv
,
&
wenvp
,
0
,
&
si
);
}
#endif
/* We assume that the remaining parameters are filenames
* and their input options */
for
(
i_opt
=
i_argc
-
1
;
i_opt
>=
optind
;
i_opt
--
)
...
...
@@ -1059,6 +1072,20 @@ static int GetFilenames( libvlc_int_t *p_vlc, int i_argc, char *ppsz_argv[] )
/* TODO: write an internal function of this one, to avoid
* unnecessary lookups. */
/* FIXME: should we convert options to UTF-8 as well ?? */
#ifdef WIN32
if
(
GetVersion
()
<
0x80000000
)
{
psz_target
=
FromWide
(
wargv
[
i_opt
]
);
VLC_AddTarget
(
p_vlc
->
i_object_id
,
psz_target
,
(
char
const
**
)(
i_options
?
&
ppsz_argv
[
i_opt
+
1
]
:
NULL
),
i_options
,
PLAYLIST_INSERT
,
0
);
free
(
psz_target
);
}
else
#endif
{
psz_target
=
FromLocale
(
ppsz_argv
[
i_opt
]
);
VLC_AddTarget
(
p_vlc
->
i_object_id
,
psz_target
,
(
char
const
**
)(
i_options
?
&
ppsz_argv
[
i_opt
+
1
]
:
...
...
@@ -1066,6 +1093,7 @@ static int GetFilenames( libvlc_int_t *p_vlc, int i_argc, char *ppsz_argv[] )
PLAYLIST_INSERT
,
0
);
LocaleFree
(
psz_target
);
}
}
return
VLC_SUCCESS
;
}
...
...
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