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
ad19397d
Commit
ad19397d
authored
May 12, 2009
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iso_lang: oops I meant iso639
parent
c12325b4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
include/vlc_iso_lang.h
include/vlc_iso_lang.h
+1
-1
modules/control/dbus.c
modules/control/dbus.c
+2
-2
src/libvlccore.sym
src/libvlccore.sym
+1
-1
src/text/iso_lang.c
src/text/iso_lang.c
+1
-1
No files found.
include/vlc_iso_lang.h
View file @
ad19397d
...
...
@@ -42,7 +42,7 @@ extern "C" {
VLC_EXPORT
(
const
iso639_lang_t
*
,
GetLang_1
,
(
const
char
*
)
);
VLC_EXPORT
(
const
iso639_lang_t
*
,
GetLang_2T
,
(
const
char
*
)
);
VLC_EXPORT
(
const
iso639_lang_t
*
,
GetLang_2B
,
(
const
char
*
)
);
VLC_EXPORT
(
const
iso639_lang_t
*
,
GetLang_iso
936
,
(
const
char
*
)
);
VLC_EXPORT
(
const
iso639_lang_t
*
,
GetLang_iso
639
,
(
const
char
*
)
);
#if defined( __cplusplus )
}
#endif
...
...
modules/control/dbus.c
View file @
ad19397d
...
...
@@ -2276,8 +2276,8 @@ static int GetInputEsMeta( input_item_t * p_item, int32_t i_es,
if
(
!
strcmp
(
psz_name
,
"Language"
)
)
{
const
struct
iso639_lang_t
*
code
=
GetLang_iso
936
(
psz_value
);
char
*
psz_code
=
strdup
(
"iso
936
_1"
);
const
struct
iso639_lang_t
*
code
=
GetLang_iso
639
(
psz_value
);
char
*
psz_code
=
strdup
(
"iso
639
_1"
);
psz_variant
=
NULL
;
...
...
src/libvlccore.sym
View file @
ad19397d
...
...
@@ -136,7 +136,7 @@ GetFallbackEncoding
GetLang_1
GetLang_2B
GetLang_2T
GetLang_iso
936
GetLang_iso
639
httpd_ClientIP
httpd_ClientModeBidir
httpd_ClientModeStream
...
...
src/text/iso_lang.c
View file @
ad19397d
...
...
@@ -77,7 +77,7 @@ const iso639_lang_t * GetLang_2B( const char * psz_code )
return
&
unknown_language
;
}
const
iso639_lang_t
*
GetLang_iso
936
(
const
char
*
psz_lang
)
const
iso639_lang_t
*
GetLang_iso
639
(
const
char
*
psz_lang
)
{
const
iso639_lang_t
*
p_lang
;
...
...
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