]> git.sesse.net Git - vlc/blob - src/video_parser/video_parser.c
* Modifications de quelques erreurs sur le parseur
[vlc] / src / video_parser / video_parser.c
1 /*******************************************************************************
2  * video_parser.c : video parser thread
3  * (c)1999 VideoLAN
4  *******************************************************************************/
5
6 /* ?? passer en terminate/destroy avec les signaux supplĂ©mentaires */
7
8 /*******************************************************************************
9  * Preamble
10  *******************************************************************************/
11 #include <errno.h>
12 #include <stdlib.h>
13 #include <stdio.h>
14 #include <unistd.h>
15 #include <string.h>
16 #include <sys/uio.h>
17 #include <X11/Xlib.h>
18 #include <X11/extensions/XShm.h>
19
20 #include "config.h"
21 #include "common.h"
22 #include "mtime.h"
23 #include "vlc_thread.h"
24
25 #include "intf_msg.h"
26 #include "debug.h"                     /* ?? temporaire, requis par netlist.h */
27
28 #include "input.h"
29 #include "input_netlist.h"
30 #include "decoder_fifo.h"
31 #include "video.h"
32 #include "video_output.h"
33 #include "video_decoder.h"
34 #include "video_parser.h"
35 #include "parser_fifo.h"
36
37 /*
38  * Local prototypes
39  */
40 //static int      CheckConfiguration  ( video_cfg_t *p_cfg );
41 static int      InitThread          ( vpar_thread_t *p_vpar );
42 static void     RunThread           ( vpar_thread_t *p_vpar );
43 static void     ErrorThread         ( vpar_thread_t *p_vpar );
44 static void     EndThread           ( vpar_thread_t *p_vpar );
45
46 /*******************************************************************************
47  * vpar_CreateThread: create a generic parser thread
48  *******************************************************************************
49  * This function creates a new video parser thread, and returns a pointer
50  * to its description. On error, it returns NULL.
51  * Following configuration properties are used:
52  * ??
53  *******************************************************************************/
54 vpar_thread_t * vpar_CreateThread( /* video_cfg_t *p_cfg, */ input_thread_t *p_input /*,
55                                    vout_thread_t *p_vout, int *pi_status */ )
56 {
57     vpar_thread_t *     p_vpar;
58
59     intf_DbgMsg("vpar debug: creating video parser thread\n");
60
61     /* Allocate the memory needed to store the thread's structure */
62     if ( (p_vpar = (vpar_thread_t *)malloc( sizeof(vpar_thread_t) )) == NULL )
63     {
64         intf_ErrMsg("vpar error: not enough memory for vpar_CreateThread() to create the new thread\n");
65         return( NULL );
66     }
67
68     /*
69      * Initialize the thread properties
70      */
71     p_vpar->b_die = 0;
72     p_vpar->b_error = 0;
73
74     /*
75      * Initialize the input properties
76      */
77     /* Initialize the parser fifo's data lock and conditional variable and set     * its buffer as empty */
78     vlc_mutex_init( &p_vpar->fifo.data_lock );
79     vlc_cond_init( &p_vpar->fifo.data_wait );
80     p_vpar->fifo.i_start = 0;
81     p_vpar->fifo.i_end = 0;
82     /* Initialize the bit stream structure */
83     p_vpar->bit_stream.p_input = p_input;
84     p_vpar->bit_stream.p_parser_fifo = &p_vpar->fifo;
85     p_vpar->bit_stream.fifo.buffer = 0;
86     p_vpar->bit_stream.fifo.i_available = 0;
87
88     /* Spawn the video parser thread */
89     if ( vlc_thread_create(&p_vpar->thread_id, "video parser", (vlc_thread_func)RunThread, (void *)p_vpar) )
90     {
91         intf_ErrMsg("vpar error: can't spawn video parser thread\n");
92         free( p_vpar );
93         return( NULL );
94     }
95
96     intf_DbgMsg("vpar debug: video parser thread (%p) created\n", p_vpar);
97     return( p_vpar );
98 }
99
100 /*******************************************************************************
101  * vpar_DestroyThread: destroy a generic parser thread
102  *******************************************************************************
103  * Destroy a terminated thread. This function will return 0 if the thread could
104  * be destroyed, and non 0 else. The last case probably means that the thread
105  * was still active, and another try may succeed.
106  *******************************************************************************/
107 void vpar_DestroyThread( vpar_thread_t *p_vpar /*, int *pi_status */ )
108 {
109     intf_DbgMsg("vpar debug: requesting termination of video parser thread %p\n", p_vpar);
110
111     /* Ask thread to kill itself */
112     p_vpar->b_die = 1;
113     /* Make sure the parser thread leaves the GetByte() function */
114     vlc_mutex_lock( &(p_vpar->fifo.data_lock) );
115     vlc_cond_signal( &(p_vpar->fifo.data_wait) );
116     vlc_mutex_unlock( &(p_vpar->fifo.data_lock) );
117
118     /* Waiting for the parser thread to exit */
119     /* Remove this as soon as the "status" flag is implemented */
120     vlc_thread_join( p_vpar->thread_id );
121 }
122
123 /* following functions are local */
124
125 /*******************************************************************************
126  * CheckConfiguration: check vpar_CreateThread() configuration
127  *******************************************************************************
128  * Set default parameters where required. In DEBUG mode, check if configuration
129  * is valid.
130  *******************************************************************************/
131 #if 0
132 static int CheckConfiguration( video_cfg_t *p_cfg )
133 {
134     /* ?? */
135
136     return( 0 );
137 }
138 #endif
139
140 /*******************************************************************************
141  * InitThread: initialize vpar output thread
142  *******************************************************************************
143  * This function is called from RunThread and performs the second step of the
144  * initialization. It returns 0 on success. Note that the thread's flag are not
145  * modified inside this function.
146  *******************************************************************************/
147 static int InitThread( vpar_thread_t *p_vpar )
148 {
149     int     i_dummy;
150
151     intf_DbgMsg("vpar debug: initializing video parser thread %p\n", p_vpar);
152
153     /* Our first job is to initialize the bit stream structure with the
154      * beginning of the input stream */
155     vlc_mutex_lock( &p_vpar->fifo.data_lock );
156     while ( DECODER_FIFO_ISEMPTY(p_vpar->fifo) )
157     {
158         vlc_cond_wait( &p_vpar->fifo.data_wait, &p_vpar->fifo.data_lock );
159     }
160     p_vpar->bit_stream.p_ts = DECODER_FIFO_START( p_vpar->fifo )->p_first_ts;
161     p_vpar->bit_stream.i_byte = p_vpar->bit_stream.p_ts->i_payload_start;
162     vlc_mutex_unlock( &p_vpar->fifo.data_lock );
163
164 #if 0
165     /* ?? */
166     /* Create video stream */
167     p_vpar->i_stream =  vout_CreateStream( p_vpar->p_vout );
168     if( p_vpar->i_stream < 0 )                                        /* error */
169     {
170         return( 1 );
171     }
172 #endif
173
174     /* Initialize parsing data */
175     p_vpar->sequence.p_forward = p_vpar->sequence.p_backward = NULL;
176     p_vpar->sequence.p_frame_lum_lookup
177         = p_vpar->sequence.p_field_lum_lookup
178         = p_vpar->sequence.p_frame_chroma_lookup
179         = p_vpar->sequence.p_field_chroma_lookup
180         = NULL;
181     p_vpar->sequence.intra_quant.b_allocated = FALSE;
182     p_vpar->sequence.nonintra_quant.b_allocated = FALSE;
183     p_vpar->sequence.chroma_intra_quant.b_allocated = FALSE;
184     p_vpar->sequence.chroma_nonintra_quant.b_allocated = FALSE;
185     p_vpar->sequence.i_frame_number = 0;
186     /* Initialize copyright information */
187     p_vpar->sequence.b_copyright_flag = 0;
188     p_vpar->sequence.b_original = 0;
189     p_vpar->sequence.i_copyright_id = 0;
190     p_vpar->sequence.i_copyright_nb = 0;
191
192     /* Initialize other properties */
193 #ifdef STATS
194     p_vpar->c_loops = 0;    
195     p_vpar->c_idle_loops = 0;
196     p_vpar->c_pictures = 0;
197     p_vpar->c_i_pictures = 0;
198     p_vpar->c_p_pictures = 0;
199     p_vpar->c_b_pictures = 0;
200     p_vpar->c_decoded_pictures = 0;
201     p_vpar->c_decoded_i_pictures = 0;
202     p_vpar->c_decoded_p_pictures = 0;
203     p_vpar->c_decoded_b_pictures = 0;
204 #endif
205
206     /* Initialize video FIFO */
207     vpar_InitFIFO( p_vpar );
208     
209     bzero( p_vpar->p_vdec, MAX_VDEC*sizeof(vdec_thread_t *) );
210     
211     /* Spawn video_decoder threads */
212     /* ??? modify the number of vdecs at runtime ? */
213     for( i_dummy = 0; i_dummy < NB_VDEC; i_dummy++ )
214     {
215         if( (p_vpar->p_vdec[i_dummy] = vdec_CreateThread( p_vpar )) == NULL )
216         {
217             return( 1 );
218         }
219     }
220
221     /* Mark thread as running and return */
222     intf_DbgMsg("vpar debug: InitThread(%p) succeeded\n", p_vpar);
223     return( 0 );
224 }
225
226 /*******************************************************************************
227  * RunThread: generic parser thread
228  *******************************************************************************
229  * Video parser thread. This function does only returns when the thread is
230  * terminated. 
231  *******************************************************************************/
232 static void RunThread( vpar_thread_t *p_vpar )
233 {
234     int i_dummy;
235
236     intf_DbgMsg("vpar debug: running video parser thread (%p) (pid == %i)\n", p_vpar, getpid());
237
238     /* 
239      * Initialize thread 
240      */
241     p_vpar->b_error = InitThread( p_vpar );
242     if( p_vpar->b_error )
243     {
244         return;
245     }
246     p_vpar->b_run = 1;
247
248     /*
249      * Main loop - it is not executed if an error occured during
250      * initialization
251      */
252     while( (!p_vpar->b_die) && (!p_vpar->b_error) )
253     {
254         /* Find the next sequence header in the stream */
255         p_vpar->b_error = vpar_NextSequenceHeader( p_vpar );
256
257 #ifdef STATS
258         p_vpar->c_sequences++;
259 #endif
260
261         while( (!p_vpar->b_die) && (!p_vpar->b_error) )
262         {
263             /* Parse the next sequence, group or picture header */
264             if( vpar_ParseHeader( p_vpar ) )
265             {
266                 /* End of sequence */
267                 break;
268             };
269         }
270     } 
271
272     /*
273      * Error loop
274      */
275     if( p_vpar->b_error )
276     {
277         ErrorThread( p_vpar );
278     }
279
280     /* End of thread */
281     EndThread( p_vpar );
282     p_vpar->b_run = 0;
283 }
284
285 /*******************************************************************************
286  * ErrorThread: RunThread() error loop
287  *******************************************************************************
288  * This function is called when an error occured during thread main's loop. The
289  * thread can still receive feed, but must be ready to terminate as soon as
290  * possible.
291  *******************************************************************************/
292 static void ErrorThread( vpar_thread_t *p_vpar )
293 {
294     /* Wait until a `die' order */
295     while( !p_vpar->b_die )
296     {
297         /* We take the lock, because we are going to read/write the start/end
298          * indexes of the parser fifo */
299         vlc_mutex_lock( &p_vpar->fifo.data_lock );
300
301         /* ?? trash all trashable PES packets */
302         while( !DECODER_FIFO_ISEMPTY(p_vpar->fifo) )
303         {
304             input_NetlistFreePES( p_vpar->bit_stream.p_input,
305                                   DECODER_FIFO_START(p_vpar->fifo) );
306             DECODER_FIFO_INCSTART( p_vpar->fifo );
307         }
308
309         vlc_mutex_unlock( &p_vpar->fifo.data_lock );
310         /* Sleep a while */
311         msleep( VPAR_IDLE_SLEEP );
312     }
313 }
314
315 /*******************************************************************************
316  * EndThread: thread destruction
317  *******************************************************************************
318  * This function is called when the thread ends after a sucessfull 
319  * initialization.
320  *******************************************************************************/
321 static void EndThread( vpar_thread_t *p_vpar )
322 {
323     int i_dummy;
324
325     intf_DbgMsg("vpar debug: destroying video parser thread %p\n", p_vpar);
326
327 #ifdef DEBUG
328     /* Check for remaining PES packets */
329     /* ?? */
330 #endif
331
332     /* Destroy thread structures allocated by InitThread */
333 //    vout_DestroyStream( p_vpar->p_vout, p_vpar->i_stream );
334     /* ?? */
335
336     /* Destroy vdec threads */
337     for( i_dummy = 0; i_dummy < NB_VDEC; i_dummy++ )
338     {
339         if( p_vpar->p_vdec[i_dummy] != NULL )
340             vdec_DestroyThread( p_vpar->p_vdec[i_dummy] );
341         else
342             break;
343     }
344
345     intf_DbgMsg("vpar debug: EndThread(%p)\n", p_vpar);
346 }