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
a29a4e2e
Commit
a29a4e2e
authored
Nov 26, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Did I loose the count ?
parent
105e1851
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
15 additions
and
4 deletions
+15
-4
include/vlc_configuration.h
include/vlc_configuration.h
+2
-0
include/vlc_symbols.h
include/vlc_symbols.h
+3
-0
modules/access/vcdx/access.c
modules/access/vcdx/access.c
+2
-1
modules/access/vcdx/demux.c
modules/access/vcdx/demux.c
+2
-1
modules/access/vcdx/intf.h
modules/access/vcdx/intf.h
+3
-0
modules/misc/notify/xosd.c
modules/misc/notify/xosd.c
+3
-1
src/misc/configuration.h
src/misc/configuration.h
+0
-1
No files found.
include/vlc_configuration.h
View file @
a29a4e2e
...
...
@@ -229,6 +229,8 @@ VLC_EXPORT( module_t *, config_FindModule,( vlc_object_t *, const char * ) );
VLC_EXPORT
(
int
,
config_Duplicate
,(
module_t
*
,
const
module_config_t
*
,
size_t
));
VLC_EXPORT
(
const
char
*
,
config_GetDataDir
,
(
const
vlc_object_t
*
));
#define config_GetType(a,b) __config_GetType(VLC_OBJECT(a),b)
#define config_GetInt(a,b) __config_GetInt(VLC_OBJECT(a),b)
#define config_PutInt(a,b,c) __config_PutInt(VLC_OBJECT(a),b,c)
...
...
include/vlc_symbols.h
View file @
a29a4e2e
...
...
@@ -452,6 +452,7 @@ struct module_symbols_t
int
(
*
vout_Snapshot_inner
)
(
vout_thread_t
*
p_vout
,
picture_t
*
p_pic
);
void
(
*
streaming_GuiDescToChain_inner
)
(
vlc_object_t
*
,
sout_chain_t
*
,
sout_gui_descr_t
*
);
input_item_t
*
(
*
input_GetItem_inner
)
(
input_thread_t
*
);
const
char
*
(
*
config_GetDataDir_inner
)
(
const
vlc_object_t
*
);
};
# if defined (__PLUGIN__)
# define aout_OutputNextBuffer (p_symbols)->aout_OutputNextBuffer_inner
...
...
@@ -887,6 +888,7 @@ struct module_symbols_t
# define vout_Snapshot (p_symbols)->vout_Snapshot_inner
# define streaming_GuiDescToChain (p_symbols)->streaming_GuiDescToChain_inner
# define input_GetItem (p_symbols)->input_GetItem_inner
# define config_GetDataDir (p_symbols)->config_GetDataDir_inner
# elif defined (HAVE_DYNAMIC_PLUGINS) && !defined (__BUILTIN__)
/******************************************************************
* STORE_SYMBOLS: store VLC APIs into p_symbols for plugin access.
...
...
@@ -1325,6 +1327,7 @@ struct module_symbols_t
((p_symbols)->vout_Snapshot_inner) = vout_Snapshot; \
((p_symbols)->streaming_GuiDescToChain_inner) = streaming_GuiDescToChain; \
((p_symbols)->input_GetItem_inner) = input_GetItem; \
((p_symbols)->config_GetDataDir_inner) = config_GetDataDir; \
# endif
/* __PLUGIN__ */
#endif
/* __VLC_SYMBOLS_H */
modules/access/vcdx/access.c
View file @
a29a4e2e
...
...
@@ -31,7 +31,8 @@
#include <vlc/vlc.h>
#include <vlc_interface.h>
#include <<vlc_input.h>>
#include <vlc_input.h>
#include <vlc_access.h>
#include "vlc_keys.h"
#include <cdio/cdio.h>
...
...
modules/access/vcdx/demux.c
View file @
a29a4e2e
...
...
@@ -29,7 +29,8 @@
#include <string.h>
#include <vlc/vlc.h>
#include <<vlc_input.h>>
#include <vlc_input.h>
#include <vlc_access.h>
#include <vlc_interface.h>
#ifdef HAVE_UNISTD_H
...
...
modules/access/vcdx/intf.h
View file @
a29a4e2e
...
...
@@ -21,6 +21,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#include <vlc/vlc.h>
#include <vlc_input.h>
/*****************************************************************************
* intf_sys_t: description and status of interface
*****************************************************************************/
...
...
modules/misc/notify/xosd.c
View file @
a29a4e2e
...
...
@@ -28,7 +28,9 @@
#include <string.h>
#include <xosd.h>
#include <vlc/vlc.h>
#include <vlc_playlist.h>
#include <vlc_item.h>
#include <vlc_interface.h>
#ifdef HAVE_UNISTD_H
...
...
src/misc/configuration.h
View file @
a29a4e2e
...
...
@@ -14,5 +14,4 @@ void config_UnsetCallbacks ( module_config_t *, size_t );
int
__config_LoadCmdLine
(
vlc_object_t
*
,
int
*
,
char
*
[],
vlc_bool_t
);
char
*
config_GetHomeDir
(
void
);
char
*
config_GetUserDir
(
void
);
const
char
*
config_GetDataDir
(
const
vlc_object_t
*
);
int
__config_LoadConfigFile
(
vlc_object_t
*
,
const
char
*
);
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