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
b8610e40
Commit
b8610e40
authored
Mar 29, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix warnings
parent
9fc1c6d1
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
src/libvlc.h
src/libvlc.h
+1
-1
src/misc/objects.c
src/misc/objects.c
+2
-2
src/video_output/vout_subpictures.c
src/video_output/vout_subpictures.c
+1
-0
No files found.
src/libvlc.h
View file @
b8610e40
...
...
@@ -87,7 +87,7 @@ uint32_t CPUCapabilities( void );
* @param psz_type object type name
* @return the created object, or NULL.
*/
extern
v
lc_object_t
*
extern
v
oid
*
vlc_custom_create
(
vlc_object_t
*
p_this
,
size_t
i_size
,
int
i_type
,
const
char
*
psz_type
);
...
...
src/misc/objects.c
View file @
b8610e40
...
...
@@ -104,7 +104,7 @@ static void vlc_object_yield_locked( vlc_object_t *p_this );
static
vlc_mutex_t
structure_lock
;
static
vlc_object_internals_t
global_internals
;
v
lc_object_t
*
vlc_custom_create
(
vlc_object_t
*
p_this
,
size_t
i_size
,
v
oid
*
vlc_custom_create
(
vlc_object_t
*
p_this
,
size_t
i_size
,
int
i_type
,
const
char
*
psz_type
)
{
vlc_object_t
*
p_new
;
...
...
src/video_output/vout_subpictures.c
View file @
b8610e40
...
...
@@ -35,6 +35,7 @@
#include <vlc_block.h>
#include <vlc_filter.h>
#include <vlc_osd.h>
#include "../libvlc.h"
/*****************************************************************************
* Local prototypes
...
...
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