]> git.sesse.net Git - vlc/blob - src/video_parser/video_parser.c
Nettoyage global. Le vlc se ferme proprement, elem_t devient dctelem_t, le
[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     /* Initialize parsing data */
179     p_vpar->sequence.p_forward = NULL;
180     p_vpar->sequence.p_backward = NULL;
181     p_vpar->sequence.intra_quant.b_allocated = 0;
182     p_vpar->sequence.nonintra_quant.b_allocated = 0;
183     p_vpar->sequence.chroma_intra_quant.b_allocated = 0;
184     p_vpar->sequence.chroma_nonintra_quant.b_allocated = 0;
185     /* Initialize copyright information */
186     p_vpar->sequence.b_copyright_flag = 0;
187     p_vpar->sequence.b_original = 0;
188     p_vpar->sequence.i_copyright_id = 0;
189     p_vpar->sequence.i_copyright_nb = 0;
190
191     p_vpar->picture.p_picture = NULL;
192     p_vpar->picture.i_current_structure = 0;
193
194     /* Initialize other properties */
195 #ifdef STATS
196     p_vpar->c_loops = 0;    
197     p_vpar->c_idle_loops = 0;
198     p_vpar->c_pictures = 0;
199     p_vpar->c_i_pictures = 0;
200     p_vpar->c_p_pictures = 0;
201     p_vpar->c_b_pictures = 0;
202     p_vpar->c_decoded_pictures = 0;
203     p_vpar->c_decoded_i_pictures = 0;
204     p_vpar->c_decoded_p_pictures = 0;
205     p_vpar->c_decoded_b_pictures = 0;
206 #endif
207
208     /* Initialize video FIFO */
209     vpar_InitFIFO( p_vpar );
210   
211     bzero( p_vpar->p_vdec, NB_VDEC*sizeof(vdec_thread_t *) );
212     
213     /* Spawn video_decoder threads */
214     /* ??? modify the number of vdecs at runtime ? */
215     for( i_dummy = 0; i_dummy < NB_VDEC; i_dummy++ )
216     {
217         if( (p_vpar->p_vdec[i_dummy] = vdec_CreateThread( p_vpar )) == NULL )
218         {
219             return( 1 );
220         }
221     }
222
223     /* Initialize lookup tables */
224 #if defined(MPEG2_COMPLIANT) && !defined(VDEC_DFT)
225     vpar_InitCrop( p_vpar );
226 #endif
227     vpar_InitMbAddrInc( p_vpar );
228     vpar_InitDCTTables( p_vpar );
229     vpar_InitPMBType( p_vpar );
230     vpar_InitBMBType( p_vpar );
231     vpar_InitCodedPattern( p_vpar );
232     vpar_InitDCTTables( p_vpar );
233
234     /* Mark thread as running and return */
235     intf_DbgMsg("vpar debug: InitThread(%p) succeeded\n", p_vpar);
236     return( 0 );
237 }
238
239 /*******************************************************************************
240  * RunThread: generic parser thread
241  *******************************************************************************
242  * Video parser thread. This function does only returns when the thread is
243  * terminated. 
244  *******************************************************************************/
245 static void RunThread( vpar_thread_t *p_vpar )
246 {
247     intf_DbgMsg("vpar debug: running video parser thread (%p) (pid == %i)\n", p_vpar, getpid());
248
249     /* 
250      * Initialize thread 
251      */
252     p_vpar->b_error = InitThread( p_vpar );
253     if( p_vpar->b_error )
254     {
255         return;
256     }
257     p_vpar->b_run = 1;
258
259     /*
260      * Main loop - it is not executed if an error occured during
261      * initialization
262      */
263     while( (!p_vpar->b_die) && (!p_vpar->b_error) )
264     {
265         /* Find the next sequence header in the stream */
266         p_vpar->b_error = vpar_NextSequenceHeader( p_vpar );
267
268 #ifdef STATS
269         p_vpar->c_sequences++;
270 #endif
271
272         while( (!p_vpar->b_die) && (!p_vpar->b_error) )
273         {
274             /* Parse the next sequence, group or picture header */
275             if( vpar_ParseHeader( p_vpar ) )
276             {
277                 /* End of sequence */
278                 break;
279             };
280         }
281     } 
282
283     /*
284      * Error loop
285      */
286     if( p_vpar->b_error )
287     {
288         ErrorThread( p_vpar );
289     }
290
291     /* End of thread */
292     EndThread( p_vpar );
293     p_vpar->b_run = 0;
294 }
295
296 /*******************************************************************************
297  * ErrorThread: RunThread() error loop
298  *******************************************************************************
299  * This function is called when an error occured during thread main's loop. The
300  * thread can still receive feed, but must be ready to terminate as soon as
301  * possible.
302  *******************************************************************************/
303 static void ErrorThread( vpar_thread_t *p_vpar )
304 {
305     /* Wait until a `die' order */
306     while( !p_vpar->b_die )
307     {
308         /* We take the lock, because we are going to read/write the start/end
309          * indexes of the parser fifo */
310         vlc_mutex_lock( &p_vpar->fifo.data_lock );
311
312         /* ?? trash all trashable PES packets */
313         while( !DECODER_FIFO_ISEMPTY(p_vpar->fifo) )
314         {
315             input_NetlistFreePES( p_vpar->bit_stream.p_input,
316                                   DECODER_FIFO_START(p_vpar->fifo) );
317             DECODER_FIFO_INCSTART( p_vpar->fifo );
318         }
319
320         vlc_mutex_unlock( &p_vpar->fifo.data_lock );
321         /* Sleep a while */
322         msleep( VPAR_IDLE_SLEEP );
323     }
324 }
325
326 /*******************************************************************************
327  * EndThread: thread destruction
328  *******************************************************************************
329  * This function is called when the thread ends after a sucessfull 
330  * initialization.
331  *******************************************************************************/
332 static void EndThread( vpar_thread_t *p_vpar )
333 {
334     int i_dummy;
335
336     intf_DbgMsg("vpar debug: destroying video parser thread %p\n", p_vpar);
337
338 #ifdef DEBUG
339     /* Check for remaining PES packets */
340     /* ?? */
341 #endif
342
343     /* Destroy thread structures allocated by InitThread */
344 //    vout_DestroyStream( p_vpar->p_vout, p_vpar->i_stream );
345     /* ?? */
346
347     /* Destroy vdec threads */
348     for( i_dummy = 0; i_dummy < NB_VDEC; i_dummy++ )
349     {
350         if( p_vpar->p_vdec[i_dummy] != NULL )
351             vdec_DestroyThread( p_vpar->p_vdec[i_dummy] );
352         else
353             break;
354     }
355
356     intf_DbgMsg("vpar debug: EndThread(%p)\n", p_vpar);
357 }