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