Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
57fe6b36
Commit
57fe6b36
authored
Apr 18, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input/stream: add STREAM_GET_SIGNAL (fixes #8414)
parent
7b76ee24
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
1 deletion
+6
-1
include/vlc_stream.h
include/vlc_stream.h
+1
-0
src/input/input.c
src/input/input.c
+1
-1
src/input/stream.c
src/input/stream.c
+2
-0
src/input/stream_demux.c
src/input/stream_demux.c
+1
-0
src/input/stream_memory.c
src/input/stream_memory.c
+1
-0
No files found.
include/vlc_stream.h
View file @
57fe6b36
...
...
@@ -112,6 +112,7 @@ enum stream_query_e
STREAM_GET_TITLE_INFO
=
0x102
,
/**< arg1=input_title_t*** arg2=int* res=can fail */
STREAM_GET_META
,
/**< arg1= vlc_meta_t ** res=can fail */
STREAM_GET_CONTENT_TYPE
,
/**< arg1= char ** res=can fail */
STREAM_GET_SIGNAL
,
/**< arg1=double *pf_quality, arg2=double *pf_strength res=can fail */
STREAM_SET_PAUSE_STATE
=
0x200
,
/**< arg1= bool res=can fail */
STREAM_SET_TITLE
,
/**< arg1= int res=can fail */
...
...
src/input/input.c
View file @
57fe6b36
...
...
@@ -2287,7 +2287,7 @@ static void UpdateGenericFromAccess( input_thread_t *p_input )
double
f_quality
;
double
f_strength
;
if
(
access_Control
(
p_access
,
ACCESS
_GET_SIGNAL
,
&
f_quality
,
&
f_strength
)
)
if
(
stream_Control
(
p_stream
,
STREAM
_GET_SIGNAL
,
&
f_quality
,
&
f_strength
)
)
f_quality
=
f_strength
=
-
1
;
input_SendEventSignal
(
p_input
,
f_quality
,
f_strength
);
...
...
src/input/stream.c
View file @
57fe6b36
...
...
@@ -616,6 +616,8 @@ static int AStreamControl( stream_t *s, int i_query, va_list args )
return
access_vaControl
(
p_access
,
ACCESS_GET_META
,
args
);
case
STREAM_GET_CONTENT_TYPE
:
return
access_vaControl
(
p_access
,
ACCESS_GET_CONTENT_TYPE
,
args
);
case
STREAM_GET_SIGNAL
:
return
access_vaControl
(
p_access
,
ACCESS_GET_SIGNAL
,
args
);
case
STREAM_SET_PAUSE_STATE
:
return
access_vaControl
(
p_access
,
ACCESS_SET_PAUSE_STATE
,
args
);
...
...
src/input/stream_demux.c
View file @
57fe6b36
...
...
@@ -300,6 +300,7 @@ static int DStreamControl( stream_t *s, int i_query, va_list args )
case
STREAM_GET_TITLE_INFO
:
case
STREAM_GET_META
:
case
STREAM_GET_CONTENT_TYPE
:
case
STREAM_GET_SIGNAL
:
case
STREAM_SET_PAUSE_STATE
:
case
STREAM_SET_TITLE
:
case
STREAM_SET_SEEKPOINT
:
...
...
src/input/stream_memory.c
View file @
57fe6b36
...
...
@@ -125,6 +125,7 @@ static int Control( stream_t *s, int i_query, va_list args )
case
STREAM_GET_TITLE_INFO
:
case
STREAM_GET_META
:
case
STREAM_GET_CONTENT_TYPE
:
case
STREAM_GET_SIGNAL
:
case
STREAM_SET_TITLE
:
case
STREAM_SET_SEEKPOINT
:
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