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
182692ca
Commit
182692ca
authored
Aug 23, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove vlc_object_t.p_private
parent
7d1e5fe7
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
7 deletions
+2
-7
include/vlc_common.h
include/vlc_common.h
+0
-3
include/vlc_plugin.h
include/vlc_plugin.h
+2
-2
src/misc/objects.c
src/misc/objects.c
+0
-2
No files found.
include/vlc_common.h
View file @
182692ca
...
@@ -515,9 +515,6 @@ typedef int ( * vlc_callback_t ) ( vlc_object_t *, /* variable's object */
...
@@ -515,9 +515,6 @@ typedef int ( * vlc_callback_t ) ( vlc_object_t *, /* variable's object */
\
\
vlc_object_t * p_parent;
/**< our parent */
\
vlc_object_t * p_parent;
/**< our parent */
\
\
\
/* Private data */
\
void * p_private; \
\
/**@}*/
\
/**@}*/
\
/* VLC_OBJECT: attempt at doing a clever cast */
/* VLC_OBJECT: attempt at doing a clever cast */
...
...
include/vlc_plugin.h
View file @
182692ca
...
@@ -119,8 +119,8 @@ enum vlc_module_properties
...
@@ -119,8 +119,8 @@ enum vlc_module_properties
/**
/**
* Current plugin ABI version
* Current plugin ABI version
*/
*/
# define MODULE_SYMBOL 1_1_0
a
# define MODULE_SYMBOL 1_1_0
b
# define MODULE_SUFFIX "__1_1_0
a
"
# define MODULE_SUFFIX "__1_1_0
b
"
/*****************************************************************************
/*****************************************************************************
* Add a few defines. You do not want to read this section. Really.
* Add a few defines. You do not want to read this section. Really.
...
...
src/misc/objects.c
View file @
182692ca
...
@@ -160,8 +160,6 @@ void *__vlc_custom_create( vlc_object_t *p_this, size_t i_size,
...
@@ -160,8 +160,6 @@ void *__vlc_custom_create( vlc_object_t *p_this, size_t i_size,
p_priv
->
pp_children
=
NULL
;
p_priv
->
pp_children
=
NULL
;
p_priv
->
i_children
=
0
;
p_priv
->
i_children
=
0
;
p_new
->
p_private
=
NULL
;
/* Initialize mutexes and condvars */
/* Initialize mutexes and condvars */
vlc_mutex_init
(
&
p_priv
->
var_lock
);
vlc_mutex_init
(
&
p_priv
->
var_lock
);
vlc_cond_init
(
&
p_priv
->
var_wait
);
vlc_cond_init
(
&
p_priv
->
var_wait
);
...
...
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