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
6bbf004e
Commit
6bbf004e
authored
Apr 07, 2003
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Updated ChangeLog
* src/libvlc.c: Darwin doesn't have a "translation" config variable
parent
57823d10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
58 additions
and
1 deletion
+58
-1
ChangeLog
ChangeLog
+55
-0
src/libvlc.c
src/libvlc.c
+3
-1
No files found.
ChangeLog
View file @
6bbf004e
2003
-
04
-
07
Monday
17
:
35
gbazin
*
po
/
fr
.
po
:
small
update
.
*
modules
/
codec
/
libmpeg2
.
c
:
we
now
bypass
libmpeg2
buffer
management
.
As
a
nice
side
effect
,
still
pictures
in
dvd
menus
are
working
now
:)
2003
-
04
-
07
Monday
16
:
02
gbazin
*
modules
/
audio_output
/
directx
.
c
,
modules
/
audio_output
/
waveout
.
c
:
cosmetic
changes
.
2003
-
04
-
07
Monday
13
:
46
gbazin
*
src
/
libvlc
.
c
:
fixed
the
translation
config
option
to
also
take
into
account
the
value
in
the
config
file
.
2003
-
04
-
07
Monday
13
:
01
gbazin
*
src
/
libvlc
.
c
:
reload
the
main
module
in
case
the
user
asks
for
the
translation
to
be
disabled
.
That
way
,
the
translation
will
even
be
disabled
in
the
preferences
panel
.
2003
-
04
-
07
Monday
12
:
41
hartman
*
new
dutch
translation
*
readded
Mac
OS
X
readme
file
to
Mac
OS
X
distribution
*
fixed
some
errors
in
the
readme
2003
-
04
-
07
Monday
11
:
48
gbazin
*
src
/
misc
/
configuration
.
c
:
what
the
f
??
k
,
configuration
variable
names
and
subtypes
were
being
translated
.
2003
-
04
-
07
Monday
09
:
25
gbazin
*
modules
/
gui
/
wxwindows
/
interface
.
cpp
:
removed
debug
message
.
2003
-
04
-
06
Sunday
23
:
44
massiot
*
Renamed
the
"headphone"
option
to
"headphone-opt"
to
avoid
error
messages
"option headphone does not exist"
.
I
'm not clever enough to find
out why it doesn'
t
work
when
it
's named "headphone".
2003-04-06 Sunday 23:21 massiot
* Bumped up revision number to 0.5.3
* po/* : run --update-po before the release
* ChangeLog : run --update-changelog
* toolbox : ChangeLog is UTC
* OS X : fixed a bug with the deinterlace menu and localizations (thanks
Felix)
2003-04-06 Sunday 23:00 hartman
* some small changes/fixes
2003-04-06 Sunday 21:48 gbazin
* po/fr.po: another bunch of updates to the french translation.
...
...
src/libvlc.c
View file @
6bbf004e
...
...
@@ -2,7 +2,7 @@
* libvlc.c: main libvlc source
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
* $Id: libvlc.c,v 1.7
5 2003/04/07 13:46:06 gbazin
Exp $
* $Id: libvlc.c,v 1.7
6 2003/04/07 21:51:27 massiot
Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -331,6 +331,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
config_LoadConfigFile
(
p_vlc
,
"main"
);
config_LoadCmdLine
(
p_vlc
,
&
i_argc
,
ppsz_argv
,
VLC_TRUE
);
# ifndef SYS_DARWIN
if
(
!
config_GetInt
(
p_vlc
,
"translation"
)
)
{
/* Reset the default domain */
...
...
@@ -342,6 +343,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
module_InitBank
(
&
libvlc
);
module_LoadMain
(
&
libvlc
);
}
# endif
#endif
/*
...
...
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