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