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
71eb0c84
Commit
71eb0c84
authored
Jul 30, 2015
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
es_out_timeshift: merge unkown queries case with invalid ones
parent
b4559487
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
11 deletions
+8
-11
src/input/es_out_timeshift.c
src/input/es_out_timeshift.c
+8
-11
No files found.
src/input/es_out_timeshift.c
View file @
71eb0c84
...
...
@@ -576,16 +576,6 @@ static int ControlLocked( es_out_t *p_out, int i_query, va_list args )
switch
(
i_query
)
{
/* Invalid query for this es_out level */
case
ES_OUT_SET_ES_BY_ID
:
case
ES_OUT_RESTART_ES_BY_ID
:
case
ES_OUT_SET_ES_DEFAULT_BY_ID
:
case
ES_OUT_GET_ES_OBJECTS_BY_ID
:
case
ES_OUT_SET_DELAY
:
case
ES_OUT_SET_RECORD_STATE
:
vlc_assert_unreachable
();
return
VLC_EGENERIC
;
/* Pass-through control */
case
ES_OUT_SET_MODE
:
case
ES_OUT_SET_GROUP
:
...
...
@@ -697,9 +687,16 @@ static int ControlLocked( es_out_t *p_out, int i_query, va_list args )
return
es_out_Control
(
p_sys
->
p_out
,
ES_OUT_GET_GROUP_FORCED
,
pi_group
);
}
default:
msg_Err
(
p_sys
->
p_input
,
"Unknown es_out_Control query !"
);
// ft
/* Invalid queries for this es_out level */
case
ES_OUT_SET_ES_BY_ID
:
case
ES_OUT_RESTART_ES_BY_ID
:
case
ES_OUT_SET_ES_DEFAULT_BY_ID
:
case
ES_OUT_GET_ES_OBJECTS_BY_ID
:
case
ES_OUT_SET_DELAY
:
case
ES_OUT_SET_RECORD_STATE
:
vlc_assert_unreachable
();
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