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