]> git.sesse.net Git - vlc/blob - src/input/input_internal.h
all: implemented INPUT_ADD_SLAVE.
[vlc] / src / input / input_internal.h
1 /*****************************************************************************
2  * input_internal.h:
3  *****************************************************************************
4  * Copyright (C) 1998-2004 VideoLAN
5  * $Id: input.c 7955 2004-06-07 22:21:33Z fenrir $
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
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 General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef _INPUT_INTERNAL_H
25 #define _INPUT_INTERNAL_H 1
26
27 enum input_control_e
28 {
29     INPUT_CONTROL_SET_DIE,
30
31     INPUT_CONTROL_SET_STATE,
32
33     INPUT_CONTROL_SET_RATE,
34     INPUT_CONTROL_SET_RATE_SLOWER,
35     INPUT_CONTROL_SET_RATE_FASTER,
36
37     INPUT_CONTROL_SET_POSITION,
38     INPUT_CONTROL_SET_POSITION_OFFSET,
39
40     INPUT_CONTROL_SET_TIME,
41     INPUT_CONTROL_SET_TIME_OFFSET,
42
43     INPUT_CONTROL_SET_PROGRAM,
44
45     INPUT_CONTROL_SET_TITLE,
46     INPUT_CONTROL_SET_TITLE_NEXT,
47     INPUT_CONTROL_SET_TITLE_PREV,
48
49     INPUT_CONTROL_SET_SEEKPOINT,
50     INPUT_CONTROL_SET_SEEKPOINT_NEXT,
51     INPUT_CONTROL_SET_SEEKPOINT_PREV,
52
53     INPUT_CONTROL_SET_BOOKMARK,
54
55     INPUT_CONTROL_SET_ES,
56
57     INPUT_CONTROL_SET_AUDIO_DELAY,
58     INPUT_CONTROL_SET_SPU_DELAY,
59
60     INPUT_CONTROL_ADD_SLAVE,
61 };
62
63 /* Internal helpers */
64 static inline void input_ControlPush( input_thread_t *p_input,
65                                       int i_type, vlc_value_t *p_val )
66 {
67     vlc_mutex_lock( &p_input->lock_control );
68     if( i_type == INPUT_CONTROL_SET_DIE )
69     {
70         /* Special case, empty the control */
71         p_input->i_control = 1;
72         p_input->control[0].i_type = i_type;
73         memset( &p_input->control[0].val, 0, sizeof( vlc_value_t ) );
74     }
75     else
76     {
77         if( p_input->i_control >= INPUT_CONTROL_FIFO_SIZE )
78         {
79             msg_Err( p_input, "input control fifo overflow, trashing type=%d",
80                      i_type );
81             vlc_mutex_unlock( &p_input->lock_control );
82             return;
83         }
84         p_input->control[p_input->i_control].i_type = i_type;
85         if( p_val )
86             p_input->control[p_input->i_control].val = *p_val;
87         else
88             memset( &p_input->control[p_input->i_control].val, 0,
89                     sizeof( vlc_value_t ) );
90
91         p_input->i_control++;
92     }
93     vlc_mutex_unlock( &p_input->lock_control );
94 }
95
96 /* var.c */
97 void input_ControlVarInit ( input_thread_t * );
98 void input_ControlVarClean( input_thread_t * );
99 void input_ControlVarNavigation( input_thread_t * );
100 void input_ControlVarTitle( input_thread_t *, int i_title );
101
102 void input_ConfigVarInit ( input_thread_t * );
103
104 /* stream.c */
105 stream_t *stream_AccessNew( access_t *p_access );
106 void stream_AccessDelete( stream_t *s );
107 void stream_AccessReset( stream_t *s );
108 void stream_AccessUpdate( stream_t *s );
109
110 /* decoder.c FIXME make it public ?*/
111 void       input_DecoderDiscontinuity( decoder_t * p_dec );
112 vlc_bool_t input_DecoderEmpty( decoder_t * p_dec );
113
114 /* es_out.c */
115 es_out_t  *input_EsOutNew( input_thread_t * );
116 void       input_EsOutDelete( es_out_t * );
117 es_out_id_t *input_EsOutGetFromID( es_out_t *, int i_id );
118 void       input_EsOutDiscontinuity( es_out_t *, vlc_bool_t b_audio );
119 void       input_EsOutSetDelay( es_out_t *, int i_cat, int64_t );
120 vlc_bool_t input_EsOutDecodersEmpty( es_out_t * );
121
122 /* clock.c */
123 enum /* Synchro states */
124 {
125     SYNCHRO_OK     = 0,
126     SYNCHRO_START  = 1,
127     SYNCHRO_REINIT = 2,
128 };
129
130 typedef struct
131 {
132     /* Synchronization information */
133     mtime_t                 delta_cr;
134     mtime_t                 cr_ref, sysdate_ref;
135     mtime_t                 last_cr; /* reference to detect unexpected stream
136                                       * discontinuities                      */
137     mtime_t                 last_pts;
138     count_t                 c_average_count;
139                            /* counter used to compute dynamic average values */
140     int                     i_synchro_state;
141
142     vlc_bool_t              b_master;
143
144     /* Config */
145     int                     i_cr_average;
146 } input_clock_t;
147
148 void input_ClockInit( input_clock_t *, vlc_bool_t b_master, int i_cr_average );
149 void    input_ClockSetPCR( input_thread_t *, input_clock_t *, mtime_t );
150 mtime_t input_ClockGetTS( input_thread_t *, input_clock_t *, mtime_t );
151
152 /* Subtitles */
153 char **subtitles_Detect( input_thread_t *, char* path, char *fname );
154
155 #endif