From 132308a6d356e24e56a0e1e07d2f33d6f5517246 Mon Sep 17 00:00:00 2001 From: Alexandre Janniaux Date: Fri, 26 Apr 2024 16:00:09 +0200 Subject: [PATCH] vlc_es_out: remove private control callback The private control has been moved to struct vlc_input_es_out which is an internal interface used by the input only, removing the need for the modules using the vlc_es_out interface to know about this. --- include/vlc_es_out.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/vlc_es_out.h b/include/vlc_es_out.h index 2e53308ce1..6b84ea2be7 100644 --- a/include/vlc_es_out.h +++ b/include/vlc_es_out.h @@ -131,10 +131,6 @@ struct es_out_callbacks void (*del)(es_out_t *, es_out_id_t *); int (*control)(es_out_t *, input_source_t *in, int query, va_list); void (*destroy)(es_out_t *); - /** - * Private control callback, must be NULL for es_out created from modules. - */ - int (*priv_control)(es_out_t *, input_source_t *in, int query, va_list); }; struct es_out_t