[vlc-commits] es_out: remove deprecated ES_OUT_RESTART_ALL_ES
Thomas Guillem
git at videolan.org
Wed Jul 18 18:07:05 CEST 2018
vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Wed Jul 18 15:17:31 2018 +0200| [0370cc0fe46524b5c8147a3b4909f2f9ff19f276] | committer: Thomas Guillem
es_out: remove deprecated ES_OUT_RESTART_ALL_ES
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0370cc0fe46524b5c8147a3b4909f2f9ff19f276
---
include/vlc_es_out.h | 1 -
src/input/es_out_timeshift.c | 3 ---
2 files changed, 4 deletions(-)
diff --git a/include/vlc_es_out.h b/include/vlc_es_out.h
index c2a4212130..b30d24e873 100644
--- a/include/vlc_es_out.h
+++ b/include/vlc_es_out.h
@@ -38,7 +38,6 @@ enum es_out_query_e
/* set or change the selected ES in its category (audio/video/spu) */
ES_OUT_SET_ES, /* arg1= es_out_id_t* */
ES_OUT_RESTART_ES, /* arg1= es_out_id_t* */
- ES_OUT_RESTART_ALL_ES, /* Deprecated, no effect */
/* set 'default' tag on ES (copied across from container) */
ES_OUT_SET_ES_DEFAULT, /* arg1= es_out_id_t* */
diff --git a/src/input/es_out_timeshift.c b/src/input/es_out_timeshift.c
index d17a8f8f2b..62c633bf4c 100644
--- a/src/input/es_out_timeshift.c
+++ b/src/input/es_out_timeshift.c
@@ -619,7 +619,6 @@ static int ControlLocked( es_out_t *p_out, int i_query, va_list args )
case ES_OUT_SET_META:
case ES_OUT_SET_ES:
case ES_OUT_RESTART_ES:
- case ES_OUT_RESTART_ALL_ES:
case ES_OUT_SET_ES_DEFAULT:
case ES_OUT_SET_ES_STATE:
case ES_OUT_SET_ES_CAT_POLICY:
@@ -1382,7 +1381,6 @@ static int CmdInitControl( ts_cmd_t *p_cmd, int i_query, va_list args, bool b_co
case ES_OUT_RESET_PCR: /* no arg */
case ES_OUT_SET_EOS:
- case ES_OUT_RESTART_ALL_ES:
break;
case ES_OUT_SET_META: /* arg1=const vlc_meta_t* */
@@ -1534,7 +1532,6 @@ static int CmdExecuteControl( es_out_t *p_out, ts_cmd_t *p_cmd )
case ES_OUT_RESET_PCR: /* no arg */
case ES_OUT_SET_EOS:
- case ES_OUT_RESTART_ALL_ES:
return es_out_Control( p_out, i_query );
case ES_OUT_SET_GROUP_META: /* arg1=int i_group arg2=const vlc_meta_t* */
More information about the vlc-commits
mailing list