codec/esout: add support for CEA708
[vlc.git] / src / input / event.h
blob156b992059b7b39f904fecadc9de0edd5eb49989
1 /*****************************************************************************
2 * event.h: Input event functions
3 *****************************************************************************
4 * Copyright (C) 2008 Laurent Aimar
5 * $Id$
7 * Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ fr>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifndef LIBVLC_INPUT_EVENT_H
25 #define LIBVLC_INPUT_EVENT_H 1
27 #include <vlc_common.h>
29 /*****************************************************************************
30 * Event for input.c
31 *****************************************************************************/
32 void input_SendEventDead( input_thread_t *p_input );
33 void input_SendEventPosition( input_thread_t *p_input, double f_position, mtime_t i_time );
34 void input_SendEventLength( input_thread_t *p_input, mtime_t i_length );
35 void input_SendEventStatistics( input_thread_t *p_input );
36 void input_SendEventRate( input_thread_t *p_input, int i_rate );
37 void input_SendEventAudioDelay( input_thread_t *p_input, mtime_t i_delay );
38 void input_SendEventSubtitleDelay( input_thread_t *p_input, mtime_t i_delay );
39 void input_SendEventRecord( input_thread_t *p_input, bool b_recording );
40 void input_SendEventTitle( input_thread_t *p_input, int i_title );
41 void input_SendEventSeekpoint( input_thread_t *p_input, int i_title, int i_seekpoint );
42 void input_SendEventSignal( input_thread_t *p_input, double f_quality, double f_strength );
43 void input_SendEventState( input_thread_t *p_input, int i_state );
44 void input_SendEventCache( input_thread_t *p_input, double f_level );
46 /* TODO rename Item* */
47 void input_SendEventMeta( input_thread_t *p_input );
48 void input_SendEventMetaInfo( input_thread_t *p_input );
49 void input_SendEventMetaEpg( input_thread_t *p_input );
51 /*****************************************************************************
52 * Event for es_out.c
53 *****************************************************************************/
54 void input_SendEventProgramAdd( input_thread_t *p_input,
55 int i_program, const char *psz_text );
56 void input_SendEventProgramDel( input_thread_t *p_input, int i_program );
57 void input_SendEventProgramSelect( input_thread_t *p_input, int i_program );
58 void input_SendEventProgramScrambled( input_thread_t *p_input, int i_group, bool b_scrambled );
60 void input_SendEventEsDel( input_thread_t *p_input, enum es_format_category_e i_cat, int i_id );
61 void input_SendEventEsAdd( input_thread_t *p_input, enum es_format_category_e i_cat, int i_id, const char *psz_text );
62 void input_SendEventEsSelect( input_thread_t *p_input, enum es_format_category_e i_cat, int i_id ); /* i_id == -1 will unselect */
64 void input_SendEventTeletextAdd( input_thread_t *p_input,
65 int i_teletext, const char *psz_text );
66 void input_SendEventTeletextDel( input_thread_t *p_input, int i_teletext );
67 void input_SendEventTeletextSelect( input_thread_t *p_input, int i_teletext );
69 /*****************************************************************************
70 * Event for decoder.c
71 *****************************************************************************/
72 void input_SendEventVout( input_thread_t *p_input );
73 void input_SendEventAout( input_thread_t *p_input );
75 /*****************************************************************************
76 * Event for control.c/input.c
77 *****************************************************************************/
78 void input_SendEventBookmark( input_thread_t *p_input );
80 #endif