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
182f9a35
Commit
182f9a35
authored
Mar 29, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove SPU type
parent
e19cbb78
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
7 deletions
+3
-7
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
-4
src/video_output/vout_subpictures.c
src/video_output/vout_subpictures.c
+2
-1
No files found.
include/vlc_objects.h
View file @
182f9a35
...
...
@@ -59,7 +59,7 @@
#define VLC_OBJECT_OPENGL (-21)
#define VLC_OBJECT_FILTER (-22)
#define VLC_OBJECT_SPU (-24)
#define VLC_OBJECT_SD (-26)
#define VLC_OBJECT_XML (-27)
...
...
modules/misc/lua/objects.c
View file @
182f9a35
...
...
@@ -128,7 +128,6 @@ static int vlc_object_type_from_string( const char *psz_name )
{
VLC_OBJECT_STREAM
,
"stream"
},
{
VLC_OBJECT_OPENGL
,
"opengl"
},
{
VLC_OBJECT_FILTER
,
"filter"
},
{
VLC_OBJECT_SPU
,
"spu"
},
{
VLC_OBJECT_SD
,
"sd"
},
{
VLC_OBJECT_XML
,
"xml"
},
{
VLC_OBJECT_OSDMENU
,
"osdmenu"
},
...
...
src/misc/objects.c
View file @
182f9a35
...
...
@@ -302,10 +302,6 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type )
i_size
=
sizeof
(
vout_thread_t
);
psz_type
=
"video output"
;
break
;
case
VLC_OBJECT_SPU
:
i_size
=
sizeof
(
spu_t
);
psz_type
=
"subpicture"
;
break
;
case
VLC_OBJECT_AOUT
:
i_size
=
sizeof
(
aout_instance_t
);
psz_type
=
"audio output"
;
...
...
src/video_output/vout_subpictures.c
View file @
182f9a35
...
...
@@ -76,7 +76,8 @@ enum {
spu_t
*
__spu_Create
(
vlc_object_t
*
p_this
)
{
int
i_index
;
spu_t
*
p_spu
=
vlc_object_create
(
p_this
,
VLC_OBJECT_SPU
);
spu_t
*
p_spu
=
vlc_custom_create
(
p_this
,
sizeof
(
spu_t
),
VLC_OBJECT_GENERIC
,
"subpicture"
);
for
(
i_index
=
0
;
i_index
<
VOUT_MAX_SUBPICTURES
;
i_index
++
)
{
...
...
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