Browse Source

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.
pull/162/head
Alexandre Janniaux 2 years ago
committed by Jean-Baptiste Kempf
parent
commit
132308a6d3
  1. 4
      include/vlc_es_out.h

4
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

Loading…
Cancel
Save