]> git.sesse.net Git - vlc/blob - src/video_parser/video_parser.c
292c32d80ee315d7e9a293be8a7ea99e6de97dc3
[vlc] / src / video_parser / video_parser.c
1 /*****************************************************************************
2  * video_parser.c : video parser thread
3  * (c)1999 VideoLAN
4  *****************************************************************************/
5
6 /* FIXME: 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
18 #include "config.h"
19 #include "common.h"
20 #include "mtime.h"
21 #include "vlc_thread.h"
22
23 #include "intf_msg.h"
24 #include "debug.h"                 /* XXX?? temporaire, requis par netlist.h */
25
26 #include "input.h"
27 #include "input_netlist.h"
28 #include "decoder_fifo.h"
29 #include "video.h"
30 #include "video_output.h"
31
32 #include "vdec_idct.h"
33 #include "video_decoder.h"
34 #include "vdec_motion.h"
35
36 #include "vpar_blocks.h"
37 #include "vpar_headers.h"
38 #include "vpar_synchro.h"
39 #include "video_parser.h"
40 #include "video_fifo.h"
41
42 /*
43  * Local prototypes
44  */
45 //static int      CheckConfiguration  ( video_cfg_t *p_cfg );
46 static int      InitThread          ( vpar_thread_t *p_vpar );
47 static void     RunThread           ( vpar_thread_t *p_vpar );
48 static void     ErrorThread         ( vpar_thread_t *p_vpar );
49 static void     EndThread           ( vpar_thread_t *p_vpar );
50
51 /*****************************************************************************
52  * vpar_CreateThread: create a generic parser thread
53  *****************************************************************************
54  * This function creates a new video parser thread, and returns a pointer
55  * to its description. On error, it returns NULL.
56  * Following configuration properties are used:
57  * XXX??
58  *****************************************************************************/
59 #include "main.h"
60 #include "interface.h"
61 extern main_t* p_main;
62 vpar_thread_t * vpar_CreateThread( /* video_cfg_t *p_cfg, */ input_thread_t *p_input /*,
63                                    vout_thread_t *p_vout, int *pi_status */ )
64 {
65     vpar_thread_t *     p_vpar;
66
67     intf_DbgMsg("vpar debug: creating video parser thread\n");
68
69     /* Allocate the memory needed to store the thread's structure */
70     if ( (p_vpar = (vpar_thread_t *)malloc( sizeof(vpar_thread_t) )) == NULL )
71     {
72         intf_ErrMsg("vpar error: not enough memory for vpar_CreateThread() to create the new thread\n");
73         return( NULL );
74     }
75
76     /*
77      * Initialize the thread properties
78      */
79     p_vpar->b_die = 0;
80     p_vpar->b_error = 0;
81
82     /*
83      * Initialize the input properties
84      */
85     /* Initialize the decoder fifo's data lock and conditional variable and set
86      * its buffer as empty */
87     vlc_mutex_init( &p_vpar->fifo.data_lock );
88     vlc_cond_init( &p_vpar->fifo.data_wait );
89     p_vpar->fifo.i_start = 0;
90     p_vpar->fifo.i_end = 0;
91     /* Initialize the bit stream structure */
92     p_vpar->bit_stream.p_input = p_input;
93     p_vpar->bit_stream.p_decoder_fifo = &p_vpar->fifo;
94     p_vpar->bit_stream.fifo.buffer = 0;
95     p_vpar->bit_stream.fifo.i_available = 0;
96
97 /* FIXME !!!!?? */
98 p_vpar->p_vout = p_main->p_intf->p_vout;
99
100     /* Spawn the video parser thread */
101     if ( vlc_thread_create(&p_vpar->thread_id, "video parser", (vlc_thread_func_t)RunThread, (void *)p_vpar) )
102     {
103         intf_ErrMsg("vpar error: can't spawn video parser thread\n");
104         free( p_vpar );
105         return( NULL );
106     }
107
108     intf_DbgMsg("vpar debug: video parser thread (%p) created\n", p_vpar);
109     return( p_vpar );
110 }
111
112 /*****************************************************************************
113  * vpar_DestroyThread: destroy a generic parser thread
114  *****************************************************************************
115  * Destroy a terminated thread. This function will return 0 if the thread could
116  * be destroyed, and non 0 else. The last case probably means that the thread
117  * was still active, and another try may succeed.
118  *****************************************************************************/
119 void vpar_DestroyThread( vpar_thread_t *p_vpar /*, int *pi_status */ )
120 {
121     intf_DbgMsg("vpar debug: requesting termination of video parser thread %p\n", p_vpar);
122
123     /* Ask thread to kill itself */
124     p_vpar->b_die = 1;
125     /* Make sure the parser thread leaves the GetByte() function */
126     vlc_mutex_lock( &(p_vpar->fifo.data_lock) );
127     vlc_cond_signal( &(p_vpar->fifo.data_wait) );
128     vlc_mutex_unlock( &(p_vpar->fifo.data_lock) );
129
130     /* Waiting for the parser thread to exit */
131     /* Remove this as soon as the "status" flag is implemented */
132     vlc_thread_join( p_vpar->thread_id );
133 }
134
135 /* following functions are local */
136
137 /*****************************************************************************
138  * CheckConfiguration: check vpar_CreateThread() configuration
139  *****************************************************************************
140  * Set default parameters where required. In DEBUG mode, check if configuration
141  * is valid.
142  *****************************************************************************/
143 #if 0
144 static int CheckConfiguration( video_cfg_t *p_cfg )
145 {
146     /* XXX?? */
147
148     return( 0 );
149 }
150 #endif
151
152 /*****************************************************************************
153  * InitThread: initialize vpar output thread
154  *****************************************************************************
155  * This function is called from RunThread and performs the second step of the
156  * initialization. It returns 0 on success. Note that the thread's flag are not
157  * modified inside this function.
158  *****************************************************************************/
159 static int InitThread( vpar_thread_t *p_vpar )
160 {
161 #ifdef VDEC_SMP
162     int i_dummy;
163 #endif
164
165 #ifdef SAM_SYNCHRO
166     int i_dummy;
167 #endif
168
169     intf_DbgMsg("vpar debug: initializing video parser thread %p\n", p_vpar);
170
171     /* Our first job is to initialize the bit stream structure with the
172      * beginning of the input stream */
173     vlc_mutex_lock( &p_vpar->fifo.data_lock );
174     while ( DECODER_FIFO_ISEMPTY(p_vpar->fifo) )
175     {
176         if ( p_vpar->b_die )
177         {
178             vlc_mutex_unlock( &p_vpar->fifo.data_lock );
179             return( 1 );
180         }
181         vlc_cond_wait( &p_vpar->fifo.data_wait, &p_vpar->fifo.data_lock );
182     }
183     p_vpar->bit_stream.p_ts = DECODER_FIFO_START( p_vpar->fifo )->p_first_ts;
184     p_vpar->bit_stream.p_byte = p_vpar->bit_stream.p_ts->buffer + p_vpar->bit_stream.p_ts->i_payload_start;
185     p_vpar->bit_stream.p_end = p_vpar->bit_stream.p_ts->buffer + p_vpar->bit_stream.p_ts->i_payload_end;
186     vlc_mutex_unlock( &p_vpar->fifo.data_lock );
187
188     /* Initialize parsing data */
189     p_vpar->sequence.p_forward = NULL;
190     p_vpar->sequence.p_backward = NULL;
191     p_vpar->sequence.intra_quant.b_allocated = 0;
192     p_vpar->sequence.nonintra_quant.b_allocated = 0;
193     p_vpar->sequence.chroma_intra_quant.b_allocated = 0;
194     p_vpar->sequence.chroma_nonintra_quant.b_allocated = 0;
195
196     /* Initialize copyright information */
197     p_vpar->sequence.b_copyright_flag = 0;
198     p_vpar->sequence.b_original = 0;
199     p_vpar->sequence.i_copyright_id = 0;
200     p_vpar->sequence.i_copyright_nb = 0;
201
202     p_vpar->picture.p_picture = NULL;
203     p_vpar->picture.i_current_structure = 0;
204
205     /* Initialize other properties */
206 #ifdef STATS
207     p_vpar->c_loops = 0;
208     p_vpar->c_idle_loops = 0;
209     p_vpar->c_pictures = 0;
210     p_vpar->c_i_pictures = 0;
211     p_vpar->c_p_pictures = 0;
212     p_vpar->c_b_pictures = 0;
213     p_vpar->c_decoded_pictures = 0;
214     p_vpar->c_decoded_i_pictures = 0;
215     p_vpar->c_decoded_p_pictures = 0;
216     p_vpar->c_decoded_b_pictures = 0;
217 #endif
218
219     /* Initialize video FIFO */
220     vpar_InitFIFO( p_vpar );
221
222     memset( p_vpar->pp_vdec, 0, NB_VDEC*sizeof(vdec_thread_t *) );
223
224 #ifdef VDEC_SMP
225     /* Spawn video_decoder threads */
226     /* FIXME: modify the number of vdecs at runtime ?? */
227     for( i_dummy = 0; i_dummy < NB_VDEC; i_dummy++ )
228     {
229         if( (p_vpar->pp_vdec[i_dummy] = vdec_CreateThread( p_vpar )) == NULL )
230         {
231             return( 1 );
232         }
233     }
234 #else
235     /* Fake a video_decoder thread */
236     if( (p_vpar->pp_vdec[0] = (vdec_thread_t *)malloc(sizeof( vdec_thread_t ))) == NULL
237         || vdec_InitThread( p_vpar->pp_vdec[0] ) )
238     {
239         return( 1 );
240     }
241     p_vpar->pp_vdec[0]->b_die = 0;
242     p_vpar->pp_vdec[0]->b_error = 0;
243     p_vpar->pp_vdec[0]->p_vpar = p_vpar;
244 #endif
245
246     /* Initialize lookup tables */
247 #if defined(MPEG2_COMPLIANT) && !defined(VDEC_DFT)
248     vpar_InitCrop( p_vpar );
249 #endif
250     vpar_InitMbAddrInc( p_vpar );
251     vpar_InitDCTTables( p_vpar );
252     vpar_InitPMBType( p_vpar );
253     vpar_InitBMBType( p_vpar );
254     vpar_InitDCTTables( p_vpar );
255
256
257     /*
258      * Initialize the synchro properties
259      */
260 #ifdef SAM_SYNCHRO
261     p_vpar->synchro.i_last_decode_pts = 0;
262     p_vpar->synchro.i_last_display_pts = 0;
263     p_vpar->synchro.i_images_since_pts = 0;
264     /* for i frames */
265     p_vpar->synchro.i_last_i_pts = 0;
266     p_vpar->synchro.theorical_fps = 25;
267     p_vpar->synchro.i_last_nondropped_i_pts = 0;
268     p_vpar->synchro.actual_fps = 20;
269     /* the fifo */
270     p_vpar->synchro.i_fifo_start = 0;
271     p_vpar->synchro.i_fifo_stop = 0;
272     /* the counter */
273     p_vpar->synchro.modulo = 0;
274     /* mean decoding time - at least 200 ms for a slow machine */
275     p_vpar->synchro.i_mean_decode_time = 200000;
276     /* assume we can display all Is and 2 Ps */
277     p_vpar->synchro.can_display_i = 1;
278     p_vpar->synchro.can_display_p = 0;
279     p_vpar->synchro.displayable_p = 2;
280     p_vpar->synchro.can_display_b = 0;
281     p_vpar->synchro.displayable_b = 0;
282     /* assume there were about 3 P and 6 B images between I's */
283     p_vpar->synchro.current_p_count = 1;
284     p_vpar->synchro.nondropped_p_count = 1;
285     p_vpar->synchro.p_count_predict = 3;
286     p_vpar->synchro.current_b_count = 1;
287     p_vpar->synchro.nondropped_b_count = 1;
288     p_vpar->synchro.b_count_predict = 6;
289     for( i_dummy = 0; i_dummy < 6; i_dummy++)
290     {
291         p_vpar->synchro.tab_p[i_dummy].mean = 3;
292         p_vpar->synchro.tab_p[i_dummy].deviation = .5;
293         p_vpar->synchro.tab_b[i_dummy].mean = 6;
294         p_vpar->synchro.tab_b[i_dummy].deviation = .5;
295     }
296 #endif
297
298 #ifdef MEUUH_SYNCHRO
299     p_vpar->synchro.kludge_level = 5;
300     p_vpar->synchro.kludge_nbp = p_vpar->synchro.kludge_p = 5;
301     p_vpar->synchro.kludge_nbb = p_vpar->synchro.kludge_b = 6;
302     p_vpar->synchro.kludge_b = 0;
303     p_vpar->synchro.kludge_prevdate = 0;
304 #endif
305
306 #ifdef POLUX_SYNCHRO
307     p_vpar->synchro.i_current_frame_date = 0;
308     p_vpar->synchro.i_backward_frame_date = 0;
309
310     p_vpar->synchro.r_p_average = p_vpar->synchro.i_p_nb = 6;
311     p_vpar->synchro.r_b_average = p_vpar->synchro.i_b_nb = 6;
312     p_vpar->synchro.i_p_count = 0;
313     p_vpar->synchro.i_b_count = 0;
314     p_vpar->synchro.i_i_count = 0;
315 #endif
316
317     /* Mark thread as running and return */
318     intf_DbgMsg("vpar debug: InitThread(%p) succeeded\n", p_vpar);
319     return( 0 );
320 }
321
322 /*****************************************************************************
323  * RunThread: generic parser thread
324  *****************************************************************************
325  * Video parser thread. This function does only returns when the thread is
326  * terminated.
327  *****************************************************************************/
328 static void RunThread( vpar_thread_t *p_vpar )
329 {
330     intf_DbgMsg("vpar debug: running video parser thread (%p) (pid == %i)\n", p_vpar, getpid());
331
332     /*
333      * Initialize thread
334      */
335     p_vpar->b_error = InitThread( p_vpar );
336
337     p_vpar->b_run = 1;
338
339     /*
340      * Main loop - it is not executed if an error occured during
341      * initialization
342      */
343     while( (!p_vpar->b_die) && (!p_vpar->b_error) )
344     {
345         /* Find the next sequence header in the stream */
346         p_vpar->b_error = vpar_NextSequenceHeader( p_vpar );
347
348 #ifdef STATS
349         p_vpar->c_sequences++;
350 #endif
351
352         while( (!p_vpar->b_die) && (!p_vpar->b_error) )
353         {
354             /* Parse the next sequence, group or picture header */
355             if( vpar_ParseHeader( p_vpar ) )
356             {
357                 /* End of sequence */
358                 break;
359             };
360         }
361     }
362
363     /*
364      * Error loop
365      */
366     if( p_vpar->b_error )
367     {
368         ErrorThread( p_vpar );
369     }
370
371     p_vpar->b_run = 0;
372
373     /* End of thread */
374     EndThread( p_vpar );
375 }
376
377 /*****************************************************************************
378  * ErrorThread: RunThread() error loop
379  *****************************************************************************
380  * This function is called when an error occured during thread main's loop. The
381  * thread can still receive feed, but must be ready to terminate as soon as
382  * possible.
383  *****************************************************************************/
384 static void ErrorThread( vpar_thread_t *p_vpar )
385 {
386     /* We take the lock, because we are going to read/write the start/end
387      * indexes of the decoder fifo */
388     vlc_mutex_lock( &p_vpar->fifo.data_lock );
389
390     /* Wait until a `die' order is sent */
391     while( !p_vpar->b_die )
392     {
393         /* Trash all received PES packets */
394         while( !DECODER_FIFO_ISEMPTY(p_vpar->fifo) )
395         {
396             input_NetlistFreePES( p_vpar->bit_stream.p_input, DECODER_FIFO_START(p_vpar->fifo) );
397             DECODER_FIFO_INCSTART( p_vpar->fifo );
398         }
399
400         /* Waiting for the input thread to put new PES packets in the fifo */
401         vlc_cond_wait( &p_vpar->fifo.data_wait, &p_vpar->fifo.data_lock );
402     }
403
404     /* We can release the lock before leaving */
405     vlc_mutex_unlock( &p_vpar->fifo.data_lock );
406 }
407
408 /*****************************************************************************
409  * EndThread: thread destruction
410  *****************************************************************************
411  * This function is called when the thread ends after a sucessfull
412  * initialization.
413  *****************************************************************************/
414 static void EndThread( vpar_thread_t *p_vpar )
415 {
416 #ifdef VDEC_SMP
417     int i_dummy;
418 #endif
419
420     intf_DbgMsg("vpar debug: destroying video parser thread %p\n", p_vpar);
421
422 #ifdef DEBUG
423     /* Check for remaining PES packets */
424     /* XXX?? */
425 #endif
426
427     /* Destroy thread structures allocated by InitThread */
428 //    vout_DestroyStream( p_vpar->p_vout, p_vpar->i_stream );
429     /* XXX?? */
430
431     /* Dispose of matrices if they have been allocated. */
432     if( p_vpar->sequence.intra_quant.b_allocated )
433     {
434         free( p_vpar->sequence.intra_quant.pi_matrix );
435     }
436     if( p_vpar->sequence.nonintra_quant.b_allocated )
437     {
438         free( p_vpar->sequence.nonintra_quant.pi_matrix) ;
439     }
440     if( p_vpar->sequence.chroma_intra_quant.b_allocated )
441     {
442         free( p_vpar->sequence.chroma_intra_quant.pi_matrix );
443     }
444     if( p_vpar->sequence.chroma_nonintra_quant.b_allocated )
445     {
446         free( p_vpar->sequence.chroma_nonintra_quant.pi_matrix );
447     }
448
449 #ifdef VDEC_SMP
450     /* Destroy vdec threads */
451     for( i_dummy = 0; i_dummy < NB_VDEC; i_dummy++ )
452     {
453         if( p_vpar->pp_vdec[i_dummy] != NULL )
454             vdec_DestroyThread( p_vpar->pp_vdec[i_dummy] );
455         else
456             break;
457     }
458 #else
459     free( p_vpar->pp_vdec[0] );
460 #endif
461
462     free( p_vpar );
463
464     intf_DbgMsg("vpar debug: EndThread(%p)\n", p_vpar);
465 }