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
ecd8f480
Commit
ecd8f480
authored
Jan 19, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Privatize packetize and interface object types
parent
6cf6df7c
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
8 deletions
+11
-8
include/vlc_objects.h
include/vlc_objects.h
+0
-2
modules/misc/lua/libs/objects.c
modules/misc/lua/libs/objects.c
+0
-1
src/libvlc.h
src/libvlc.h
+11
-5
No files found.
include/vlc_objects.h
View file @
ecd8f480
...
@@ -32,12 +32,10 @@
...
@@ -32,12 +32,10 @@
*/
*/
/* Object types */
/* Object types */
#define VLC_OBJECT_INTF (-4)
#define VLC_OBJECT_INPUT (-7)
#define VLC_OBJECT_INPUT (-7)
#define VLC_OBJECT_DECODER (-8)
#define VLC_OBJECT_DECODER (-8)
#define VLC_OBJECT_VOUT (-9)
#define VLC_OBJECT_VOUT (-9)
#define VLC_OBJECT_AOUT (-10)
#define VLC_OBJECT_AOUT (-10)
#define VLC_OBJECT_PACKETIZER (-13)
#define VLC_OBJECT_ENCODER (-14)
#define VLC_OBJECT_ENCODER (-14)
/* Please add new object types below -34 */
/* Please add new object types below -34 */
/* Please do not add new object types anyway */
/* Please do not add new object types anyway */
...
...
modules/misc/lua/libs/objects.c
View file @
ecd8f480
...
@@ -93,7 +93,6 @@ static int vlc_object_type_from_string( const char *psz_name )
...
@@ -93,7 +93,6 @@ static int vlc_object_type_from_string( const char *psz_name )
{
VLC_OBJECT_DECODER
,
"decoder"
},
{
VLC_OBJECT_DECODER
,
"decoder"
},
{
VLC_OBJECT_VOUT
,
"vout"
},
{
VLC_OBJECT_VOUT
,
"vout"
},
{
VLC_OBJECT_AOUT
,
"aout"
},
{
VLC_OBJECT_AOUT
,
"aout"
},
{
VLC_OBJECT_PACKETIZER
,
"packetizer"
},
{
VLC_OBJECT_ENCODER
,
"encoder"
},
{
VLC_OBJECT_ENCODER
,
"encoder"
},
{
VLC_OBJECT_GENERIC
,
"generic"
},
{
VLC_OBJECT_GENERIC
,
"generic"
},
{
0
,
""
}
};
{
0
,
""
}
};
...
...
src/libvlc.h
View file @
ecd8f480
...
@@ -42,6 +42,17 @@ void system_Init ( libvlc_int_t *, int *, const char *[] );
...
@@ -42,6 +42,17 @@ void system_Init ( libvlc_int_t *, int *, const char *[] );
void
system_Configure
(
libvlc_int_t
*
,
int
*
,
const
char
*
[]
);
void
system_Configure
(
libvlc_int_t
*
,
int
*
,
const
char
*
[]
);
void
system_End
(
libvlc_int_t
*
);
void
system_End
(
libvlc_int_t
*
);
/*
* Legacy object stuff that is still used within libvlccore (only)
*/
void
__vlc_object_signal_unlocked
(
vlc_object_t
*
);
#define vlc_object_signal_unlocked( obj ) \
__vlc_object_signal_unlocked( VLC_OBJECT( obj ) )
vlc_list_t
*
vlc_list_find
(
vlc_object_t
*
,
int
,
int
);
#define VLC_OBJECT_INTF (-4)
#define VLC_OBJECT_PACKETIZER (-13)
/*
/*
* Threads subsystem
* Threads subsystem
*/
*/
...
@@ -49,11 +60,6 @@ void system_End ( libvlc_int_t * );
...
@@ -49,11 +60,6 @@ void system_End ( libvlc_int_t * );
/* Hopefully, no need to export this. There is a new thread API instead. */
/* Hopefully, no need to export this. There is a new thread API instead. */
void
vlc_thread_cancel
(
vlc_object_t
*
);
void
vlc_thread_cancel
(
vlc_object_t
*
);
int
vlc_object_waitpipe
(
vlc_object_t
*
obj
);
int
vlc_object_waitpipe
(
vlc_object_t
*
obj
);
void
__vlc_object_signal_unlocked
(
vlc_object_t
*
);
#define vlc_object_signal_unlocked( obj ) \
__vlc_object_signal_unlocked( VLC_OBJECT( obj ) )
vlc_list_t
*
vlc_list_find
(
vlc_object_t
*
,
int
,
int
);
/* legacy */
void
vlc_trace
(
const
char
*
fn
,
const
char
*
file
,
unsigned
line
);
void
vlc_trace
(
const
char
*
fn
,
const
char
*
file
,
unsigned
line
);
#define vlc_backtrace() vlc_trace(__func__, __FILE__, __LINE__)
#define vlc_backtrace() vlc_trace(__func__, __FILE__, __LINE__)
...
...
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