void input_SendEventTeletextAdd( input_thread_t *p_input, int i_teletext, const char *psz_text ) { VarListAdd( p_input, "teletext-es", INPUT_EVENT_TELETEXT, i_teletext, psz_text ); }
/***************************************************************************** * Event for es_out.c *****************************************************************************/ void input_SendEventProgramAdd( input_thread_t *p_input, int i_program, const char *psz_text ) { VarListAdd( p_input, "program", INPUT_EVENT_PROGRAM, i_program, psz_text ); }
void input_SendEventEsAdd( input_thread_t *p_input, int i_cat, int i_id, const char *psz_text ) { if( i_cat != UNKNOWN_ES ) VarListAdd( p_input, GetEsVarName( i_cat ), INPUT_EVENT_ES, i_id, psz_text ); }
void input_SendEventEsAdd( input_thread_t *p_input, int i_cat, int i_id, const char *psz_text ) { const char *psz_varname = GetEsVarName( i_cat ); if( psz_varname ) VarListAdd( p_input, psz_varname, INPUT_EVENT_ES, i_id, psz_text ); }