Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
71eb0c84
Commit
71eb0c84
authored
Jul 30, 2015
by
François 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