vlc | branch: master | Thomas Guillem <[email protected]> | Thu Feb 27 13:38:36 2020 +0100| [bd5f59ad2d9f865cbb8e097a80ddd47c512cdfaf] | committer: Thomas Guillem
es_out: hide ES_OUT_SET_AUTOSELECT It is only used from the input_thread_t and don't need to be public. > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bd5f59ad2d9f865cbb8e097a80ddd47c512cdfaf --- include/vlc_es_out.h | 4 ---- src/input/es_out.h | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/vlc_es_out.h b/include/vlc_es_out.h index d15f9aef14..06b6a8f338 100644 --- a/include/vlc_es_out.h +++ b/include/vlc_es_out.h @@ -111,10 +111,6 @@ enum es_out_query_e ES_OUT_SPU_SET_HIGHLIGHT, /* arg1= es_out_id_t* (spu es), arg2= const vlc_spu_highlight_t *, res=can fail */ - /* Disable autoselection of tracks from a given category */ - ES_OUT_SET_AUTOSELECT, /* arg1= int (es category), - arg2= int (enabled/disabled), res=can fail */ - /* First value usable for private control */ ES_OUT_PRIVATE_START = 0x10000, }; diff --git a/src/input/es_out.h b/src/input/es_out.h index 81592850cd..780dd12bd4 100644 --- a/src/input/es_out.h +++ b/src/input/es_out.h @@ -46,6 +46,10 @@ enum es_out_query_private_e /* Select a list of ES */ ES_OUT_SET_ES_LIST, /* arg1= es_out_id_t *const* (null terminated array) */ + /* Disable autoselection of tracks from a given category */ + ES_OUT_SET_AUTOSELECT, /* arg1= int (es category), + arg2= int (enabled/disabled), res=can fail */ + /* Wrapper for some ES command to work with id */ ES_OUT_SET_ES_BY_ID, /* arg1= int, arg2= bool (forced) */ ES_OUT_RESTART_ES_BY_ID, _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
