]> git.sesse.net Git - vlc/blob - src/video_parser/video_parser.c
* Ajout de la fonction MacroBlockAddressIncrement dans vpar_blocks.c
[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
34 #include "vdec_idct.h"
35 #include "video_decoder.h"
36 #include "vdec_motion.h"
37
38 #include "vpar_blocks.h"
39 #include "vpar_headers.h"
40 #include "video_fifo.h"
41 #include "vpar_synchro.h"
42 #include "video_parser.h"
43
44 /*
45  * Local prototypes
46  */
47 //static int      CheckConfiguration  ( video_cfg_t *p_cfg );
48 static int      InitThread          ( vpar_thread_t *p_vpar );
49 static void     RunThread           ( vpar_thread_t *p_vpar );
50 static void     ErrorThread         ( vpar_thread_t *p_vpar );
51 static void     EndThread           ( vpar_thread_t *p_vpar );
52
53 /*******************************************************************************
54  * vpar_CreateThread: create a generic parser thread
55  *******************************************************************************
56  * This function creates a new video parser thread, and returns a pointer
57  * to its description. On error, it returns NULL.
58  * Following configuration properties are used:
59  * ??
60  *******************************************************************************/
61 vpar_thread_t * vpar_CreateThread( /* video_cfg_t *p_cfg, */ input_thread_t *p_input /*,
62                                    vout_thread_t *p_vout, int *pi_status */ )
63 {
64     vpar_thread_t *     p_vpar;
65
66     intf_DbgMsg("vpar debug: creating video parser thread\n");
67
68     /* Allocate the memory needed to store the thread's structure */
69     if ( (p_vpar = (vpar_thread_t *)malloc( sizeof(vpar_thread_t) )) == NULL )
70     {
71         intf_ErrMsg("vpar error: not enough memory for vpar_CreateThread() to create the new thread\n");
72         return( NULL );
73     }
74
75     /*
76      * Initialize the thread properties
77      */
78     p_vpar->b_die = 0;
79     p_vpar->b_error = 0;
80
81     /*
82      * Initialize the input properties
83      */
84     /* Initialize the parser fifo's data lock and conditional variable and set     * its buffer as empty */
85     vlc_mutex_init( &p_vpar->fifo.data_lock );
86     vlc_cond_init( &p_vpar->fifo.data_wait );
87     p_vpar->fifo.i_start = 0;
88     p_vpar->fifo.i_end = 0;
89     /* Initialize the bit stream structure */
90     p_vpar->bit_stream.p_input = p_input;
91     p_vpar->bit_stream.p_decoder_fifo = &p_vpar->fifo;
92     p_vpar->bit_stream.fifo.buffer = 0;
93     p_vpar->bit_stream.fifo.i_available = 0;
94
95     /* Spawn the video parser thread */
96     if ( vlc_thread_create(&p_vpar->thread_id, "video parser", (vlc_thread_func)RunThread, (void *)p_vpar) )
97     {
98         intf_ErrMsg("vpar error: can't spawn video parser thread\n");
99         free( p_vpar );
100         return( NULL );
101     }
102
103     intf_DbgMsg("vpar debug: video parser thread (%p) created\n", p_vpar);
104     return( p_vpar );
105 }
106
107 /*******************************************************************************
108  * vpar_DestroyThread: destroy a generic parser thread
109  *******************************************************************************
110  * Destroy a terminated thread. This function will return 0 if the thread could
111  * be destroyed, and non 0 else. The last case probably means that the thread
112  * was still active, and another try may succeed.
113  *******************************************************************************/
114 void vpar_DestroyThread( vpar_thread_t *p_vpar /*, int *pi_status */ )
115 {
116     intf_DbgMsg("vpar debug: requesting termination of video parser thread %p\n", p_vpar);
117
118     /* Ask thread to kill itself */
119     p_vpar->b_die = 1;
120     /* Make sure the parser thread leaves the GetByte() function */
121     vlc_mutex_lock( &(p_vpar->fifo.data_lock) );
122     vlc_cond_signal( &(p_vpar->fifo.data_wait) );
123     vlc_mutex_unlock( &(p_vpar->fifo.data_lock) );
124
125     /* Waiting for the parser thread to exit */
126     /* Remove this as soon as the "status" flag is implemented */
127     vlc_thread_join( p_vpar->thread_id );
128 }
129
130 /* following functions are local */
131
132 /*******************************************************************************
133  * CheckConfiguration: check vpar_CreateThread() configuration
134  *******************************************************************************
135  * Set default parameters where required. In DEBUG mode, check if configuration
136  * is valid.
137  *******************************************************************************/
138 #if 0
139 static int CheckConfiguration( video_cfg_t *p_cfg )
140 {
141     /* ?? */
142
143     return( 0 );
144 }
145 #endif
146
147 /*******************************************************************************
148  * InitThread: initialize vpar output thread
149  *******************************************************************************
150  * This function is called from RunThread and performs the second step of the
151  * initialization. It returns 0 on success. Note that the thread's flag are not
152  * modified inside this function.
153  *******************************************************************************/
154 static int InitThread( vpar_thread_t *p_vpar )
155 {
156     int     i_dummy;
157
158     intf_DbgMsg("vpar debug: initializing video parser thread %p\n", p_vpar);
159
160     /* Our first job is to initialize the bit stream structure with the
161      * beginning of the input stream */
162     vlc_mutex_lock( &p_vpar->fifo.data_lock );
163     while ( DECODER_FIFO_ISEMPTY(p_vpar->fifo) )
164     {
165         vlc_cond_wait( &p_vpar->fifo.data_wait, &p_vpar->fifo.data_lock );
166     }
167     p_vpar->bit_stream.p_ts = DECODER_FIFO_START( p_vpar->fifo )->p_first_ts;
168     p_vpar->bit_stream.i_byte = p_vpar->bit_stream.p_ts->i_payload_start;
169     vlc_mutex_unlock( &p_vpar->fifo.data_lock );
170
171 #if 0
172     /* ?? */
173     /* Create video stream */
174     p_vpar->i_stream =  vout_CreateStream( p_vpar->p_vout );
175     if( p_vpar->i_stream < 0 )                                        /* error */
176     {
177         return( 1 );
178     }
179 #endif
180
181     /* Initialize parsing data */
182     p_vpar->sequence.p_forward = NULL;
183     p_vpar->sequence.p_backward = NULL;
184     p_vpar->sequence.intra_quant.b_allocated = 0;
185     p_vpar->sequence.nonintra_quant.b_allocated = 0;
186     p_vpar->sequence.chroma_intra_quant.b_allocated = 0;
187     p_vpar->sequence.chroma_nonintra_quant.b_allocated = 0;
188     /* Initialize copyright information */
189     p_vpar->sequence.b_copyright_flag = 0;
190     p_vpar->sequence.b_original = 0;
191     p_vpar->sequence.i_copyright_id = 0;
192     p_vpar->sequence.i_copyright_nb = 0;
193
194     /* Initialize other properties */
195 #ifdef STATS
196     p_vpar->c_loops = 0;    
197     p_vpar->c_idle_loops = 0;
198     p_vpar->c_pictures = 0;
199     p_vpar->c_i_pictures = 0;
200     p_vpar->c_p_pictures = 0;
201     p_vpar->c_b_pictures = 0;
202     p_vpar->c_decoded_pictures = 0;
203     p_vpar->c_decoded_i_pictures = 0;
204     p_vpar->c_decoded_p_pictures = 0;
205     p_vpar->c_decoded_b_pictures = 0;
206 #endif
207
208     /* Initialize video FIFO */
209     vpar_InitFIFO( p_vpar );
210     
211     bzero( p_vpar->p_vdec, NB_VDEC*sizeof(vdec_thread_t *) );
212     
213     /* Spawn video_decoder threads */
214     /* ??? modify the number of vdecs at runtime ? */
215     for( i_dummy = 0; i_dummy < NB_VDEC; i_dummy++ )
216     {
217         if( (p_vpar->p_vdec[i_dummy] = vdec_CreateThread( p_vpar )) == NULL )
218         {
219             return( 1 );
220         }
221     }
222
223     /* Initialize lookup tables */
224     InitMbAddrInc( p_vpar );
225
226     /* Mark thread as running and return */
227     intf_DbgMsg("vpar debug: InitThread(%p) succeeded\n", p_vpar);
228     return( 0 );
229 }
230
231 /*******************************************************************************
232  * RunThread: generic parser thread
233  *******************************************************************************
234  * Video parser thread. This function does only returns when the thread is
235  * terminated. 
236  *******************************************************************************/
237 static void RunThread( vpar_thread_t *p_vpar )
238 {
239     intf_DbgMsg("vpar debug: running video parser thread (%p) (pid == %i)\n", p_vpar, getpid());
240
241     /* 
242      * Initialize thread 
243      */
244     p_vpar->b_error = InitThread( p_vpar );
245     if( p_vpar->b_error )
246     {
247         return;
248     }
249     p_vpar->b_run = 1;
250
251     /*
252      * Main loop - it is not executed if an error occured during
253      * initialization
254      */
255     while( (!p_vpar->b_die) && (!p_vpar->b_error) )
256     {
257         /* Find the next sequence header in the stream */
258         p_vpar->b_error = vpar_NextSequenceHeader( p_vpar );
259
260 #ifdef STATS
261         p_vpar->c_sequences++;
262 #endif
263
264         while( (!p_vpar->b_die) && (!p_vpar->b_error) )
265         {
266             /* Parse the next sequence, group or picture header */
267             if( vpar_ParseHeader( p_vpar ) )
268             {
269                 /* End of sequence */
270                 break;
271             };
272         }
273     } 
274
275     /*
276      * Error loop
277      */
278     if( p_vpar->b_error )
279     {
280         ErrorThread( p_vpar );
281     }
282
283     /* End of thread */
284     EndThread( p_vpar );
285     p_vpar->b_run = 0;
286 }
287
288 /*******************************************************************************
289  * ErrorThread: RunThread() error loop
290  *******************************************************************************
291  * This function is called when an error occured during thread main's loop. The
292  * thread can still receive feed, but must be ready to terminate as soon as
293  * possible.
294  *******************************************************************************/
295 static void ErrorThread( vpar_thread_t *p_vpar )
296 {
297     /* Wait until a `die' order */
298     while( !p_vpar->b_die )
299     {
300         /* We take the lock, because we are going to read/write the start/end
301          * indexes of the parser fifo */
302         vlc_mutex_lock( &p_vpar->fifo.data_lock );
303
304         /* ?? trash all trashable PES packets */
305         while( !DECODER_FIFO_ISEMPTY(p_vpar->fifo) )
306         {
307             input_NetlistFreePES( p_vpar->bit_stream.p_input,
308                                   DECODER_FIFO_START(p_vpar->fifo) );
309             DECODER_FIFO_INCSTART( p_vpar->fifo );
310         }
311
312         vlc_mutex_unlock( &p_vpar->fifo.data_lock );
313         /* Sleep a while */
314         msleep( VPAR_IDLE_SLEEP );
315     }
316 }
317
318 /*******************************************************************************
319  * EndThread: thread destruction
320  *******************************************************************************
321  * This function is called when the thread ends after a sucessfull 
322  * initialization.
323  *******************************************************************************/
324 static void EndThread( vpar_thread_t *p_vpar )
325 {
326     int i_dummy;
327
328     intf_DbgMsg("vpar debug: destroying video parser thread %p\n", p_vpar);
329
330 #ifdef DEBUG
331     /* Check for remaining PES packets */
332     /* ?? */
333 #endif
334
335     /* Destroy thread structures allocated by InitThread */
336 //    vout_DestroyStream( p_vpar->p_vout, p_vpar->i_stream );
337     /* ?? */
338
339     /* Destroy vdec threads */
340     for( i_dummy = 0; i_dummy < NB_VDEC; i_dummy++ )
341     {
342         if( p_vpar->p_vdec[i_dummy] != NULL )
343             vdec_DestroyThread( p_vpar->p_vdec[i_dummy] );
344         else
345             break;
346     }
347
348     intf_DbgMsg("vpar debug: EndThread(%p)\n", p_vpar);
349 }