]> git.sesse.net Git - vlc/blob - src/input/input_internal.h
* all: - added a boolean "seekable" object variable to p_input.
[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 #include "../../modules/demux/util/sub.h"
27
28
29
30 enum input_control_e
31 {
32     INPUT_CONTROL_SET_DIE,
33
34     INPUT_CONTROL_SET_STATE,
35
36     INPUT_CONTROL_SET_RATE,
37     INPUT_CONTROL_SET_RATE_SLOWER,
38     INPUT_CONTROL_SET_RATE_FASTER,
39
40     INPUT_CONTROL_SET_POSITION,
41     INPUT_CONTROL_SET_POSITION_OFFSET,
42
43     INPUT_CONTROL_SET_TIME,
44     INPUT_CONTROL_SET_TIME_OFFSET,
45
46     INPUT_CONTROL_SET_PROGRAM,
47
48     INPUT_CONTROL_SET_TITLE,
49     INPUT_CONTROL_SET_TITLE_NEXT,
50     INPUT_CONTROL_SET_TITLE_PREV,
51
52     INPUT_CONTROL_SET_SEEKPOINT,
53     INPUT_CONTROL_SET_SEEKPOINT_NEXT,
54     INPUT_CONTROL_SET_SEEKPOINT_PREV,
55
56     INPUT_CONTROL_SET_BOOKMARK,
57
58     INPUT_CONTROL_SET_ES,
59
60     INPUT_CONTROL_SET_AUDIO_DELAY,
61     INPUT_CONTROL_SET_SPU_DELAY,
62 };
63 struct input_thread_sys_t
64 {
65     /* subtitles */
66     int              i_sub;
67     subtitle_demux_t **sub;
68 };
69
70
71 /* Internal helpers */
72 static inline void input_ControlPush( input_thread_t *p_input,
73                                       int i_type, vlc_value_t *p_val )
74 {
75     vlc_mutex_lock( &p_input->lock_control );
76     if( i_type == INPUT_CONTROL_SET_DIE )
77     {
78         /* Special case, empty the control */
79         p_input->i_control = 1;
80         p_input->control[0].i_type = i_type;
81         memset( &p_input->control[0].val, 0, sizeof( vlc_value_t ) );
82     }
83     else
84     {
85         if( p_input->i_control >= INPUT_CONTROL_FIFO_SIZE )
86         {
87             msg_Err( p_input, "input control fifo overflow, trashing type=%d",
88                      i_type );
89             vlc_mutex_unlock( &p_input->lock_control );
90             return;
91         }
92         p_input->control[p_input->i_control].i_type = i_type;
93         if( p_val )
94             p_input->control[p_input->i_control].val = *p_val;
95         else
96             memset( &p_input->control[p_input->i_control].val, 0,
97                     sizeof( vlc_value_t ) );
98
99         p_input->i_control++;
100     }
101     vlc_mutex_unlock( &p_input->lock_control );
102 }
103
104 /* var.c */
105 void input_ControlVarInit ( input_thread_t * );
106 void input_ControlVarClean( input_thread_t * );
107 void input_ControlVarNavigation( input_thread_t * );
108 void input_ControlVarTitle( input_thread_t *, int i_title );
109
110 void input_ConfigVarInit ( input_thread_t * );
111
112 /* stream.c */
113 stream_t *stream_AccessNew( access_t *p_access );
114 void stream_AccessDelete( stream_t *s );
115 void stream_AccessReset( stream_t *s );
116
117 /* Decoder FIXME make it public */
118 void input_DecoderDiscontinuity( decoder_t * p_dec );
119
120 /* es_out.c */
121 es_out_t *input_EsOutNew( input_thread_t * );
122 void      input_EsOutDelete( es_out_t * );
123 es_out_id_t *input_EsOutGetFromID( es_out_t *, int i_id );
124 void      input_EsOutDiscontinuity( es_out_t *, vlc_bool_t b_audio );
125 void      input_EsOutSetDelay( es_out_t *, int i_cat, int64_t );
126
127 /* clock.c */
128 enum /* Synchro states */
129 {
130     SYNCHRO_OK     = 0,
131     SYNCHRO_START  = 1,
132     SYNCHRO_REINIT = 2,
133 };
134
135 typedef struct
136 {
137     /* Synchronization information */
138     mtime_t                 delta_cr;
139     mtime_t                 cr_ref, sysdate_ref;
140     mtime_t                 last_cr; /* reference to detect unexpected stream
141                                       * discontinuities                      */
142     mtime_t                 last_pts;
143     count_t                 c_average_count;
144                            /* counter used to compute dynamic average values */
145     int                     i_synchro_state;
146
147     vlc_bool_t              b_master;
148
149     /* Config */
150     int                     i_cr_average;
151 } input_clock_t;
152
153 void input_ClockInit( input_clock_t *, vlc_bool_t b_master, int i_cr_average );
154 void    input_ClockSetPCR( input_thread_t *, input_clock_t *, mtime_t );
155 mtime_t input_ClockGetTS( input_thread_t *, input_clock_t *, mtime_t );
156
157 /* Subtitles */
158 char **subtitles_Detect( input_thread_t *, char* path, char *fname );
159
160 #endif