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.
This commit is contained in:
Alexandre Janniaux 2024-04-26 16:00:09 +02:00 committed by Jean-Baptiste Kempf
parent 115c9e7f26
commit 132308a6d3

View File

@ -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