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