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
497c80a2
Commit
497c80a2
authored
Oct 13, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sanitize input headers (pass 3).
parent
59091272
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
12 deletions
+6
-12
src/Makefile.am
src/Makefile.am
+1
-0
src/input/access.c
src/input/access.c
+2
-2
src/input/demux.h
src/input/demux.h
+1
-1
src/input/input.c
src/input/input.c
+1
-0
src/input/input_internal.h
src/input/input_internal.h
+0
-9
src/input/stream.c
src/input/stream.c
+1
-0
No files found.
src/Makefile.am
View file @
497c80a2
...
...
@@ -306,6 +306,7 @@ SOURCES_libvlc_common = \
input/es_out.c
\
input/input.c
\
input/meta.c
\
input/access.h
\
input/clock.h
\
input/decoder.h
\
input/demux.h
\
...
...
src/input/access.c
View file @
497c80a2
...
...
@@ -26,8 +26,9 @@
#endif
#include <vlc_common.h>
#include <libvlc.h>
#include "
input_internal
.h"
#include "
access
.h"
/*****************************************************************************
* access_InternalNew:
...
...
@@ -81,7 +82,6 @@ static access_t *access_InternalNew( vlc_object_t *p_obj, const char *psz_access
if
(
p_access
->
p_module
==
NULL
)
{
msg_StackAdd
(
"could not create access"
);
vlc_object_detach
(
p_access
);
free
(
p_access
->
psz_access
);
free
(
p_access
->
psz_path
);
...
...
src/input/demux.h
View file @
497c80a2
...
...
@@ -29,7 +29,7 @@
#ifndef _INPUT_DEMUX_H
#define _INPUT_DEMUX_H 1
#include <
vlc_common
.h>
#include <
libvlc
.h>
#include <vlc_demux.h>
/* stream_t *s could be null and then it mean a access+demux in one */
...
...
src/input/input.c
View file @
497c80a2
...
...
@@ -37,6 +37,7 @@
#include "input_internal.h"
#include "es_out.h"
#include "access.h"
#include "demux.h"
#include <vlc_sout.h>
...
...
src/input/input_internal.h
View file @
497c80a2
...
...
@@ -372,15 +372,6 @@ char *input_CreateFilename( vlc_object_t *p_obj, const char *psz_path, const cha
#define INPUT_RECORD_PREFIX "vlc-record-%Y-%m-%d-%H:%M:%S-$ N-$ p"
/* Access */
#define access_New( a, b, c, d ) __access_New(VLC_OBJECT(a), b, c, d )
access_t
*
__access_New
(
vlc_object_t
*
p_obj
,
const
char
*
psz_access
,
const
char
*
psz_demux
,
const
char
*
psz_path
);
access_t
*
access_FilterNew
(
access_t
*
p_source
,
const
char
*
psz_access_filter
);
void
access_Delete
(
access_t
*
);
/* Stream */
/**
* stream_t definition
...
...
src/input/stream.c
View file @
497c80a2
...
...
@@ -35,6 +35,7 @@
#include <assert.h>
#include "input_internal.h"
#include "access.h"
#undef STREAM_DEBUG
...
...
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