]> git.sesse.net Git - vlc/blob - src/video_decoder/video_decoder.c
Avancement du debuggage du motion.
[vlc] / src / video_decoder / video_decoder.c
1 /*******************************************************************************
2  * video_decoder.c : video decoder thread
3  * (c)1999 VideoLAN
4  *******************************************************************************/
5
6 /* ?? passer en terminate/destroy avec les signaux supplĂ©mentaires */
7
8 /*******************************************************************************
9  * Preamble
10  *******************************************************************************/
11 //#include "vlc.h"
12
13 #include <errno.h>
14 #include <stdlib.h>
15 #include <stdio.h>
16 #include <unistd.h>
17 #include <string.h>
18 #include <sys/uio.h>
19 #include <X11/Xlib.h>
20 #include <X11/extensions/XShm.h>
21
22 #include "config.h"
23 #include "common.h"
24 #include "mtime.h"
25 #include "vlc_thread.h"
26
27 #include "intf_msg.h"
28 #include "debug.h"                    /* ?? temporaire, requis par netlist.h */
29
30 #include "input.h"
31 #include "input_netlist.h"
32 #include "decoder_fifo.h"
33 #include "video.h"
34 #include "video_output.h"
35
36 #include "vdec_idct.h"
37 #include "video_decoder.h"
38 #include "vdec_motion.h"
39
40 #include "vpar_blocks.h"
41 #include "vpar_headers.h"
42 #include "video_fifo.h"
43 #include "vpar_synchro.h"
44 #include "video_parser.h"
45
46 /*
47  * Local prototypes
48  */
49 static int      InitThread          ( vdec_thread_t *p_vdec );
50 static void     RunThread           ( vdec_thread_t *p_vdec );
51 static void     ErrorThread         ( vdec_thread_t *p_vdec );
52 static void     EndThread           ( vdec_thread_t *p_vdec );
53 static void     DecodeMacroblock    ( vdec_thread_t *p_vdec,
54                                       macroblock_t * p_mb );
55
56 /*******************************************************************************
57  * vdec_CreateThread: create a video decoder thread
58  *******************************************************************************
59  * This function creates a new video decoder thread, and returns a pointer
60  * to its description. On error, it returns NULL.
61  * Following configuration properties are used:
62  * ??
63  *******************************************************************************/
64 vdec_thread_t * vdec_CreateThread( vpar_thread_t *p_vpar /*, int *pi_status */ )
65 {
66     vdec_thread_t *     p_vdec;
67
68     intf_DbgMsg("vdec debug: creating video decoder thread\n");
69
70     /* Allocate the memory needed to store the thread's structure */
71     if ( (p_vdec = (vdec_thread_t *)malloc( sizeof(vdec_thread_t) )) == NULL )
72     {
73         intf_ErrMsg("vdec error: not enough memory for vdec_CreateThread() to create the new thread\n");
74         return( NULL );
75     }
76
77     /*
78      * Initialize the thread properties
79      */
80     p_vdec->b_die = 0;
81     p_vdec->b_error = 0;
82
83     /*
84      * Initialize the parser properties
85      */
86     p_vdec->p_vpar = p_vpar;
87
88     /* Spawn the video decoder thread */
89     if ( vlc_thread_create(&p_vdec->thread_id, "video decoder",
90          (vlc_thread_func_t)RunThread, (void *)p_vdec) )
91     {
92         intf_ErrMsg("vdec error: can't spawn video decoder thread\n");
93         free( p_vdec );
94         return( NULL );
95     }
96
97     intf_DbgMsg("vdec debug: video decoder thread (%p) created\n", p_vdec);
98     return( p_vdec );
99 }
100
101 /*******************************************************************************
102  * vdec_DestroyThread: destroy a video decoder thread
103  *******************************************************************************
104  * Destroy and terminate thread. This function will return 0 if the thread could
105  * be destroyed, and non 0 else. The last case probably means that the thread
106  * was still active, and another try may succeed.
107  *******************************************************************************/
108 void vdec_DestroyThread( vdec_thread_t *p_vdec /*, int *pi_status */ )
109 {
110     intf_DbgMsg("vdec debug: requesting termination of video decoder thread %p\n", p_vdec);
111
112     /* Ask thread to kill itself */
113     p_vdec->b_die = 1;
114     /* Make sure the parser thread leaves the GetByte() function */
115     vlc_mutex_lock( &(p_vdec->p_vpar->vfifo.lock) );
116     vlc_cond_signal( &(p_vdec->p_vpar->vfifo.wait) );
117     vlc_mutex_unlock( &(p_vdec->p_vpar->vfifo.lock) );
118
119
120     /* Waiting for the decoder thread to exit */
121     /* Remove this as soon as the "status" flag is implemented */
122     vlc_thread_join( p_vdec->thread_id );
123 }
124
125 /* following functions are local */
126
127 /*******************************************************************************
128  * InitThread: initialize video decoder thread
129  *******************************************************************************
130  * This function is called from RunThread and performs the second step of the
131  * initialization. It returns 0 on success. Note that the thread's flag are not
132  * modified inside this function.
133  *******************************************************************************/
134 static int InitThread( vdec_thread_t *p_vdec )
135 {
136     int i_dummy;
137
138     intf_DbgMsg("vdec debug: initializing video decoder thread %p\n", p_vdec);
139
140     /* Initialize other properties */
141 #ifdef STATS
142     p_vdec->c_loops = 0;    
143     p_vdec->c_idle_loops = 0;
144     p_vdec->c_decoded_pictures = 0;
145     p_vdec->c_decoded_i_pictures = 0;
146     p_vdec->c_decoded_p_pictures = 0;
147     p_vdec->c_decoded_b_pictures = 0;
148 #endif
149
150     /* Init crop table */
151     p_vdec->pi_crop = p_vdec->pi_crop_buf + (VDEC_CROPRANGE >> 1);
152     for( i_dummy = -(VDEC_CROPRANGE >> 1); i_dummy < 0; i_dummy++ )
153     {
154         p_vdec->pi_crop[i_dummy] = 0;
155     }
156     for( ; i_dummy < 255; i_dummy ++ )
157     {
158         p_vdec->pi_crop[i_dummy] = i_dummy;
159     }
160     for( ; i_dummy < (VDEC_CROPRANGE >> 1) -1; i_dummy++ )
161     {
162         p_vdec->pi_crop[i_dummy] = 255;
163     }
164
165     /* Mark thread as running and return */
166     intf_DbgMsg("vdec debug: InitThread(%p) succeeded\n", p_vdec);    
167     return( 0 );    
168 }
169
170 /*******************************************************************************
171  * RunThread: video decoder thread
172  *******************************************************************************
173  * Video decoder thread. This function does only return when the thread is
174  * terminated. 
175  *******************************************************************************/
176 static void RunThread( vdec_thread_t *p_vdec )
177 {
178     intf_DbgMsg("vdec debug: running video decoder thread (%p) (pid == %i)\n",
179                 p_vdec, getpid());
180
181     /* 
182      * Initialize thread and free configuration 
183      */
184     p_vdec->b_error = InitThread( p_vdec );
185     if( p_vdec->b_error )
186     {
187         return;
188     }
189     p_vdec->b_run = 1;
190
191     /*
192      * Main loop - it is not executed if an error occured during
193      * initialization
194      */
195     while( (!p_vdec->b_die) && (!p_vdec->b_error) )
196     {
197         macroblock_t *          p_mb;
198
199         if( (p_mb = vpar_GetMacroblock( &p_vdec->p_vpar->vfifo )) != NULL )
200         {
201             DecodeMacroblock( p_vdec, p_mb );
202         }
203     } 
204
205     /*
206      * Error loop
207      */
208     if( p_vdec->b_error )
209     {
210         ErrorThread( p_vdec );        
211     }
212
213     /* End of thread */
214     EndThread( p_vdec );
215     p_vdec->b_run = 0;
216 }
217
218 /*******************************************************************************
219  * ErrorThread: RunThread() error loop
220  *******************************************************************************
221  * This function is called when an error occured during thread main's loop. The
222  * thread can still receive feed, but must be ready to terminate as soon as
223  * possible.
224  *******************************************************************************/
225 static void ErrorThread( vdec_thread_t *p_vdec )
226 {
227     macroblock_t *       p_mb;
228
229     /* Wait until a `die' order */
230     while( !p_vdec->b_die )
231     {
232         p_mb = vpar_GetMacroblock( &p_vdec->p_vpar->vfifo );
233         vpar_DestroyMacroblock( &p_vdec->p_vpar->vfifo, p_mb );
234     }
235 }
236
237 /*******************************************************************************
238  * EndThread: thread destruction
239  *******************************************************************************
240  * This function is called when the thread ends after a sucessfull 
241  * initialization.
242  *******************************************************************************/
243 static void EndThread( vdec_thread_t *p_vdec )
244 {
245     intf_DbgMsg("vdec debug: EndThread(%p)\n", p_vdec);
246 }
247
248 /*******************************************************************************
249  * DecodeMacroblock : decode a macroblock of a picture
250  *******************************************************************************/
251 static void DecodeMacroblock( vdec_thread_t *p_vdec, macroblock_t * p_mb )
252 {
253     int             i_b;
254
255     /*
256      * Motion Compensation (ISO/IEC 13818-2 section 7.6)
257      */
258     (*p_mb->pf_motion)( p_mb );
259 if( !p_mb->b_P_coding_type ) {
260     /* luminance */
261     for( i_b = 0; i_b < 4; i_b++ )
262     {
263         /*
264          * Inverse DCT (ISO/IEC 13818-2 section Annex A)
265          */
266         (p_mb->pf_idct[i_b])( p_vdec, p_mb->ppi_blocks[i_b],
267                               p_mb->pi_sparse_pos[i_b] );
268
269         /*
270          * Adding prediction and coefficient data (ISO/IEC 13818-2 section 7.6.8)
271          */
272         (p_mb->pf_addb[i_b])( p_vdec, p_mb->ppi_blocks[i_b],
273                               p_mb->p_data[i_b], p_mb->i_addb_l_stride );
274     }
275
276     /* chrominance */
277     for( i_b = 4; i_b < 4 + p_mb->i_chroma_nb_blocks; i_b++ )
278     {
279         /*
280          * Inverse DCT (ISO/IEC 13818-2 section Annex A)
281          */
282         (p_mb->pf_idct[i_b])( p_vdec, p_mb->ppi_blocks[i_b],
283                               p_mb->pi_sparse_pos[i_b] );
284         
285         /*
286          * Adding prediction and coefficient data (ISO/IEC 13818-2 section 7.6.8)
287          */
288         (p_mb->pf_addb[i_b])( p_vdec, p_mb->ppi_blocks[i_b],
289                               p_mb->p_data[i_b], p_mb->i_addb_c_stride );
290     }
291 }
292     /*
293      * Decoding is finished, release the macroblock and free
294      * unneeded memory.
295      */
296     vpar_ReleaseMacroblock( &p_vdec->p_vpar->vfifo, p_mb );
297 }
298
299 /*******************************************************************************
300  * vdec_AddBlock : add a block
301  *******************************************************************************/
302 void vdec_AddBlock( vdec_thread_t * p_vdec, dctelem_t * p_block, yuv_data_t * p_data, int i_incr )
303 {
304     int i_x, i_y;
305  
306     for( i_y = 0; i_y < 8; i_y++ )
307     {
308         for( i_x = 0; i_x < 8; i_x++ )
309         {
310             *p_data = p_vdec->pi_crop[*p_data + *p_block++];
311             p_data++;
312         }
313         p_data += i_incr;
314     }
315 }
316
317 /*******************************************************************************
318  * vdec_CopyBlock : copy a block
319  *******************************************************************************/
320 void vdec_CopyBlock( vdec_thread_t * p_vdec, dctelem_t * p_block, yuv_data_t * p_data, int i_incr )
321 {
322     int i_y;
323
324     for( i_y = 0; i_y < 8; i_y++ )
325     {
326         int i_x;
327
328         for( i_x = 0; i_x < 8; i_x++ )
329         {
330             /* ??? Why does the reference decoder add 128 ??? */
331             *p_data++ = p_vdec->pi_crop[*p_block++];
332         }
333         p_data += i_incr;
334     }
335 }
336
337 /*******************************************************************************
338  * vdec_DummyBlock : dummy function that does nothing
339  *******************************************************************************/
340 void vdec_DummyBlock( vdec_thread_t * p_vdec, dctelem_t * p_block, yuv_data_t * p_data, int i_incr )
341 {
342 }