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
e3e9c137
Commit
e3e9c137
authored
Oct 02, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pass content-type from access to stream
parent
d8fc0a94
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
1 deletion
+23
-1
include/vlc_stream.h
include/vlc_stream.h
+17
-1
src/input/demux.c
src/input/demux.c
+1
-0
src/input/mem_stream.c
src/input/mem_stream.c
+1
-0
src/input/stream.c
src/input/stream.c
+4
-0
No files found.
include/vlc_stream.h
View file @
e3e9c137
...
...
@@ -60,8 +60,10 @@ enum stream_query_e
/* Special for direct access control from demuxer.
* XXX: avoid using it by all means */
STREAM_CONTROL_ACCESS
/* arg1= int i_access_query, args res: can fail
STREAM_CONTROL_ACCESS
,
/* arg1= int i_access_query, args res: can fail
if access unreachable or access control answer */
STREAM_GET_CONTENT_TYPE
,
/**< arg1= char ** res=can file */
};
VLC_EXPORT
(
int
,
stream_Read
,
(
stream_t
*
s
,
void
*
p_read
,
int
i_read
)
);
...
...
@@ -91,17 +93,31 @@ static inline int64_t stream_Size( stream_t *s )
stream_Control
(
s
,
STREAM_GET_SIZE
,
&
i_pos
);
return
i_pos
;
}
static
inline
int
stream_MTU
(
stream_t
*
s
)
{
int
i_mtu
;
stream_Control
(
s
,
STREAM_GET_MTU
,
&
i_mtu
);
return
i_mtu
;
}
static
inline
int
stream_Seek
(
stream_t
*
s
,
int64_t
i_pos
)
{
return
stream_Control
(
s
,
STREAM_SET_POSITION
,
i_pos
);
}
/**
* Get the Content-Type of a stream, or NULL if unknown.
* Result must be free()'d.
*/
static
inline
char
*
stream_ContentType
(
stream_t
*
s
)
{
char
*
res
;
if
(
stream_Control
(
s
,
STREAM_GET_CONTENT_TYPE
,
&
res
)
)
return
NULL
;
return
res
;
}
/**
* Create a special stream and a demuxer, this allows chaining demuxers
*/
...
...
src/input/demux.c
View file @
e3e9c137
...
...
@@ -508,6 +508,7 @@ static int DStreamControl( stream_t *s, int i_query, va_list args )
return
VLC_SUCCESS
;
case
STREAM_CONTROL_ACCESS
:
case
STREAM_GET_CONTENT_TYPE
:
return
VLC_EGENERIC
;
default:
...
...
src/input/mem_stream.c
View file @
e3e9c137
...
...
@@ -123,6 +123,7 @@ static int Control( stream_t *s, int i_query, va_list args )
break
;
case
STREAM_GET_MTU
:
case
STREAM_GET_CONTENT_TYPE
:
return
VLC_EGENERIC
;
case
STREAM_CONTROL_ACCESS
:
...
...
src/input/stream.c
View file @
e3e9c137
...
...
@@ -556,6 +556,10 @@ static int AStreamControl( stream_t *s, int i_query, va_list args )
}
return
access2_vaControl
(
p_access
,
i_int
,
args
);
case
STREAM_GET_CONTENT_TYPE
:
return
access2_Control
(
p_access
,
ACCESS_GET_CONTENT_TYPE
,
va_arg
(
args
,
char
**
)
);
default:
msg_Err
(
s
,
"invalid stream_vaControl query=0x%x"
,
i_query
);
return
VLC_EGENERIC
;
...
...
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