]> git.sesse.net Git - vlc/blob - src/video_parser/video_parser.c
Un bon morceau du 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
150     intf_DbgMsg("vpar debug: initializing video parser thread %p\n", p_vpar);
151
152     /* Our first job is to initialize the bit stream structure with the
153      * beginning of the input stream */
154     vlc_mutex_lock( &p_vpar->fifo.data_lock );
155     while ( DECODER_FIFO_ISEMPTY(p_vpar->fifo) )
156     {
157         vlc_cond_wait( &p_vpar->fifo.data_wait, &p_vpar->fifo.data_lock );
158     }
159     p_vpar->bit_stream.p_ts = DECODER_FIFO_START( p_vpar->fifo )->p_first_ts;
160     p_vpar->bit_stream.i_byte = p_vpar->bit_stream.p_ts->i_payload_start;
161     vlc_mutex_unlock( &p_vpar->fifo.data_lock );
162
163 #if 0
164     /* ?? */
165     /* Create video stream */
166     p_vpar->i_stream =  vout_CreateStream( p_vpar->p_vout );
167     if( p_vpar->i_stream < 0 )                                        /* error */
168     {
169         return( 1 );
170     }
171 #endif
172
173     /* Initialize parsing data */
174     p_vpar->sequence.p_forward = p_vpar->sequence.p_backward = NULL;
175     p_vpar->sequence.p_frame_lum_lookup
176         = p_vpar->sequence.p_field_lum_lookup
177         = p_vpar->sequence.p_frame_chroma_lookup
178         = p_vpar->sequence.p_field_chroma_lookup
179         = NULL;
180     p_vpar->sequence.intra_quant.b_allocated = FALSE;
181     p_vpar->sequence.nonintra_quant.b_allocated = FALSE;
182     p_vpar->sequence.chroma_intra_quant.b_allocated = FALSE;
183     p_vpar->sequence.chroma_nonintra_quant.b_allocated = FALSE;
184
185     /* Initialize other properties */
186 #ifdef STATS
187     p_vpar->c_loops = 0;    
188     p_vpar->c_idle_loops = 0;
189     p_vpar->c_pictures = 0;
190     p_vpar->c_i_pictures = 0;
191     p_vpar->c_p_pictures = 0;
192     p_vpar->c_b_pictures = 0;
193     p_vpar->c_decoded_pictures = 0;
194     p_vpar->c_decoded_i_pictures = 0;
195     p_vpar->c_decoded_p_pictures = 0;
196     p_vpar->c_decoded_b_pictures = 0;
197 #endif
198
199     /* Initialize video FIFO */
200     vpar_InitFIFO( p_vpar );
201     
202     bzero( p_vpar->p_vdec, MAX_VDEC*sizeof(vdec_thread_t *) );
203     
204     /* Spawn a video_decoder thread */
205     /* ??? add the possibility to launch multiple vdec threads */
206     if( (p_vpar->p_vdec[0] = vdec_CreateThread( p_vpar )) == NULL )
207     {
208         return( 1 );
209     }
210
211     /* Mark thread as running and return */
212     intf_DbgMsg("vpar debug: InitThread(%p) succeeded\n", p_vpar);
213     return( 0 );    
214 }
215
216 /*******************************************************************************
217  * RunThread: generic parser thread
218  *******************************************************************************
219  * Video parser thread. This function does only returns when the thread is
220  * terminated. 
221  *******************************************************************************/
222 static void RunThread( vpar_thread_t *p_vpar )
223 {
224     int i_dummy;
225
226     intf_DbgMsg("vpar debug: running video parser thread (%p) (pid == %i)\n", p_vpar, getpid());
227
228     /* 
229      * Initialize thread 
230      */
231     p_vpar->b_error = InitThread( p_vpar );
232     if( p_vpar->b_error )
233     {
234         return;
235     }
236     p_vpar->b_run = 1;
237
238     /*
239      * Main loop - it is not executed if an error occured during
240      * initialization
241      */
242     while( (!p_vpar->b_die) && (!p_vpar->b_error) )
243     {
244         /* Find the next sequence header in the stream */
245         p_vpar->b_error = vpar_NextSequenceHeader( p_vpar );
246
247 #ifdef STATS
248         p_vpar->c_sequences++;
249 #endif
250
251         while( (!p_vpar->b_die) && (!p_vpar->b_error) )
252         {
253             /* Parse the next sequence, group or picture header */
254             if( vpar_ParseHeader( p_vpar ) )
255             {
256                 /* End of sequence */
257                 break;
258             };
259         }
260     } 
261
262     /*
263      * Error loop
264      */
265     if( p_vpar->b_error )
266     {
267         ErrorThread( p_vpar );
268     }
269
270     /* End of thread */
271     EndThread( p_vpar );
272     p_vpar->b_run = 0;
273 }
274
275 /*******************************************************************************
276  * ErrorThread: RunThread() error loop
277  *******************************************************************************
278  * This function is called when an error occured during thread main's loop. The
279  * thread can still receive feed, but must be ready to terminate as soon as
280  * possible.
281  *******************************************************************************/
282 static void ErrorThread( vpar_thread_t *p_vpar )
283 {
284     /* Wait until a `die' order */
285     while( !p_vpar->b_die )
286     {
287         /* We take the lock, because we are going to read/write the start/end
288          * indexes of the parser fifo */
289         vlc_mutex_lock( &p_vpar->fifo.data_lock );
290
291         /* ?? trash all trashable PES packets */
292         while( !PARSER_FIFO_ISEMPTY(p_vpar->fifo) )
293         {
294             input_NetlistFreePES( p_vpar->bit_stream.p_input, PARSER_FIFO_START(p_vpar->fifo) );
295             PARSER_FIFO_INCSTART( p_vpar->fifo );
296         }
297
298         vlc_mutex_unlock( &p_vpar->fifo.data_lock );
299         /* Sleep a while */
300         msleep( VPAR_IDLE_SLEEP );                
301     }
302 }
303
304 /*******************************************************************************
305  * EndThread: thread destruction
306  *******************************************************************************
307  * This function is called when the thread ends after a sucessfull 
308  * initialization.
309  *******************************************************************************/
310 static void EndThread( vpar_thread_t *p_vpar )
311 {
312     int i_dummy;
313
314     intf_DbgMsg("vpar debug: destroying video parser thread %p\n", p_vpar);
315
316 #ifdef DEBUG
317     /* Check for remaining PES packets */
318     /* ?? */
319 #endif
320
321     /* Destroy thread structures allocated by InitThread */
322 //    vout_DestroyStream( p_vpar->p_vout, p_vpar->i_stream );
323     /* ?? */
324
325     /* Destroy vdec threads */
326     for( i_dummy = 0; i_dummy < MAX_VDEC; i_dummy++ )
327     {
328         if( p_vpar->p_vdec[i_dummy] != NULL )
329             vdec_DestroyThread( p_vpar->p_vdec[i_dummy] );
330         else
331             break;
332     }
333
334     intf_DbgMsg("vpar debug: EndThread(%p)\n", p_vpar);
335 }