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
2455945c
Commit
2455945c
authored
Jun 22, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* all: rework of the input.
parent
96f1226f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
11 deletions
+7
-11
src/misc/modules.c
src/misc/modules.c
+2
-7
src/misc/objects.c
src/misc/objects.c
+5
-4
No files found.
src/misc/modules.c
View file @
2455945c
...
...
@@ -35,6 +35,7 @@
#include <string.h>
/* strdup() */
#include <vlc/vlc.h>
#include <vlc/input.h>
#ifdef HAVE_DIRENT_H
# include <dirent.h>
...
...
@@ -54,7 +55,7 @@
# include <unistd.h>
#endif
#define HAVE_DYNAMIC_PLUGINS
//
#define HAVE_DYNAMIC_PLUGINS
#if defined(HAVE_DL_DYLD)
# if defined(HAVE_MACH_O_DYLD_H)
# include <mach-o/dyld.h>
...
...
@@ -85,12 +86,6 @@
#include "vlc_interface.h"
#include "intf_eject.h"
#include "stream_control.h"
#include "input_ext-intf.h"
#include "input_ext-dec.h"
#include "input_ext-plugins.h"
#include "ninput.h"
#include "vlc_playlist.h"
#include "vlc_video.h"
...
...
src/misc/objects.c
View file @
2455945c
...
...
@@ -31,15 +31,12 @@
* Preamble
*****************************************************************************/
#include <vlc/vlc.h>
#include <vlc/input.h>
#ifdef HAVE_STDLIB_H
# include <stdlib.h>
/* realloc() */
#endif
#include "stream_control.h"
#include "input_ext-intf.h"
#include "input_ext-dec.h"
#include "vlc_video.h"
#include "video_output.h"
...
...
@@ -132,6 +129,10 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type )
i_size
=
sizeof
(
demux_t
);
psz_type
=
"demux"
;
break
;
case
VLC_OBJECT_STREAM
:
i_size
=
sizeof
(
stream_t
);
psz_type
=
"stream"
;
break
;
case
VLC_OBJECT_ACCESS
:
i_size
=
sizeof
(
access_t
);
psz_type
=
"access"
;
...
...
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