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
e24e108c
Commit
e24e108c
authored
Mar 29, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove XML object type
parent
bb5a8eb8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
8 deletions
+3
-8
include/vlc_objects.h
include/vlc_objects.h
+1
-1
modules/misc/lua/objects.c
modules/misc/lua/objects.c
+0
-1
src/misc/objects.c
src/misc/objects.c
+0
-5
src/misc/xml.c
src/misc/xml.c
+2
-1
No files found.
include/vlc_objects.h
View file @
e24e108c
...
@@ -62,7 +62,7 @@
...
@@ -62,7 +62,7 @@
#define VLC_OBJECT_XML (-27)
#define VLC_OBJECT_OSDMENU (-28)
#define VLC_OBJECT_OSDMENU (-28)
#define VLC_OBJECT_STATS (-29)
#define VLC_OBJECT_STATS (-29)
#define VLC_OBJECT_HTTPD_HOST (-30)
#define VLC_OBJECT_HTTPD_HOST (-30)
...
...
modules/misc/lua/objects.c
View file @
e24e108c
...
@@ -128,7 +128,6 @@ static int vlc_object_type_from_string( const char *psz_name )
...
@@ -128,7 +128,6 @@ static int vlc_object_type_from_string( const char *psz_name )
{
VLC_OBJECT_STREAM
,
"stream"
},
{
VLC_OBJECT_STREAM
,
"stream"
},
{
VLC_OBJECT_OPENGL
,
"opengl"
},
{
VLC_OBJECT_OPENGL
,
"opengl"
},
{
VLC_OBJECT_FILTER
,
"filter"
},
{
VLC_OBJECT_FILTER
,
"filter"
},
{
VLC_OBJECT_XML
,
"xml"
},
{
VLC_OBJECT_OSDMENU
,
"osdmenu"
},
{
VLC_OBJECT_OSDMENU
,
"osdmenu"
},
{
VLC_OBJECT_HTTPD_HOST
,
"httpd_host"
},
{
VLC_OBJECT_HTTPD_HOST
,
"httpd_host"
},
{
VLC_OBJECT_META_ENGINE
,
"meta_engine"
},
{
VLC_OBJECT_META_ENGINE
,
"meta_engine"
},
...
...
src/misc/objects.c
View file @
e24e108c
...
@@ -56,7 +56,6 @@
...
@@ -56,7 +56,6 @@
#include "vlc_httpd.h"
#include "vlc_httpd.h"
#include "vlc_vlm.h"
#include "vlc_vlm.h"
#include "input/vlm_internal.h"
#include "input/vlm_internal.h"
#include "vlc_xml.h"
#include "vlc_osd.h"
#include "vlc_osd.h"
#include "vlc_meta.h"
#include "vlc_meta.h"
...
@@ -310,10 +309,6 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type )
...
@@ -310,10 +309,6 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type )
i_size
=
sizeof
(
vlm_t
);
i_size
=
sizeof
(
vlm_t
);
psz_type
=
"vlm dameon"
;
psz_type
=
"vlm dameon"
;
break
;
break
;
case
VLC_OBJECT_XML
:
i_size
=
sizeof
(
xml_t
);
psz_type
=
"xml"
;
break
;
case
VLC_OBJECT_OPENGL
:
case
VLC_OBJECT_OPENGL
:
i_size
=
sizeof
(
vout_thread_t
);
i_size
=
sizeof
(
vout_thread_t
);
psz_type
=
"opengl"
;
psz_type
=
"opengl"
;
...
...
src/misc/xml.c
View file @
e24e108c
...
@@ -39,7 +39,8 @@ xml_t *__xml_Create( vlc_object_t *p_this )
...
@@ -39,7 +39,8 @@ xml_t *__xml_Create( vlc_object_t *p_this )
{
{
xml_t
*
p_xml
;
xml_t
*
p_xml
;
p_xml
=
vlc_object_create
(
p_this
,
VLC_OBJECT_XML
);
p_xml
=
vlc_custom_create
(
p_this
,
sizeof
(
*
p_xml
),
VLC_OBJECT_GENERIC
,
"xml"
);
vlc_object_attach
(
p_xml
,
p_this
);
vlc_object_attach
(
p_xml
,
p_this
);
p_xml
->
p_module
=
module_Need
(
p_xml
,
"xml"
,
0
,
0
);
p_xml
->
p_module
=
module_Need
(
p_xml
,
"xml"
,
0
,
0
);
...
...
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