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
7f682030
Commit
7f682030
authored
May 03, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vlc_object_t.p_internals is not needed anymore
parent
07998682
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
5 deletions
+2
-5
include/vlc_common.h
include/vlc_common.h
+0
-1
include/vlc_modules_macros.h
include/vlc_modules_macros.h
+2
-2
src/misc/objects.c
src/misc/objects.c
+0
-2
No files found.
include/vlc_common.h
View file @
7f682030
...
...
@@ -462,7 +462,6 @@ typedef struct vlc_object_internals_t vlc_object_internals_t;
* these members are common for all vlc objects \
*/
\
/**@{*/
\
vlc_object_internals_t *p_internals; \
int i_object_id; \
int i_object_type; \
const char *psz_object_type; \
...
...
include/vlc_modules_macros.h
View file @
7f682030
...
...
@@ -35,8 +35,8 @@
/**
* Current plugin ABI version
*/
# define MODULE_SYMBOL 0_9_0
j
# define MODULE_SUFFIX "__0_9_0
j
"
# define MODULE_SYMBOL 0_9_0
k
# define MODULE_SUFFIX "__0_9_0
k
"
/*****************************************************************************
* Add a few defines. You do not want to read this section. Really.
...
...
src/misc/objects.c
View file @
7f682030
...
...
@@ -118,10 +118,8 @@ void *vlc_custom_create( vlc_object_t *p_this, size_t i_size,
assert
(
i_size
>=
sizeof
(
vlc_object_t
));
p_new
=
(
vlc_object_t
*
)(
p_priv
+
1
);
p_new
->
p_internals
=
p_priv
;
p_new
->
i_object_type
=
i_type
;
p_new
->
psz_object_type
=
psz_type
;
p_new
->
psz_object_name
=
NULL
;
p_new
->
b_die
=
false
;
...
...
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