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
9ae152ce
Commit
9ae152ce
authored
Jan 18, 2010
by
Francois Cartegnie
Committed by
Rémi Denis-Courmont
Jan 18, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix empty declaration warning
parent
0a0db525
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
include/vlc_es.h
include/vlc_es.h
+1
-1
include/vlc_input.h
include/vlc_input.h
+1
-1
include/vlc_main.h
include/vlc_main.h
+1
-1
include/vlc_playlist.h
include/vlc_playlist.h
+1
-1
src/version.c
src/version.c
+4
-4
No files found.
include/vlc_es.h
View file @
9ae152ce
...
...
@@ -154,7 +154,7 @@ static inline int video_format_Copy( video_format_t *p_dst, const video_format_t
memcpy
(
p_dst
->
p_palette
,
p_src
->
p_palette
,
sizeof
(
*
p_dst
->
p_palette
)
);
}
return
VLC_SUCCESS
;
}
;
}
/**
* Cleanup and free palette of this video_format_t
...
...
include/vlc_input.h
View file @
9ae152ce
...
...
@@ -265,7 +265,7 @@ typedef struct input_resource_t input_resource_t;
*/
struct
input_thread_t
{
VLC_COMMON_MEMBERS
;
VLC_COMMON_MEMBERS
bool
b_eof
;
bool
b_preparsing
;
...
...
include/vlc_main.h
View file @
9ae152ce
...
...
@@ -26,7 +26,7 @@
* This file defines libvlc_int_t internal libvlc instance
*/
TYPEDEF_ARRAY
(
input_item_t
*
,
input_item_array_t
)
;
TYPEDEF_ARRAY
(
input_item_t
*
,
input_item_array_t
)
struct
hotkey
;
...
...
include/vlc_playlist.h
View file @
9ae152ce
...
...
@@ -31,7 +31,7 @@ extern "C" {
#include <vlc_input.h>
#include <vlc_events.h>
TYPEDEF_ARRAY
(
playlist_item_t
*
,
playlist_item_array_t
)
;
TYPEDEF_ARRAY
(
playlist_item_t
*
,
playlist_item_array_t
)
/**
* \file
...
...
src/version.c
View file @
9ae152ce
...
...
@@ -50,7 +50,7 @@ char const * VLC_##func ( void ) \
return VLC_##var ; \
}
DECLARE_VLC_VERSION
(
CompileBy
,
COMPILE_BY
)
;
DECLARE_VLC_VERSION
(
CompileHost
,
COMPILE_HOST
)
;
DECLARE_VLC_VERSION
(
CompileDomain
,
COMPILE_DOMAIN
)
;
DECLARE_VLC_VERSION
(
Compiler
,
COMPILER
)
;
DECLARE_VLC_VERSION
(
CompileBy
,
COMPILE_BY
)
DECLARE_VLC_VERSION
(
CompileHost
,
COMPILE_HOST
)
DECLARE_VLC_VERSION
(
CompileDomain
,
COMPILE_DOMAIN
)
DECLARE_VLC_VERSION
(
Compiler
,
COMPILER
)
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