Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
909d63d8
Commit
909d63d8
authored
Jul 29, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
VLC_Changeset is always available
parent
cba87f6d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
6 deletions
+0
-6
modules/control/http/http.c
modules/control/http/http.c
+0
-2
modules/gui/wince/interface.cpp
modules/gui/wince/interface.cpp
+0
-2
modules/gui/wxwidgets/interface.cpp
modules/gui/wxwidgets/interface.cpp
+0
-2
No files found.
modules/control/http/http.c
View file @
909d63d8
...
@@ -567,9 +567,7 @@ static void ParseExecute( httpd_file_sys_t *p_args, char *p_buffer,
...
@@ -567,9 +567,7 @@ static void ParseExecute( httpd_file_sys_t *p_args, char *p_buffer,
E_
(
mvar_AppendNewVar
)(
p_args
->
vars
,
"vlc_compile_domain"
,
E_
(
mvar_AppendNewVar
)(
p_args
->
vars
,
"vlc_compile_domain"
,
VLC_CompileDomain
()
);
VLC_CompileDomain
()
);
E_
(
mvar_AppendNewVar
)(
p_args
->
vars
,
"vlc_compiler"
,
VLC_Compiler
()
);
E_
(
mvar_AppendNewVar
)(
p_args
->
vars
,
"vlc_compiler"
,
VLC_Compiler
()
);
#ifndef HAVE_SHARED_LIBVLC
E_
(
mvar_AppendNewVar
)(
p_args
->
vars
,
"vlc_changeset"
,
VLC_Changeset
()
);
E_
(
mvar_AppendNewVar
)(
p_args
->
vars
,
"vlc_changeset"
,
VLC_Changeset
()
);
#endif
E_
(
mvar_AppendNewVar
)(
p_args
->
vars
,
"stream_position"
,
position
);
E_
(
mvar_AppendNewVar
)(
p_args
->
vars
,
"stream_position"
,
position
);
E_
(
mvar_AppendNewVar
)(
p_args
->
vars
,
"stream_time"
,
time
);
E_
(
mvar_AppendNewVar
)(
p_args
->
vars
,
"stream_time"
,
time
);
E_
(
mvar_AppendNewVar
)(
p_args
->
vars
,
"stream_length"
,
length
);
E_
(
mvar_AppendNewVar
)(
p_args
->
vars
,
"stream_length"
,
length
);
...
...
modules/gui/wince/interface.cpp
View file @
909d63d8
...
@@ -498,9 +498,7 @@ LRESULT Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
...
@@ -498,9 +498,7 @@ LRESULT Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
_
(
"Compiled by "
)
+
VLC_CompileBy
()
+
"@"
+
_
(
"Compiled by "
)
+
VLC_CompileBy
()
+
"@"
+
VLC_CompileHost
()
+
"."
+
VLC_CompileDomain
()
+
".
\n
"
+
VLC_CompileHost
()
+
"."
+
VLC_CompileDomain
()
+
".
\n
"
+
_
(
"Compiler: "
)
+
VLC_Compiler
()
+
".
\n
"
+
_
(
"Compiler: "
)
+
VLC_Compiler
()
+
".
\n
"
+
#ifndef HAVE_SHARED_LIBVLC
_
(
"Based on SVN revision: "
)
+
VLC_Changeset
()
+
".
\n\n
"
+
_
(
"Based on SVN revision: "
)
+
VLC_Changeset
()
+
".
\n\n
"
+
#endif
_
(
"The VideoLAN team <videolan@videolan.org>
\n
"
_
(
"The VideoLAN team <videolan@videolan.org>
\n
"
"http://www.videolan.org/"
);
"http://www.videolan.org/"
);
...
...
modules/gui/wxwidgets/interface.cpp
View file @
909d63d8
...
@@ -952,9 +952,7 @@ void Interface::OnAbout( wxCommandEvent& WXUNUSED(event) )
...
@@ -952,9 +952,7 @@ void Interface::OnAbout( wxCommandEvent& WXUNUSED(event) )
wxU
(
_
(
"Compiled by "
))
+
wxU
(
VLC_CompileBy
())
+
wxU
(
"@"
)
+
wxU
(
_
(
"Compiled by "
))
+
wxU
(
VLC_CompileBy
())
+
wxU
(
"@"
)
+
wxU
(
VLC_CompileHost
())
+
wxT
(
"."
)
+
wxU
(
VLC_CompileDomain
())
+
wxT
(
".
\n
"
)
+
wxU
(
VLC_CompileHost
())
+
wxT
(
"."
)
+
wxU
(
VLC_CompileDomain
())
+
wxT
(
".
\n
"
)
+
wxU
(
_
(
"Compiler: "
))
+
wxU
(
VLC_Compiler
())
+
wxT
(
".
\n
"
)
+
wxU
(
_
(
"Compiler: "
))
+
wxU
(
VLC_Compiler
())
+
wxT
(
".
\n
"
)
+
#ifndef HAVE_SHARED_LIBVLC
wxU
(
_
(
"Based on SVN revision: "
))
+
wxU
(
VLC_Changeset
())
+
wxT
(
".
\n\n
"
)
+
wxU
(
_
(
"Based on SVN revision: "
))
+
wxU
(
VLC_Changeset
())
+
wxT
(
".
\n\n
"
)
+
#endif
#ifdef __WXMSW__
#ifdef __WXMSW__
wxU
(
vlc_wraptext
(
LICENSE_MSG
,
WRAPCOUNT
)
)
+
wxT
(
"
\n\n
"
)
+
wxU
(
vlc_wraptext
(
LICENSE_MSG
,
WRAPCOUNT
)
)
+
wxT
(
"
\n\n
"
)
+
#else
#else
...
...
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