]> git.sesse.net Git - vlc/blob - include/input_ext-intf.h
c7d9042fbc13198410f9a74b83f311a0f76847a2
[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.62 2002/03/05 17:46:33 stef 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 /* FIXME ! */
30 #define REQUESTED_MPEG         1
31 #define REQUESTED_AC3          2
32 #define REQUESTED_LPCM         3
33 #define REQUESTED_NOAUDIO    255
34
35 #define OFFSETTOTIME_MAX_SIZE       10
36
37 /*****************************************************************************
38  * input_bank_t, p_input_bank (global variable)
39  *****************************************************************************
40  * This global variable is accessed by any function using the input.
41  *****************************************************************************/
42 typedef struct input_bank_s
43 {
44     /* Array to all the input threads */
45     struct input_thread_s *pp_input[ INPUT_MAX_THREADS ];
46
47     int                   i_count;
48     vlc_mutex_t           lock;                               /* Global lock */
49
50 } input_bank_t;
51
52 #ifndef PLUGIN
53 extern input_bank_t *p_input_bank;
54 #else
55 #   define p_input_bank (p_symbols->p_input_bank)
56 #endif
57
58 /*****************************************************************************
59  * es_descriptor_t: elementary stream descriptor
60  *****************************************************************************
61  * Describes an elementary stream, and includes fields required to handle and
62  * demultiplex this elementary stream.
63  *****************************************************************************/
64 typedef struct es_descriptor_s
65 {
66     u16                     i_id;            /* stream ID for PS, PID for TS */
67     u8                      i_stream_id;     /* stream ID defined in the PES */
68     u8                      i_type;                           /* stream type */
69     boolean_t               b_audio;      /* is the stream an audio stream that
70                                            * will need to be discarded with
71                                            * fast forward and slow motion ?  */
72     u8                      i_cat;        /* stream category: video, audio,
73                                            * spu, other */
74
75     char                    psz_desc[20]; /* description of ES: audio language
76                                            * for instance ; NULL if not
77                                            *  available */
78
79     /* Demultiplexer information */
80     void *                  p_demux_data;
81     struct pgrm_descriptor_s *
82                             p_pgrm;  /* very convenient in the demultiplexer */
83
84     /* PES parser information */
85     struct pes_packet_s *   p_pes;                            /* Current PES */
86     int                     i_pes_real_size;   /* as indicated by the header */
87
88     /* Decoder information */
89     struct decoder_fifo_s * p_decoder_fifo;
90     vlc_thread_t            thread_id;                  /* ID of the decoder */
91
92     count_t                 c_packets;                 /* total packets read */
93     count_t                 c_invalid_packets;       /* invalid packets read */
94
95     /* Module properties */
96     struct module_s *         p_module;
97     struct decoder_config_s * p_config;
98
99 } es_descriptor_t;
100
101 /* Special PID values - note that the PID is only on 13 bits, and that values
102  * greater than 0x1fff have no meaning in a stream */
103 #define PROGRAM_ASSOCIATION_TABLE_PID   0x0000
104 #define CONDITIONNAL_ACCESS_TABLE_PID   0x0001                   /* not used */
105 #define EMPTY_ID                        0xffff    /* empty record in a table */
106  
107
108 /* ES Categories to be used by interface plugins */
109 #define VIDEO_ES        0x00
110 #define AUDIO_ES        0x01
111 #define SPU_ES          0x02
112 #define NAV_ES          0x03
113 #define UNKNOWN_ES      0xFF
114
115 /*****************************************************************************
116  * pgrm_descriptor_t
117  *****************************************************************************
118  * Describes a program and list associated elementary streams. It is build by
119  * the PSI decoder upon the informations carried in program map sections
120  *****************************************************************************/
121 typedef struct pgrm_descriptor_s
122 {
123     /* Program characteristics */
124     u16                     i_number;                      /* program number */
125     u8                      i_version;                     /* version number */
126     boolean_t               b_is_ok;      /* Is the description up to date ? */
127
128     /* Service Descriptor (program name) - DVB extension */
129     u8                      i_srv_type;
130     char *                  psz_srv_name;
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_syscr;
138     count_t                 c_average_count;
139                            /* counter used to compute dynamic average values */
140     int                     i_synchro_state;
141
142     /* Demultiplexer data */
143     void *                  p_demux_data;
144
145     int                     i_es_number;      /* size of the following array */
146     es_descriptor_t **      pp_es;                /* array of pointers to ES */
147 } pgrm_descriptor_t;
148
149 /* Synchro states */
150 #define SYNCHRO_OK          0
151 #define SYNCHRO_START       1
152 #define SYNCHRO_REINIT      2
153
154 /*****************************************************************************
155  * input_area_t
156  *****************************************************************************
157  * Attributes for current area (title for DVD)
158  *****************************************************************************/
159 typedef struct input_area_s
160 {
161     /* selected area attributes */
162     int                     i_id;        /* identificator for area */
163     off_t                   i_start;     /* start offset of area */
164     off_t                   i_size;      /* total size of the area
165                                           * (in arbitrary units) */
166
167     /* navigation parameters */
168     off_t                   i_tell;      /* actual location in the area
169                                           * (in arbitrary units) */
170     off_t                   i_seek;      /* next requested location
171                                           * (changed by the interface thread */
172
173     /* area subdivision */
174     int                     i_part_nb;   /* number of parts (chapter for DVD)*/
175     int                     i_part;      /* currently selected part */
176
177
178     /* offset to plugin related data */
179     off_t                   i_plugin_data;
180 } input_area_t;
181
182 /*****************************************************************************
183  * stream_descriptor_t
184  *****************************************************************************
185  * Describes a stream and list its associated programs. Build upon
186  * the information carried in program association sections (for instance)
187  *****************************************************************************/
188 typedef struct stream_descriptor_s
189 {
190     u16                     i_stream_id;                        /* stream id */
191     boolean_t               b_changed;    /* if stream has been changed,
192                                              we have to inform the interface */
193     vlc_mutex_t             stream_lock;  /* to be taken every time you read
194                                            * or modify stream, pgrm or es    */
195
196     /* Input method data */
197     int                     i_method;       /* input method for stream: file,
198                                                disc or network */
199     boolean_t               b_pace_control;    /* can we read when we want ? */
200     boolean_t               b_seekable;               /* can we do lseek() ? */
201
202     /* if (b_seekable) : */
203     int                     i_area_nb;
204     input_area_t **         pp_areas;    /* list of areas in stream == offset
205                                           * interval with own properties */
206     input_area_t *          p_selected_area;
207     input_area_t *          p_new_area;  /* Newly selected area from
208                                           * the interface */
209
210     u32                     i_mux_rate; /* the rate we read the stream (in
211                                          * units of 50 bytes/s) ; 0 if undef */
212
213     /* New status and rate requested by the interface */
214     int                     i_new_status, i_new_rate;
215     int                     b_new_mute;          /* int because it can be -1 */
216     vlc_cond_t              stream_wait; /* interface -> input in case of a
217                                           * status change request            */
218
219     /* Demultiplexer data */
220     void *                  p_demux_data;
221
222     /* Programs descriptions */
223     int                     i_pgrm_number;    /* size of the following array */
224     pgrm_descriptor_t **    pp_programs;        /* array of pointers to pgrm */
225     pgrm_descriptor_t *     p_selected_program;   /* currently 
226                                                  selected program */
227     pgrm_descriptor_t *     p_new_program;        /* Newly selected program */
228     /* ES descriptions */
229     int                     i_es_number;
230     es_descriptor_t **      pp_es;             /* carried elementary streams */
231     int                     i_selected_es_number;
232     es_descriptor_t **      pp_selected_es;             /* ES with a decoder */
233     es_descriptor_t *       p_newly_selected_es;   /* ES selected from
234                                                     * the interface */
235     es_descriptor_t *       p_removed_es;   /* ES removed from the interface */
236
237
238     /* Stream control */
239     stream_ctrl_t           control;
240
241     /* Statistics */
242     count_t                 c_packets_read;                  /* packets read */
243     count_t                 c_packets_trashed;            /* trashed packets */
244 } stream_descriptor_t;
245
246 #define MUTE_NO_CHANGE      -1
247
248 /*****************************************************************************
249  * input_thread_t
250  *****************************************************************************
251  * This structure includes all the local static variables of an input thread
252  *****************************************************************************/
253 typedef struct input_thread_s
254 {
255     /* Thread properties and locks */
256     boolean_t               b_die;                             /* 'die' flag */
257     boolean_t               b_error;
258     boolean_t               b_eof;
259     vlc_thread_t            thread_id;            /* id for thread functions */
260     int                     i_status;                         /* status flag */
261
262     /* Access module */
263     struct module_s *       p_access_module;
264     int                  (* pf_open)( struct input_thread_s * );
265     void                 (* pf_close)( struct input_thread_s * );
266     ssize_t              (* pf_read) ( struct input_thread_s *,
267                                        byte_t *, size_t );
268     int                  (* pf_set_program)( struct input_thread_s *,
269                                              struct pgrm_descriptor_s * );
270     int                  (* pf_set_area)( struct input_thread_s *,
271                                           struct input_area_s * );
272     void                 (* pf_seek)( struct input_thread_s *, off_t );
273     void *                  p_access_data;
274     size_t                  i_mtu;
275
276     /* Demux module */
277     struct module_s *       p_demux_module;
278     int                  (* pf_init)( struct input_thread_s * );
279     void                 (* pf_end)( struct input_thread_s * );
280     int                  (* pf_demux)( struct input_thread_s * );
281     int                  (* pf_rewind)( struct input_thread_s * );
282                                            /* NULL if we don't support going *
283                                             * backwards (it's gonna be fun)  */
284     void *                  p_demux_data;               /* data of the demux */
285
286     /* Buffer manager */
287     struct input_buffers_s *p_method_data;     /* data of the packet manager */
288     struct data_buffer_s *  p_data_buffer;
289     byte_t *                p_current_data;
290     byte_t *                p_last_data;
291     size_t                  i_bufsize;
292
293     /* General stream description */
294     stream_descriptor_t     stream;
295
296     /* Playlist item */
297     char *                  psz_source;
298     char *                  psz_access;
299     char *                  psz_demux;
300     char *                  psz_name;
301
302     count_t                 c_loops;
303 } input_thread_t;
304
305 /* Input methods */
306 /* The first figure is a general method that can be used in interface plugins ;
307  * The second figure is a detailed sub-method */
308 #define INPUT_METHOD_NONE         0x0            /* input thread is inactive */
309 #define INPUT_METHOD_FILE        0x10   /* stream is read from file p_source */
310 #define INPUT_METHOD_DISC        0x20   /* stream is read directly from disc */
311 #define INPUT_METHOD_DVD         0x21             /* stream is read from DVD */
312 #define INPUT_METHOD_VCD         0x22             /* stream is read from VCD */
313 #define INPUT_METHOD_NETWORK     0x30         /* stream is read from network */
314 #define INPUT_METHOD_UCAST       0x31                         /* UDP unicast */
315 #define INPUT_METHOD_MCAST       0x32                       /* UDP multicast */
316 #define INPUT_METHOD_BCAST       0x33                       /* UDP broadcast */
317 #define INPUT_METHOD_VLAN_BCAST  0x34            /* UDP broadcast with VLANs */
318
319
320 /* Status changing methods */
321 #define INPUT_STATUS_END            0
322 #define INPUT_STATUS_PLAY           1
323 #define INPUT_STATUS_PAUSE          2
324 #define INPUT_STATUS_FASTER         3
325 #define INPUT_STATUS_SLOWER         4
326
327 /*****************************************************************************
328  * Prototypes
329  *****************************************************************************/
330 #ifndef PLUGIN
331 void   input_InitBank       ( void );
332 void   input_EndBank        ( void );
333
334 struct input_thread_s * input_CreateThread ( struct playlist_item_s *,
335                                              int *pi_status );
336 void   input_StopThread     ( struct input_thread_s *, int *pi_status );
337 void   input_DestroyThread  ( struct input_thread_s * );
338
339 void   input_SetStatus      ( struct input_thread_s *, int );
340 void   input_Seek           ( struct input_thread_s *, off_t );
341 void   input_DumpStream     ( struct input_thread_s * );
342 char * input_OffsetToTime   ( struct input_thread_s *, char *, off_t );
343 int    input_ChangeES       ( struct input_thread_s *,
344                               struct es_descriptor_s *, u8 );
345 int    input_ToggleES       ( struct input_thread_s *,
346                               struct es_descriptor_s *, boolean_t );
347 int    input_ChangeArea     ( struct input_thread_s *, struct input_area_s * );
348 int    input_ChangeProgram  ( struct input_thread_s *, u16 );
349 int    input_ToggleGrayscale( struct input_thread_s * );
350 int    input_ToggleMute     ( struct input_thread_s * );
351 int    input_SetSMP         ( struct input_thread_s *, int );
352 #else
353 #   define input_SetStatus      p_symbols->input_SetStatus
354 #   define input_Seek           p_symbols->input_Seek
355 #   define input_DumpStream     p_symbols->input_DumpStream
356 #   define input_OffsetToTime   p_symbols->input_OffsetToTime
357 #   define input_ChangeES       p_symbols->input_ChangeES
358 #   define input_ToggleES       p_symbols->input_ToggleES
359 #   define input_ChangeArea     p_symbols->input_ChangeArea
360 #   define input_ChangeProgram  p_symbols->input_ChangeProgram
361 #endif
362