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
8e1c86a0
Commit
8e1c86a0
authored
Nov 06, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Expand and remove VLC_Version()
parent
362dbda8
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
6 additions
and
18 deletions
+6
-18
include/vlc_common.h
include/vlc_common.h
+0
-1
modules/control/http/http.c
modules/control/http/http.c
+1
-1
modules/gui/macosx/about.m
modules/gui/macosx/about.m
+1
-1
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+1
-1
modules/misc/lua/libs/misc.c
modules/misc/lua/libs/misc.c
+1
-1
src/control/core.c
src/control/core.c
+1
-1
src/libvlc.c
src/libvlc.c
+1
-1
src/libvlccore.sym
src/libvlccore.sym
+0
-1
src/version.c
src/version.c
+0
-10
No files found.
include/vlc_common.h
View file @
8e1c86a0
...
@@ -856,7 +856,6 @@ static inline void *xrealloc (void *ptr, size_t len)
...
@@ -856,7 +856,6 @@ static inline void *xrealloc (void *ptr, size_t len)
/*****************************************************************************
/*****************************************************************************
* libvlc features
* libvlc features
*****************************************************************************/
*****************************************************************************/
VLC_EXPORT
(
const
char
*
,
VLC_Version
,
(
void
)
LIBVLC_USED
);
VLC_EXPORT
(
const
char
*
,
VLC_CompileBy
,
(
void
)
LIBVLC_USED
);
VLC_EXPORT
(
const
char
*
,
VLC_CompileBy
,
(
void
)
LIBVLC_USED
);
VLC_EXPORT
(
const
char
*
,
VLC_CompileHost
,
(
void
)
LIBVLC_USED
);
VLC_EXPORT
(
const
char
*
,
VLC_CompileHost
,
(
void
)
LIBVLC_USED
);
VLC_EXPORT
(
const
char
*
,
VLC_Compiler
,
(
void
)
LIBVLC_USED
);
VLC_EXPORT
(
const
char
*
,
VLC_Compiler
,
(
void
)
LIBVLC_USED
);
...
...
modules/control/http/http.c
View file @
8e1c86a0
...
@@ -413,7 +413,7 @@ static void ParseExecute( httpd_file_sys_t *p_args, char *p_buffer,
...
@@ -413,7 +413,7 @@ static void ParseExecute( httpd_file_sys_t *p_args, char *p_buffer,
mvar_AppendNewVar
(
p_args
->
vars
,
"url_param"
,
mvar_AppendNewVar
(
p_args
->
vars
,
"url_param"
,
i_request
>
0
?
"1"
:
"0"
);
i_request
>
0
?
"1"
:
"0"
);
mvar_AppendNewVar
(
p_args
->
vars
,
"url_value"
,
p_request
);
mvar_AppendNewVar
(
p_args
->
vars
,
"url_value"
,
p_request
);
mvar_AppendNewVar
(
p_args
->
vars
,
"version"
,
V
LC_Version
()
);
mvar_AppendNewVar
(
p_args
->
vars
,
"version"
,
V
ERSION_MESSAGE
);
mvar_AppendNewVar
(
p_args
->
vars
,
"copyright"
,
COPYRIGHT_MESSAGE
);
mvar_AppendNewVar
(
p_args
->
vars
,
"copyright"
,
COPYRIGHT_MESSAGE
);
mvar_AppendNewVar
(
p_args
->
vars
,
"vlc_compile_by"
,
VLC_CompileBy
()
);
mvar_AppendNewVar
(
p_args
->
vars
,
"vlc_compile_by"
,
VLC_CompileBy
()
);
mvar_AppendNewVar
(
p_args
->
vars
,
"vlc_compile_host"
,
mvar_AppendNewVar
(
p_args
->
vars
,
"vlc_compile_host"
,
...
...
modules/gui/macosx/about.m
View file @
8e1c86a0
...
@@ -96,7 +96,7 @@ static VLAboutBox *_o_sharedInstance = nil;
...
@@ -96,7 +96,7 @@ static VLAboutBox *_o_sharedInstance = nil;
[
NSString
stringWithFormat
:
_NS
(
"Compiled by %s"
),
VLC_CompileBy
()]];
[
NSString
stringWithFormat
:
_NS
(
"Compiled by %s"
),
VLC_CompileBy
()]];
/* Setup the nameversion field */
/* Setup the nameversion field */
[
o_name_version_field
setStringValue
:
[
NSString
stringWithFormat
:
@"Version %s (%s)"
,
V
LC_Version
()
,
PLATFORM
]];
[
o_name_version_field
setStringValue
:
[
NSString
stringWithFormat
:
@"Version %s (%s)"
,
V
ERSION_MESSAGE
,
PLATFORM
]];
/* setup the authors and thanks field */
/* setup the authors and thanks field */
[
o_credits_textview
setString
:
[
NSString
stringWithFormat
:
@"%@
\n\n\n\n
%@
\n
%@
\n\n
%@"
,
[
o_credits_textview
setString
:
[
NSString
stringWithFormat
:
@"%@
\n\n\n\n
%@
\n
%@
\n\n
%@"
,
...
...
modules/gui/macosx/intf.m
View file @
8e1c86a0
...
@@ -2594,7 +2594,7 @@ end:
...
@@ -2594,7 +2594,7 @@ end:
[
saveFolderPanel
setCanSelectHiddenExtension
:
NO
];
[
saveFolderPanel
setCanSelectHiddenExtension
:
NO
];
[
saveFolderPanel
setCanCreateDirectories
:
YES
];
[
saveFolderPanel
setCanCreateDirectories
:
YES
];
[
saveFolderPanel
setRequiredFileType
:
@"rtfd"
];
[
saveFolderPanel
setRequiredFileType
:
@"rtfd"
];
[
saveFolderPanel
beginSheetForDirectory
:
nil
file
:
[
NSString
stringWithFormat
:
_NS
(
"VLC Debug Log (%s).rtfd"
),
V
LC_Version
()
]
modalForWindow
:
o_msgs_panel
modalDelegate
:
self
didEndSelector
:
@selector
(
saveDebugLogAsRTF
:
returnCode
:
contextInfo
:
)
contextInfo
:
nil
];
[
saveFolderPanel
beginSheetForDirectory
:
nil
file
:
[
NSString
stringWithFormat
:
_NS
(
"VLC Debug Log (%s).rtfd"
),
V
ERSION_MESSAGE
]
modalForWindow
:
o_msgs_panel
modalDelegate
:
self
didEndSelector
:
@selector
(
saveDebugLogAsRTF
:
returnCode
:
contextInfo
:
)
contextInfo
:
nil
];
}
}
-
(
void
)
saveDebugLogAsRTF
:
(
NSSavePanel
*
)
sheet
returnCode
:
(
int
)
returnCode
contextInfo
:
(
void
*
)
contextInfo
-
(
void
)
saveDebugLogAsRTF
:
(
NSSavePanel
*
)
sheet
returnCode
:
(
int
)
returnCode
contextInfo
:
(
void
*
)
contextInfo
...
...
modules/misc/lua/libs/misc.c
View file @
8e1c86a0
...
@@ -103,7 +103,7 @@ int vlclua_push_ret( lua_State *L, int i_error )
...
@@ -103,7 +103,7 @@ int vlclua_push_ret( lua_State *L, int i_error )
*****************************************************************************/
*****************************************************************************/
static
int
vlclua_version
(
lua_State
*
L
)
static
int
vlclua_version
(
lua_State
*
L
)
{
{
lua_pushstring
(
L
,
V
LC_Version
()
);
lua_pushstring
(
L
,
V
ERSION_MESSAGE
);
return
1
;
return
1
;
}
}
...
...
src/control/core.c
View file @
8e1c86a0
...
@@ -153,7 +153,7 @@ void libvlc_set_user_agent (libvlc_instance_t *p_i,
...
@@ -153,7 +153,7 @@ void libvlc_set_user_agent (libvlc_instance_t *p_i,
const
char
*
libvlc_get_version
(
void
)
const
char
*
libvlc_get_version
(
void
)
{
{
return
V
LC_Version
()
;
return
V
ERSION_MESSAGE
;
}
}
const
char
*
libvlc_get_compiler
(
void
)
const
char
*
libvlc_get_compiler
(
void
)
...
...
src/libvlc.c
View file @
8e1c86a0
...
@@ -1865,7 +1865,7 @@ static void Version( void )
...
@@ -1865,7 +1865,7 @@ static void Version( void )
ShowConsole
(
true
);
ShowConsole
(
true
);
#endif
#endif
utf8_fprintf
(
stdout
,
_
(
"VLC version %s (%s)
\n
"
),
V
LC_Version
()
,
utf8_fprintf
(
stdout
,
_
(
"VLC version %s (%s)
\n
"
),
V
ERSION_MESSAGE
,
psz_vlc_changeset
);
psz_vlc_changeset
);
utf8_fprintf
(
stdout
,
_
(
"Compiled by %s on %s (%s)
\n
"
),
utf8_fprintf
(
stdout
,
_
(
"Compiled by %s on %s (%s)
\n
"
),
VLC_CompileBy
(),
VLC_CompileHost
(),
__DATE__
" "
__TIME__
);
VLC_CompileBy
(),
VLC_CompileHost
(),
__DATE__
" "
__TIME__
);
...
...
src/libvlccore.sym
View file @
8e1c86a0
...
@@ -618,7 +618,6 @@ vlc_timer_destroy
...
@@ -618,7 +618,6 @@ vlc_timer_destroy
vlc_timer_getoverrun
vlc_timer_getoverrun
vlc_timer_schedule
vlc_timer_schedule
vlc_ureduce
vlc_ureduce
VLC_Version
vlc_epg_Init
vlc_epg_Init
vlc_epg_Clean
vlc_epg_Clean
vlc_epg_New
vlc_epg_New
...
...
src/version.c
View file @
8e1c86a0
...
@@ -30,16 +30,6 @@
...
@@ -30,16 +30,6 @@
#include <vlc_common.h>
#include <vlc_common.h>
/*****************************************************************************
* VLC_Version: return the libvlc version.
*****************************************************************************
* This function returns full version string (numeric version and codename).
*****************************************************************************/
char
const
*
VLC_Version
(
void
)
{
return
VERSION_MESSAGE
;
}
/*****************************************************************************
/*****************************************************************************
* VLC_CompileBy, VLC_CompileHost
* VLC_CompileBy, VLC_CompileHost
* VLC_Compiler, VLC_Changeset
* VLC_Compiler, VLC_Changeset
...
...
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