]> git.sesse.net Git - vlc/blob - include/input_ext-intf.h
. removed tests against i_rate and i_new_rate calculation from the
[vlc] / include / input_ext-intf.h
1 /*****************************************************************************
2  * input_ext-intf.h: structures of the input exported to the interface
3  * This header provides structures to read the stream descriptors and
4  * control the pace of reading. 
5  *****************************************************************************
6  * Copyright (C) 1999, 2000 VideoLAN
7  * $Id: input_ext-intf.h,v 1.19 2001/02/12 09:39:15 sam Exp $
8  *
9  * Authors: Christophe Massiot <massiot@via.ecp.fr>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*
27  * Communication input -> interface
28  */
29 #define INPUT_MAX_PLUGINS   1
30 /* FIXME ! */
31 #define REQUESTED_MPEG         1
32 #define REQUESTED_AC3          2
33 #define REQUESTED_LPCM         3
34 #define REQUESTED_NOAUDIO    255
35
36 /*****************************************************************************
37  * es_descriptor_t: elementary stream descriptor
38  *****************************************************************************
39  * Describes an elementary stream, and includes fields required to handle and
40  * demultiplex this elementary stream.
41  *****************************************************************************/
42 struct decoder_fifo_s;                         /* defined in input_ext-dec.h */
43 struct pgrm_descriptor_s;
44
45 typedef struct es_descriptor_s
46 {
47     u16                     i_id;            /* stream ID for PS, PID for TS */
48     u8                      i_stream_id;     /* stream ID defined in the PES */
49     u8                      i_type;                           /* stream type */
50     boolean_t               b_audio;      /* is the stream an audio stream that
51                                            * will need to be discarded with
52                                            * fast forward and slow motion ?  */
53
54     /* Demultiplexer information */
55     void *                  p_demux_data;
56     struct pgrm_descriptor_s *
57                             p_pgrm;  /* very convenient in the demultiplexer */
58
59     /* PES parser information */
60     struct pes_packet_s *   p_pes;                            /* Current PES */
61     struct data_packet_s *  p_last;   /* The last packet gathered at present */
62     int                     i_pes_real_size;   /* as indicated by the header */
63
64     /* Decoder information */
65     struct decoder_fifo_s * p_decoder_fifo;
66     vlc_thread_t            thread_id;                  /* ID of the decoder */
67
68 #ifdef STATS
69     count_t                 c_payload_bytes;/* total of payload useful bytes */
70     count_t                 c_packets;                 /* total packets read */
71     count_t                 c_invalid_packets;       /* invalid packets read */
72 #endif
73 } es_descriptor_t;
74
75 /* Special PID values - note that the PID is only on 13 bits, and that values
76  * greater than 0x1fff have no meaning in a stream */
77 #define PROGRAM_ASSOCIATION_TABLE_PID   0x0000
78 #define CONDITIONNAL_ACCESS_TABLE_PID   0x0001                   /* not used */
79 #define EMPTY_ID                        0xffff    /* empty record in a table */
80  
81 /* ES streams types - see ISO/IEC 13818-1 table 2-29 numbers */
82 #define MPEG1_VIDEO_ES      0x01
83 #define MPEG2_VIDEO_ES      0x02
84 #define MPEG1_AUDIO_ES      0x03
85 #define MPEG2_AUDIO_ES      0x04
86 #define AC3_AUDIO_ES        0x81
87 /* These ones might violate the norm : */
88 #define DVD_SPU_ES          0x82
89 #define LPCM_AUDIO_ES       0x83
90 #define UNKNOWN_ES          0xFF
91
92 /*****************************************************************************
93  * pgrm_descriptor_t
94  *****************************************************************************
95  * Describes a program and list associated elementary streams. It is build by
96  * the PSI decoder upon the informations carried in program map sections
97  *****************************************************************************/
98 typedef struct pgrm_descriptor_s
99 {
100     /* Program characteristics */
101     u16                     i_number;                      /* program number */
102     u8                      i_version;                     /* version number */
103     boolean_t               b_is_ok;      /* Is the description up to date ? */
104
105     /* Service Descriptor (program name) - DVB extension */
106     u8                      i_srv_type;
107     char *                  psz_srv_name;
108
109     /* Synchronization information */
110     mtime_t                 delta_cr;
111     mtime_t                 cr_ref, sysdate_ref;
112     mtime_t                 last_cr; /* reference to detect unexpected stream
113                                       * discontinuities                      */
114     count_t                 c_average_count;
115                            /* counter used to compute dynamic average values */
116     int                     i_synchro_state;
117
118     /* Demultiplexer data */
119     void *                  p_demux_data;
120
121     /* Decoders control */
122     struct vout_thread_s *  p_vout;
123     struct aout_thread_s *  p_aout;
124
125     int                     i_es_number;      /* size of the following array */
126     es_descriptor_t **      pp_es;                /* array of pointers to ES */
127 } pgrm_descriptor_t;
128
129 /* Synchro states */
130 #define SYNCHRO_OK          0
131 #define SYNCHRO_START       1
132 #define SYNCHRO_REINIT      2
133
134 /*****************************************************************************
135  * stream_descriptor_t
136  *****************************************************************************
137  * Describes a stream and list its associated programs. Build upon
138  * the information carried in program association sections (for instance)
139  *****************************************************************************/
140 typedef struct stream_descriptor_s
141 {
142     u16                     i_stream_id;                        /* stream id */
143     vlc_mutex_t             stream_lock;  /* to be taken every time you read
144                                            * or modify stream, pgrm or es    */
145
146     /* Input method data */
147     boolean_t               b_pace_control;    /* can we read when we want ? */
148     boolean_t               b_seekable;               /* can we do lseek() ? */
149     /* if (b_seekable) : */
150     off_t                   i_size;                  /* total size of the file
151                                                       * (in arbitrary units) */
152     off_t                   i_tell;             /* actual location in the file
153                                                  * (in arbitrary units) */
154     off_t                   i_seek;         /* next requested location (changed
155                                              * by the interface thread */
156
157     /* New status and rate requested by the interface */
158     int                     i_new_status, i_new_rate;
159     vlc_cond_t              stream_wait; /* interface -> input in case of a
160                                           * status change request            */
161
162     /* Demultiplexer data */
163     void *                  p_demux_data;
164
165     /* Programs descriptions */
166     int                     i_pgrm_number;    /* size of the following array */
167     pgrm_descriptor_t **    pp_programs;        /* array of pointers to pgrm */
168
169     /* ES descriptions */
170     int                     i_es_number;
171     es_descriptor_t **      pp_es;             /* carried elementary streams */
172     int                     i_selected_es_number;
173     es_descriptor_t **      pp_selected_es;             /* ES with a decoder */
174
175     /* Stream control */
176     stream_ctrl_t           control;
177 } stream_descriptor_t;
178
179 /*****************************************************************************
180  * i_p_config_t
181  *****************************************************************************
182  * This structure gives plugins pointers to the useful functions of input
183  *****************************************************************************/
184 struct input_thread_s;
185 struct data_packet_s;
186 struct es_descriptor_s;
187
188 typedef struct i_p_config_s
189 {
190     int                 (* pf_peek_stream)( struct input_thread_s *,
191                                             byte_t * buffer, size_t );
192     void                (* pf_demux_pes)( struct input_thread_s *,
193                                           struct data_packet_s *,
194                                           struct es_descriptor_s *,
195                                           boolean_t b_unit_start,
196                                           boolean_t b_packet_lost );
197 } i_p_config_t;
198
199 /*****************************************************************************
200  * input_thread_t
201  *****************************************************************************
202  * This structure includes all the local static variables of an input thread
203  *****************************************************************************/
204 struct aout_thread_s;
205 struct vout_thread_s;
206
207 typedef struct input_thread_s
208 {
209     /* Thread properties and locks */
210     boolean_t               b_die;                             /* 'die' flag */
211     boolean_t               b_error;
212     boolean_t               b_eof;
213     vlc_thread_t            thread_id;            /* id for thread functions */
214     int *                   pi_status;              /* temporary status flag */
215
216     /* Input module */
217     struct module_s *       p_input_module;
218
219     /* Init/End */
220     void                 (* pf_init)( struct input_thread_s * );
221     void                 (* pf_open)( struct input_thread_s * );
222     void                 (* pf_close)( struct input_thread_s * );
223     void                 (* pf_end)( struct input_thread_s * );
224
225     /* Read & Demultiplex */
226     int                  (* pf_read)( struct input_thread_s *,
227                                       struct data_packet_s * pp_packets[] );
228     void                 (* pf_demux)( struct input_thread_s *,
229                                        struct data_packet_s * );
230
231     /* Packet management facilities */
232     struct data_packet_s *(*pf_new_packet)( void *, size_t );
233     struct pes_packet_s *(* pf_new_pes)( void * );
234     void                 (* pf_delete_packet)( void *,
235                                                struct data_packet_s * );
236     void                 (* pf_delete_pes)( void *, struct pes_packet_s * );
237
238     /* Stream control capabilities */
239     int                  (* pf_rewind)( struct input_thread_s * );
240                                            /* NULL if we don't support going *
241                                             * backwards (it's gonna be fun)  */
242     void                 (* pf_seek)( struct input_thread_s *, off_t );
243
244     i_p_config_t            i_p_config;              /* plugin configuration */
245     char *                  p_source;
246
247     int                     i_handle;           /* socket or file descriptor */
248     void *                  p_method_data;     /* data of the packet manager */
249     void *                  p_plugin_data;             /* data of the plugin */
250
251     /* General stream description */
252     stream_descriptor_t     stream;                            /* PAT tables */
253
254     /* For auto-launch of decoders */
255     struct aout_thread_s *  p_default_aout;
256     struct vout_thread_s *  p_default_vout;
257
258 #ifdef STATS
259     count_t                 c_loops;
260     count_t                 c_bytes;                           /* bytes read */
261     count_t                 c_payload_bytes;         /* payload useful bytes */
262     count_t                 c_packets_read;                  /* packets read */
263     count_t                 c_packets_trashed;            /* trashed packets */
264 #endif
265 } input_thread_t;
266
267
268 /*
269  * Communication interface -> input
270  */
271
272 /*****************************************************************************
273  * input_config_t
274  *****************************************************************************
275  * This structure is given by the interface to an input thread
276  *****************************************************************************/
277 typedef struct input_config_s
278 {
279     /* Input method description */
280     int                         i_method;                    /* input method */
281     char *                      p_source;                          /* source */
282
283     /* For auto-launch of decoders */
284     struct aout_thread_s *      p_default_aout;
285     struct vout_thread_s *      p_default_vout;
286 } input_config_t;
287
288 /* Input methods */
289 #define INPUT_METHOD_NONE           0            /* input thread is inactive */
290 #define INPUT_METHOD_FILE          10   /* stream is read from file p_source */
291 #define INPUT_METHOD_DVD           11      /* stream is read from dvd device */
292 #define INPUT_METHOD_UCAST         20                         /* UDP unicast */
293 #define INPUT_METHOD_MCAST         21                       /* UDP multicast */
294 #define INPUT_METHOD_BCAST         22                       /* UDP broadcast */
295 #define INPUT_METHOD_VLAN_BCAST    32            /* UDP broadcast with VLANs */
296
297 /* Rate changing methods */
298 #define INPUT_RATE_PLAY             0
299 #define INPUT_RATE_PAUSE            1
300 #define INPUT_RATE_FASTER           2
301 #define INPUT_RATE_SLOWER           3
302
303 /*****************************************************************************
304  * Prototypes
305  *****************************************************************************/
306 struct input_thread_s * input_CreateThread ( struct playlist_item_s *,
307                                              int *pi_status );
308 void input_DestroyThread( struct input_thread_s *, int *pi_status );
309
310 void input_SetRate( struct input_thread_s *, int );
311 void input_Seek   ( struct input_thread_s *, off_t );
312