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