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