]> git.sesse.net Git - vlc/blob - src/video_parser/vpar_headers.c
Beginning of Interface II
[vlc] / src / video_parser / vpar_headers.c
1 /*****************************************************************************
2  * vpar_headers.c : headers parsing
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 VideoLAN
5  * $Id: vpar_headers.c,v 1.77 2001/02/11 01:15:12 sam Exp $
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
8  *          Stéphane Borel <stef@via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include "defs.h"
29
30 #include <stdlib.h>                                                /* free() */
31
32 #include "config.h"
33 #include "common.h"
34 #include "threads.h"
35 #include "mtime.h"
36
37 #include "intf_msg.h"
38
39 #include "stream_control.h"
40 #include "input_ext-dec.h"
41
42 #include "video.h"
43 #include "video_output.h"
44
45 #include "video_decoder.h"
46 #include "vdec_motion.h"
47 #include "../video_decoder/vdec_idct.h"
48
49 #include "vpar_blocks.h"
50 #include "../video_decoder/vpar_headers.h"
51 #include "../video_decoder/vpar_synchro.h"
52 #include "../video_decoder/video_parser.h"
53 #include "../video_decoder/video_fifo.h"
54
55 /*
56  * Local prototypes
57  */
58 static __inline__ void NextStartCode( bit_stream_t * );
59 static void SequenceHeader( vpar_thread_t * p_vpar );
60 static void GroupHeader( vpar_thread_t * p_vpar );
61 static void PictureHeader( vpar_thread_t * p_vpar );
62 static void ExtensionAndUserData( vpar_thread_t * p_vpar );
63 static void QuantMatrixExtension( vpar_thread_t * p_vpar );
64 static void SequenceScalableExtension( vpar_thread_t * p_vpar );
65 static void SequenceDisplayExtension( vpar_thread_t * p_vpar );
66 static void PictureDisplayExtension( vpar_thread_t * p_vpar );
67 static void PictureSpatialScalableExtension( vpar_thread_t * p_vpar );
68 static void PictureTemporalScalableExtension( vpar_thread_t * p_vpar );
69 static void CopyrightExtension( vpar_thread_t * p_vpar );
70
71 /*
72  * Standard variables
73  */
74
75 /*****************************************************************************
76  * pi_default_intra_quant : default quantization matrix
77  *****************************************************************************/
78 u8 pi_default_intra_quant[] =
79 {
80     8,  16, 19, 22, 26, 27, 29, 34,
81     16, 16, 22, 24, 27, 29, 34, 37,
82     19, 22, 26, 27, 29, 34, 34, 38,
83     22, 22, 26, 27, 29, 34, 37, 40,
84     22, 26, 27, 29, 32, 35, 40, 48,
85     26, 27, 29, 32, 35, 40, 48, 58,
86     26, 27, 29, 34, 38, 46, 56, 69,
87     27, 29, 35, 38, 46, 56, 69, 83
88 };
89
90 /*****************************************************************************
91  * pi_default_nonintra_quant : default quantization matrix
92  *****************************************************************************/
93 u8 pi_default_nonintra_quant[] =
94 {
95     16, 16, 16, 16, 16, 16, 16, 16,
96     16, 16, 16, 16, 16, 16, 16, 16,
97     16, 16, 16, 16, 16, 16, 16, 16,
98     16, 16, 16, 16, 16, 16, 16, 16,
99     16, 16, 16, 16, 16, 16, 16, 16,
100     16, 16, 16, 16, 16, 16, 16, 16,
101     16, 16, 16, 16, 16, 16, 16, 16,
102     16, 16, 16, 16, 16, 16, 16, 16
103 };
104
105 /*****************************************************************************
106  * pi_scan : zig-zag and alternate scan patterns
107  *****************************************************************************/
108 u8 pi_scan[2][64] =
109 {
110     { /* Zig-Zag pattern */
111         0,1,8,16,9,2,3,10,17,24,32,25,18,11,4,5,
112         12,19,26,33,40,48,41,34,27,20,13,6,7,14,21,28,
113         35,42,49,56,57,50,43,36,29,22,15,23,30,37,44,51,
114         58,59,52,45,38,31,39,46,53,60,61,54,47,55,62,63
115     },
116     { /* Alternate scan pattern */
117         0,8,16,24,1,9,2,10,17,25,32,40,48,56,57,49,
118         41,33,26,18,3,11,4,12,19,27,34,42,50,58,35,43,
119         51,59,20,28,5,13,6,14,21,29,36,44,52,60,37,45,
120         53,61,22,30,7,15,23,31,38,46,54,62,39,47,55,63
121     }
122 };
123
124 /*
125  * Local inline functions.
126  */
127
128 /*****************************************************************************
129  * ReferenceUpdate : Update the reference pointers when we have a new picture
130  *****************************************************************************/
131 static void __inline__ ReferenceUpdate( vpar_thread_t * p_vpar,
132                                         int i_coding_type,
133                                         picture_t * p_newref )
134 {
135     if( i_coding_type != B_CODING_TYPE )
136     {
137         if( p_vpar->sequence.p_forward != NULL )
138         {
139             vout_UnlinkPicture( p_vpar->p_vout, p_vpar->sequence.p_forward );
140         }
141         if( p_vpar->sequence.p_backward != NULL )
142         {
143             vout_DatePicture( p_vpar->p_vout, p_vpar->sequence.p_backward,
144                               vpar_SynchroDate( p_vpar ) );
145         }
146         p_vpar->sequence.p_forward = p_vpar->sequence.p_backward;
147         p_vpar->sequence.p_backward = p_newref;
148         if( p_newref != NULL )
149         {
150             vout_LinkPicture( p_vpar->p_vout, p_newref );
151         }
152     }
153     else if( p_newref != NULL )
154     {
155         /* Put date immediately. */
156         vout_DatePicture( p_vpar->p_vout, p_newref, vpar_SynchroDate(p_vpar) );
157     }
158 }
159
160 /*****************************************************************************
161  * ReferenceReplace : Replace the last reference pointer when we destroy
162  *                    a picture
163  *****************************************************************************/
164 static void __inline__ ReferenceReplace( vpar_thread_t * p_vpar,
165                                          int i_coding_type,
166                                          picture_t * p_newref )
167 {
168     if( i_coding_type != B_CODING_TYPE )
169     {
170         if( p_vpar->sequence.p_backward != NULL )
171         {
172             vout_UnlinkPicture( p_vpar->p_vout, p_vpar->sequence.p_backward );
173         }
174         p_vpar->sequence.p_backward = p_newref;
175         if( p_newref != NULL )
176         {
177             vout_LinkPicture( p_vpar->p_vout, p_newref );
178         }
179     }
180 }
181
182 /*****************************************************************************
183  * LoadMatrix : Load a quantization matrix
184  *****************************************************************************/
185 static __inline__ void LoadMatrix( vpar_thread_t * p_vpar,
186                                    quant_matrix_t * p_matrix )
187 {
188     int i_dummy;
189
190     if( !p_matrix->b_allocated )
191     {
192         /* Allocate a piece of memory to load the matrix. */
193         if( (p_matrix->pi_matrix = (u8 *)malloc( 64*sizeof(u8) )) == NULL )
194         {
195             intf_ErrMsg( "vpar error: allocation error in LoadMatrix()" );
196             p_vpar->p_fifo->b_error = 1;
197             return;
198         }
199         p_matrix->b_allocated = 1;
200     }
201
202     for( i_dummy = 0; i_dummy < 64; i_dummy++ )
203     {
204         p_matrix->pi_matrix[p_vpar->ppi_scan[SCAN_ZIGZAG][i_dummy]]
205              = GetBits( &p_vpar->bit_stream, 8 );
206     }
207
208 #ifdef VDEC_DFT
209     /* Discrete Fourier Transform requires the quantization matrices to
210      * be normalized before using them. */
211     vdec_NormQuantMatrix( p_matrix->pi_matrix );
212 #endif
213 }
214
215 /*****************************************************************************
216  * LinkMatrix : Link a quantization matrix to another
217  *****************************************************************************/
218 static __inline__ void LinkMatrix( quant_matrix_t * p_matrix, u8 * pi_array )
219 {
220     if( p_matrix->b_allocated )
221     {
222         /* Deallocate the piece of memory. */
223         free( p_matrix->pi_matrix );
224         p_matrix->b_allocated = 0;
225     }
226
227     p_matrix->pi_matrix = pi_array;
228 }
229
230 /*
231  * Exported functions.
232  */
233
234 /*****************************************************************************
235  * vpar_NextSequenceHeader : Find the next sequence header
236  *****************************************************************************/
237 int vpar_NextSequenceHeader( vpar_thread_t * p_vpar )
238 {
239     while( !p_vpar->p_fifo->b_die )
240     {
241         NextStartCode( &p_vpar->bit_stream );
242         if( ShowBits( &p_vpar->bit_stream, 32 ) == SEQUENCE_HEADER_CODE )
243         {
244             return 0;
245         }
246         RemoveBits( &p_vpar->bit_stream, 8 );
247     }
248     return 1;
249 }
250
251 /*****************************************************************************
252  * vpar_ParseHeader : Parse the next header
253  *****************************************************************************/
254 int vpar_ParseHeader( vpar_thread_t * p_vpar )
255 {
256     while( !p_vpar->p_fifo->b_die )
257     {
258         NextStartCode( &p_vpar->bit_stream );
259         switch( GetBits32( &p_vpar->bit_stream ) )
260         {
261         case SEQUENCE_HEADER_CODE:
262 #ifdef STATS
263             p_vpar->c_sequences++;
264 #endif
265             SequenceHeader( p_vpar );
266             return 0;
267             break;
268
269         case GROUP_START_CODE:
270             GroupHeader( p_vpar );
271             return 0;
272             break;
273
274         case PICTURE_START_CODE:
275             PictureHeader( p_vpar );
276             return 0;
277             break;
278
279         case SEQUENCE_END_CODE:
280             intf_DbgMsg("vpar debug: sequence end code received");
281             return 1;
282             break;
283
284         default:
285         }
286     }
287
288     return 0;
289 }
290
291 /*
292  * Following functions are local
293  */
294
295 /*****************************************************************************
296  * SequenceHeader : Parse the next sequence header
297  *****************************************************************************/
298 static void SequenceHeader( vpar_thread_t * p_vpar )
299 {
300 #define RESERVED    -1
301     static int i_frame_rate_table[16] =
302     {
303         0,
304         23 * 1000,
305         24 * 1001,
306         25 * 1001,
307         30 * 1000,
308         30 * 1001,
309         50 * 1001,
310         60 * 1000,
311         60 * 1001,
312         RESERVED, RESERVED, RESERVED, RESERVED, RESERVED, RESERVED, RESERVED
313     };
314 #undef RESERVED
315
316     int i_height_save, i_width_save;
317
318     i_height_save = p_vpar->sequence.i_height;
319     i_width_save = p_vpar->sequence.i_width;
320
321     p_vpar->sequence.i_width = GetBits( &p_vpar->bit_stream, 12 );
322     p_vpar->sequence.i_height = GetBits( &p_vpar->bit_stream, 12 );
323     p_vpar->sequence.i_aspect_ratio = GetBits( &p_vpar->bit_stream, 4 );
324     p_vpar->sequence.i_frame_rate =
325             i_frame_rate_table[ GetBits( &p_vpar->bit_stream, 4 ) ];
326
327     /* We don't need bit_rate_value, marker_bit, vbv_buffer_size,
328      * constrained_parameters_flag */
329     RemoveBits( &p_vpar->bit_stream, 30 );
330
331     /*
332      * Quantization matrices
333      */
334     if( GetBits( &p_vpar->bit_stream, 1 ) ) /* load_intra_quantizer_matrix */
335     {
336         LoadMatrix( p_vpar, &p_vpar->sequence.intra_quant );
337     }
338     else
339     {
340         /* Use default matrix. */
341         LinkMatrix( &p_vpar->sequence.intra_quant,
342                     p_vpar->pi_default_intra_quant );
343     }
344
345     if( GetBits( &p_vpar->bit_stream, 1 ) ) /* load_non_intra_quantizer_matrix */
346     {
347         LoadMatrix( p_vpar, &p_vpar->sequence.nonintra_quant );
348     }
349     else
350     {
351         /* Use default matrix. */
352         LinkMatrix( &p_vpar->sequence.nonintra_quant,
353                     p_vpar->pi_default_nonintra_quant );
354     }
355
356     /* Unless later overwritten by a matrix extension, we have the same
357      * matrices for luminance and chrominance. */
358     LinkMatrix( &p_vpar->sequence.chroma_intra_quant,
359                 p_vpar->sequence.intra_quant.pi_matrix );
360     LinkMatrix( &p_vpar->sequence.chroma_nonintra_quant,
361                 p_vpar->sequence.nonintra_quant.pi_matrix );
362
363     /*
364      * Sequence Extension
365      */
366     NextStartCode( &p_vpar->bit_stream );
367     if( ShowBits( &p_vpar->bit_stream, 32 ) == EXTENSION_START_CODE )
368     {
369         int                         i_dummy;
370
371         /* Turn the MPEG2 flag on */
372         p_vpar->sequence.b_mpeg2 = 1;
373
374         /* Parse sequence_extension */
375         RemoveBits32( &p_vpar->bit_stream );
376         /* extension_start_code_identifier, profile_and_level_indication */
377         RemoveBits( &p_vpar->bit_stream, 12 );
378         p_vpar->sequence.b_progressive = GetBits( &p_vpar->bit_stream, 1 );
379         p_vpar->sequence.i_chroma_format = GetBits( &p_vpar->bit_stream, 2 );
380         p_vpar->sequence.i_width |= GetBits( &p_vpar->bit_stream, 2 ) << 12;
381         p_vpar->sequence.i_height |= GetBits( &p_vpar->bit_stream, 2 ) << 12;
382         /* bit_rate_extension, marker_bit, vbv_buffer_size_extension, low_delay */
383         RemoveBits( &p_vpar->bit_stream, 22 );
384         /* frame_rate_extension_n */
385         i_dummy = GetBits( &p_vpar->bit_stream, 2 );
386         /* frame_rate_extension_d */
387         p_vpar->sequence.i_frame_rate *= (i_dummy + 1)
388                                   / (GetBits( &p_vpar->bit_stream, 5 ) + 1);
389     }
390     else
391     {
392         /* It's an MPEG-1 stream. Put adequate parameters. */
393
394         p_vpar->sequence.b_mpeg2 = 0;
395         p_vpar->sequence.b_progressive = 1;
396         p_vpar->sequence.i_chroma_format = CHROMA_420;
397     }
398
399     /* Update sizes */
400     p_vpar->sequence.i_mb_width = (p_vpar->sequence.i_width + 15) / 16;
401     p_vpar->sequence.i_mb_height = (p_vpar->sequence.b_progressive) ?
402                                    (p_vpar->sequence.i_height + 15) / 16 :
403                                    2 * ((p_vpar->sequence.i_height + 31) / 32);
404     p_vpar->sequence.i_mb_size = p_vpar->sequence.i_mb_width
405                                         * p_vpar->sequence.i_mb_height;
406     p_vpar->sequence.i_width = (p_vpar->sequence.i_mb_width * 16);
407     p_vpar->sequence.i_height = (p_vpar->sequence.i_mb_height * 16);
408     p_vpar->sequence.i_size = p_vpar->sequence.i_width
409                                         * p_vpar->sequence.i_height;
410
411     /* Update chromatic information. */
412     switch( p_vpar->sequence.i_chroma_format )
413     {
414     case CHROMA_420:
415         p_vpar->sequence.i_chroma_nb_blocks = 2;
416         p_vpar->sequence.i_chroma_width = p_vpar->sequence.i_width >> 1;
417         p_vpar->sequence.i_chroma_mb_width = 8;
418         p_vpar->sequence.i_chroma_mb_height = 8;
419         break;
420
421     case CHROMA_422:
422         p_vpar->sequence.i_chroma_nb_blocks = 4;
423         p_vpar->sequence.i_chroma_width = p_vpar->sequence.i_width >> 1;
424         p_vpar->sequence.i_chroma_mb_width = 8;
425         p_vpar->sequence.i_chroma_mb_height = 16;
426         break;
427
428     case CHROMA_444:
429         p_vpar->sequence.i_chroma_nb_blocks = 8;
430         p_vpar->sequence.i_chroma_width = p_vpar->sequence.i_width;
431         p_vpar->sequence.i_chroma_mb_width = 16;
432         p_vpar->sequence.i_chroma_mb_height = 16;
433     }
434
435     /* Reset scalable_mode. */
436     p_vpar->sequence.i_scalable_mode = SC_NONE;
437
438 #if 0
439     if(    p_vpar->sequence.i_width != i_width_save
440         || p_vpar->sequence.i_height != i_height_save )
441     {
442          /* FIXME: What do we do in case of a size change ?? */
443     }
444 #endif
445
446     /* Extension and User data */
447     ExtensionAndUserData( p_vpar );
448 }
449
450 /*****************************************************************************
451  * GroupHeader : Parse the next group of pictures header
452  *****************************************************************************/
453 static void GroupHeader( vpar_thread_t * p_vpar )
454 {
455     /* Nothing to do, we don't care. */
456     RemoveBits( &p_vpar->bit_stream, 27 );
457     ExtensionAndUserData( p_vpar );
458 }
459
460 /*****************************************************************************
461  * PictureHeader : Parse the next picture header
462  *****************************************************************************/
463 static void PictureHeader( vpar_thread_t * p_vpar )
464 {
465     int                 i_structure;
466     int                 i_mb_base;
467     boolean_t           b_parsable;
468 #ifdef VDEC_SMP
469     int                 i_mb;
470 #endif
471
472     RemoveBits( &p_vpar->bit_stream, 10 ); /* temporal_reference */
473     p_vpar->picture.i_coding_type = GetBits( &p_vpar->bit_stream, 3 );
474     RemoveBits( &p_vpar->bit_stream, 16 ); /* vbv_delay */
475
476     if( p_vpar->picture.i_coding_type == P_CODING_TYPE
477         || p_vpar->picture.i_coding_type == B_CODING_TYPE )
478     {
479         p_vpar->picture.pb_full_pel_vector[0] = GetBits( &p_vpar->bit_stream, 1 );
480         p_vpar->picture.i_forward_f_code = GetBits( &p_vpar->bit_stream, 3 );
481     }
482     if( p_vpar->picture.i_coding_type == B_CODING_TYPE )
483     {
484         p_vpar->picture.pb_full_pel_vector[1] = GetBits( &p_vpar->bit_stream, 1 );
485         p_vpar->picture.i_backward_f_code = GetBits( &p_vpar->bit_stream, 3 );
486     }
487
488     /* extra_information_picture */
489     while( GetBits( &p_vpar->bit_stream, 1 ) )
490     {
491         RemoveBits( &p_vpar->bit_stream, 8 );
492     }
493
494     /*
495      * Picture Coding Extension
496      */
497     NextStartCode( &p_vpar->bit_stream );
498     if( ShowBits( &p_vpar->bit_stream, 32 ) == EXTENSION_START_CODE )
499     {
500         /* Parse picture_coding_extension */
501         RemoveBits32( &p_vpar->bit_stream );
502         /* extension_start_code_identifier */
503         RemoveBits( &p_vpar->bit_stream, 4 );
504
505         p_vpar->picture.ppi_f_code[0][0] = GetBits( &p_vpar->bit_stream, 4 );
506         p_vpar->picture.ppi_f_code[0][1] = GetBits( &p_vpar->bit_stream, 4 );
507         p_vpar->picture.ppi_f_code[1][0] = GetBits( &p_vpar->bit_stream, 4 );
508         p_vpar->picture.ppi_f_code[1][1] = GetBits( &p_vpar->bit_stream, 4 );
509         p_vpar->picture.i_intra_dc_precision = GetBits( &p_vpar->bit_stream, 2 );
510         i_structure = GetBits( &p_vpar->bit_stream, 2 );
511         p_vpar->picture.b_top_field_first = GetBits( &p_vpar->bit_stream, 1 );
512         p_vpar->picture.b_frame_pred_frame_dct
513              = GetBits( &p_vpar->bit_stream, 1 );
514         p_vpar->picture.b_concealment_mv = GetBits( &p_vpar->bit_stream, 1 );
515         p_vpar->picture.b_q_scale_type = GetBits( &p_vpar->bit_stream, 1 );
516         p_vpar->picture.b_intra_vlc_format = GetBits( &p_vpar->bit_stream, 1 );
517         p_vpar->picture.b_alternate_scan = GetBits( &p_vpar->bit_stream, 1 );
518         p_vpar->picture.b_repeat_first_field = GetBits( &p_vpar->bit_stream, 1 );
519         /* chroma_420_type (obsolete) */
520         RemoveBits( &p_vpar->bit_stream, 1 );
521         p_vpar->picture.b_progressive = GetBits( &p_vpar->bit_stream, 1 );
522
523         /* composite_display_flag */
524         if( GetBits( &p_vpar->bit_stream, 1 ) )
525         {
526             /* v_axis, field_sequence, sub_carrier, burst_amplitude,
527              * sub_carrier_phase */
528             RemoveBits( &p_vpar->bit_stream, 20 );
529         }
530     }
531     else
532     {
533         /* MPEG-1 compatibility flags */
534         p_vpar->picture.i_intra_dc_precision = 0; /* 8 bits */
535         i_structure = FRAME_STRUCTURE;
536         p_vpar->picture.b_top_field_first = 0;
537         p_vpar->picture.b_frame_pred_frame_dct = 1;
538         p_vpar->picture.b_concealment_mv = 0;
539         p_vpar->picture.b_q_scale_type = 0;
540         p_vpar->picture.b_intra_vlc_format = 0;
541         p_vpar->picture.b_alternate_scan = 0; /* zigzag */
542         p_vpar->picture.b_repeat_first_field = 0;
543         p_vpar->picture.b_progressive = 1;
544     }
545
546 #ifdef STATS
547     p_vpar->pc_pictures[p_vpar->picture.i_coding_type]++;
548 #endif
549
550     if( p_vpar->picture.i_current_structure &&
551         (i_structure == FRAME_STRUCTURE ||
552          i_structure == p_vpar->picture.i_current_structure) )
553     {
554         /* We don't have the second field of the buffered frame. */
555         if( p_vpar->picture.p_picture != NULL )
556         {
557             ReferenceReplace( p_vpar,
558                       p_vpar->picture.i_coding_type,
559                       NULL );
560
561 #ifdef VDEC_SMP
562             for( i_mb = 0; p_vpar->picture.pp_mb[i_mb] != NULL; i_mb++ )
563             {
564                 vpar_DestroyMacroblock( &p_vpar->vfifo,
565                                         p_vpar->picture.pp_mb[i_mb] );
566             }
567 #endif
568             vout_DestroyPicture( p_vpar->p_vout, p_vpar->picture.p_picture );
569         }
570
571         p_vpar->picture.i_current_structure = 0;
572
573         intf_ErrMsg("vpar error: odd number of field pictures.");
574     }
575
576     /* Do we have the reference pictures ? */
577     b_parsable = !(((p_vpar->picture.i_coding_type == P_CODING_TYPE) &&
578                     (p_vpar->sequence.p_backward == NULL)) ||
579                      /* p_backward will become p_forward later */
580                    ((p_vpar->picture.i_coding_type == B_CODING_TYPE) &&
581                     (p_vpar->sequence.p_forward == NULL ||
582                      p_vpar->sequence.p_backward == NULL)));
583
584     if( p_vpar->picture.i_current_structure )
585     {
586         /* Second field of a frame. We will decode it if, and only if we
587          * have decoded the first field. */
588         if( b_parsable )
589         {
590             b_parsable = (p_vpar->picture.p_picture != NULL);
591         }
592     }
593     else
594     {
595         int     i_repeat_field;
596
597         /* Compute the number of times the frame will be emitted by the
598          * decoder (number of half-periods). */
599         if( p_vpar->sequence.b_progressive )
600         {
601             i_repeat_field = (1 + p_vpar->picture.b_repeat_first_field
602                                 + p_vpar->picture.b_top_field_first) * 2;
603         }
604         else
605         {
606             if( p_vpar->picture.b_progressive )
607             {
608                 i_repeat_field = 2 + p_vpar->picture.b_repeat_first_field;
609             }
610             else
611             {
612                 i_repeat_field = 2;
613             }
614         }
615
616         /* Warn synchro we have a new picture (updates pictures index). */
617         vpar_SynchroNewPicture( p_vpar, p_vpar->picture.i_coding_type,
618                                 i_repeat_field );
619
620         if( b_parsable )
621         {
622             /* Does synchro say we have enough time to decode it ? */
623             b_parsable = vpar_SynchroChoose( p_vpar,
624                                p_vpar->picture.i_coding_type, i_structure );
625         }
626     }
627
628     if( !b_parsable )
629     {
630         /* Update the reference pointers. */
631         ReferenceUpdate( p_vpar, p_vpar->picture.i_coding_type, NULL );
632
633         /* Update context. */
634         if( i_structure != FRAME_STRUCTURE )
635         {
636             if( (p_vpar->picture.i_current_structure | i_structure)
637                     == FRAME_STRUCTURE )
638             {
639                 p_vpar->picture.i_current_structure = 0;
640             }
641             else
642             {
643                 /* The frame is complete. */
644                 p_vpar->picture.i_current_structure = i_structure;
645
646                 vpar_SynchroTrash( p_vpar, p_vpar->picture.i_coding_type, i_structure );
647             }
648         }
649         else
650         {
651             /* Warn Synchro we have trashed a picture. */
652             vpar_SynchroTrash( p_vpar, p_vpar->picture.i_coding_type, i_structure );
653         }
654         p_vpar->picture.p_picture = NULL;
655
656         return;
657     }
658
659     /* OK, now we are sure we will decode the picture. */
660 #ifdef STATS
661     p_vpar->pc_decoded_pictures[p_vpar->picture.i_coding_type]++;
662 #endif
663
664 #define P_picture p_vpar->picture.p_picture
665     p_vpar->picture.b_error = 0;
666     p_vpar->picture.b_frame_structure = (i_structure == FRAME_STRUCTURE);
667
668     if( !p_vpar->picture.i_current_structure )
669     {
670         /* This is a new frame. Get a structure from the video_output. */
671         while( ( P_picture = vout_CreatePicture( p_vpar->p_vout,
672                                         99+p_vpar->sequence.i_chroma_format, /*XXX??*/
673                                         p_vpar->sequence.i_width,
674                                         p_vpar->sequence.i_height ) )
675              == NULL )
676         {
677             intf_DbgMsg("vpar debug: allocation error in vout_CreatePicture, delaying");
678             if( p_vpar->p_fifo->b_die || p_vpar->p_fifo->b_error )
679             {
680                 return;
681             }
682             msleep( VPAR_OUTMEM_SLEEP );
683         }
684
685         /* Initialize values. */
686         vpar_SynchroDecode( p_vpar, p_vpar->picture.i_coding_type, i_structure );
687         P_picture->i_aspect_ratio = p_vpar->sequence.i_aspect_ratio;
688         P_picture->i_matrix_coefficients = p_vpar->sequence.i_matrix_coefficients;
689         p_vpar->picture.i_l_stride = ( p_vpar->sequence.i_width
690                     << ( 1 - p_vpar->picture.b_frame_structure ) );
691         p_vpar->picture.i_c_stride = ( p_vpar->sequence.i_chroma_width
692                     << ( 1 - p_vpar->picture.b_frame_structure ));
693
694         P_picture->i_deccount = p_vpar->sequence.i_mb_size;
695 #ifdef VDEC_SMP
696         memset( p_vpar->picture.pp_mb, 0, MAX_MB*sizeof(macroblock_t *) );
697 #endif
698 /* FIXME ! remove asap ?? */
699 //memset( P_picture->p_data, 0, (p_vpar->sequence.i_mb_size*384));
700
701         /* Update the reference pointers. */
702         ReferenceUpdate( p_vpar, p_vpar->picture.i_coding_type, P_picture );
703
704 #ifdef VDEC_SMP
705         /* Link referenced pictures for the decoder
706          * They are unlinked in vpar_ReleaseMacroblock() & vpar_DestroyMacroblock() */
707         if( p_vpar->picture.i_coding_type == P_CODING_TYPE ||
708             p_vpar->picture.i_coding_type == B_CODING_TYPE )
709         {
710             vout_LinkPicture( p_vpar->p_vout, p_vpar->sequence.p_forward );
711         }
712         if( p_vpar->picture.i_coding_type == B_CODING_TYPE )
713         {
714             vout_LinkPicture( p_vpar->p_vout, p_vpar->sequence.p_backward );
715         }
716 #endif
717     }
718     p_vpar->picture.i_current_structure |= i_structure;
719     p_vpar->picture.i_structure = i_structure;
720
721     /* Initialize picture data for decoding. */
722     if( i_structure == BOTTOM_FIELD )
723     {
724         i_mb_base = p_vpar->sequence.i_mb_size >> 1;
725         p_vpar->mb.i_l_y = 1;
726         p_vpar->mb.i_c_y = 1;
727     }
728     else
729     {
730         i_mb_base = 0;
731         p_vpar->mb.i_l_y = p_vpar->mb.i_c_y = 0;
732     }
733     p_vpar->mb.i_l_x = p_vpar->mb.i_c_x = 0;
734
735     /* Extension and User data. */
736     ExtensionAndUserData( p_vpar );
737
738     /* This is an MP@ML decoder, please note that neither of the following
739      * assertions can be true :
740      *   p_vpar->sequence.i_chroma_format != CHROMA_420
741      *   p_vpar->sequence.i_height > 2800
742      *   p_vpar->sequence.i_scalable_mode == SC_DP
743      * Be cautious if you try to use the decoder for other profiles and
744      * levels.
745      */
746     if( p_vpar->sequence.b_mpeg2 )
747     {
748         static f_picture_data_t ppf_picture_data[4][4] =
749         {
750             {
751                 NULL, NULL, NULL, NULL
752             },
753             {
754                 /* TOP_FIELD */
755 #if (VPAR_OPTIM_LEVEL > 1)
756                 NULL, vpar_PictureData2IT, vpar_PictureData2PT,
757                 vpar_PictureData2BT
758 #else
759                 NULL, vpar_PictureDataGENERIC, vpar_PictureDataGENERIC,
760                 vpar_PictureDataGENERIC
761 #endif
762             },
763             {
764                 /* BOTTOM_FIELD */
765 #if (VPAR_OPTIM_LEVEL > 1)
766                 NULL, vpar_PictureData2IB, vpar_PictureData2PB,
767                 vpar_PictureData2BB
768 #else
769                 NULL, vpar_PictureDataGENERIC, vpar_PictureDataGENERIC,
770                 vpar_PictureDataGENERIC
771 #endif
772             },
773             {
774                 /* FRAME_PICTURE */
775 #if (VPAR_OPTIM_LEVEL > 0)
776                 NULL, vpar_PictureData2IF, vpar_PictureData2PF,
777                 vpar_PictureData2BF
778 #else
779                 NULL, vpar_PictureDataGENERIC, vpar_PictureDataGENERIC,
780                 vpar_PictureDataGENERIC
781 #endif
782             }
783         };
784
785         ppf_picture_data[p_vpar->picture.i_structure]
786                         [p_vpar->picture.i_coding_type]( p_vpar, i_mb_base );
787     }
788     else
789     {
790 #if (VPAR_OPTIM_LEVEL > 0)
791         static f_picture_data_t pf_picture_data[5] =
792         { NULL, vpar_PictureData1I, vpar_PictureData1P, vpar_PictureData1B,
793           vpar_PictureData1D };
794
795         pf_picture_data[p_vpar->picture.i_coding_type]( p_vpar, i_mb_base );
796 #else
797         vpar_PictureDataGENERIC( p_vpar, i_mb_base );
798 #endif
799     }
800
801     if( p_vpar->p_fifo->b_die || p_vpar->p_fifo->b_error )
802     {
803         return;
804     }
805
806     if( p_vpar->picture.b_error )
807     {
808         /* Trash picture. */
809 #ifdef VDEC_SMP
810         for( i_mb = 1; p_vpar->picture.pp_mb[i_mb] != NULL; i_mb++ )
811         {
812             vpar_DestroyMacroblock( &p_vpar->vfifo, p_vpar->picture.pp_mb[i_mb] );
813         }
814 #endif
815
816 #ifdef STATS
817         p_vpar->pc_malformed_pictures[p_vpar->picture.i_coding_type]++;
818 #endif
819
820         if( P_picture->i_deccount != 1 )
821         {
822             vpar_SynchroEnd( p_vpar, 1 );
823             vout_DestroyPicture( p_vpar->p_vout, P_picture );
824         }
825
826         ReferenceReplace( p_vpar, p_vpar->picture.i_coding_type, NULL );
827
828         /* Prepare context for the next picture. */
829         P_picture = NULL;
830         if( p_vpar->picture.i_current_structure == FRAME_STRUCTURE )
831             p_vpar->picture.i_current_structure = 0;
832     }
833     else if( p_vpar->picture.i_current_structure == FRAME_STRUCTURE )
834     {
835         /* Frame completely parsed. */
836 #ifdef VDEC_SMP
837         for( i_mb = 1; p_vpar->picture.pp_mb[i_mb] != NULL; i_mb++ )
838         {
839             vpar_DecodeMacroblock( &p_vpar->vfifo, p_vpar->picture.pp_mb[i_mb] );
840         }
841
842         /* Send signal to the video_decoder. */
843         vlc_mutex_lock( &p_vpar->vfifo.lock );
844         vlc_cond_signal( &p_vpar->vfifo.wait );
845         vlc_mutex_unlock( &p_vpar->vfifo.lock );
846 #endif
847
848         /* Prepare context for the next picture. */
849         P_picture = NULL;
850         p_vpar->picture.i_current_structure = 0;
851     }
852 #undef P_picture
853 }
854
855 /*****************************************************************************
856  * ExtensionAndUserData : Parse the extension_and_user_data structure
857  *****************************************************************************/
858 static void ExtensionAndUserData( vpar_thread_t * p_vpar )
859 {
860     while( !p_vpar->p_fifo->b_die )
861     {
862         NextStartCode( &p_vpar->bit_stream );
863         switch( ShowBits( &p_vpar->bit_stream, 32 ) )
864         {
865         case EXTENSION_START_CODE:
866             RemoveBits32( &p_vpar->bit_stream );
867             switch( GetBits( &p_vpar->bit_stream, 4 ) )
868             {
869             case SEQUENCE_DISPLAY_EXTENSION_ID:
870                 SequenceDisplayExtension( p_vpar );
871                 break;
872             case QUANT_MATRIX_EXTENSION_ID:
873                 QuantMatrixExtension( p_vpar );
874                 break;
875             case SEQUENCE_SCALABLE_EXTENSION_ID:
876                 SequenceScalableExtension( p_vpar );
877                 break;
878             case PICTURE_DISPLAY_EXTENSION_ID:
879                 PictureDisplayExtension( p_vpar );
880                 break;
881             case PICTURE_SPATIAL_SCALABLE_EXTENSION_ID:
882                 PictureSpatialScalableExtension( p_vpar );
883                 break;
884             case PICTURE_TEMPORAL_SCALABLE_EXTENSION_ID:
885                 PictureTemporalScalableExtension( p_vpar );
886                 break;
887             case COPYRIGHT_EXTENSION_ID:
888                 CopyrightExtension( p_vpar );
889                 break;
890             default:
891             }
892             break;
893
894         case USER_DATA_START_CODE:
895             RemoveBits32( &p_vpar->bit_stream );
896             /* Wait for the next start code */
897             break;
898
899         default:
900             return;
901         }
902     }
903 }
904
905
906 /*****************************************************************************
907  * SequenceDisplayExtension : Parse the sequence_display_extension structure *
908  *****************************************************************************/
909
910 static void SequenceDisplayExtension( vpar_thread_t * p_vpar )
911 {
912     /* We don't care sequence_display_extension. */
913     /* video_format */
914     RemoveBits( &p_vpar->bit_stream, 3 );
915     if( GetBits( &p_vpar->bit_stream, 1 ) )
916     {
917         /* Two bytes for color_desciption */
918         RemoveBits( &p_vpar->bit_stream, 16 );
919         p_vpar->sequence.i_matrix_coefficients = GetBits( &p_vpar->bit_stream, 8 );
920     }
921     /* display_horizontal and vertical_size and a marker_bit */
922     RemoveBits( &p_vpar->bit_stream, 29 );
923 }
924
925
926 /*****************************************************************************
927  * QuantMatrixExtension : Load quantization matrices for luminance           *
928  *                        and chrominance                                    *
929  *****************************************************************************/
930
931 static void QuantMatrixExtension( vpar_thread_t * p_vpar )
932 {
933     if( GetBits( &p_vpar->bit_stream, 1 ) )
934     {
935         /* Load intra_quantiser_matrix for luminance. */
936         LoadMatrix( p_vpar, &p_vpar->sequence.intra_quant );
937     }
938     else
939     {
940         /* Use the default matrix. */
941         LinkMatrix( &p_vpar->sequence.intra_quant,
942                     p_vpar->pi_default_intra_quant );
943     }
944     if( GetBits( &p_vpar->bit_stream, 1 ) )
945     {
946         /* Load non_intra_quantiser_matrix for luminance. */
947         LoadMatrix( p_vpar, &p_vpar->sequence.nonintra_quant );
948     }
949     else
950     {
951         /* Use the default matrix. */
952         LinkMatrix( &p_vpar->sequence.nonintra_quant,
953                     p_vpar->pi_default_nonintra_quant );
954     }
955     if( GetBits( &p_vpar->bit_stream, 1 ) )
956     {
957         /* Load intra_quantiser_matrix for chrominance. */
958         LoadMatrix( p_vpar, &p_vpar->sequence.chroma_intra_quant );
959     }
960     else
961     {
962         /* Link the chrominance intra matrix to the luminance one. */
963         LinkMatrix( &p_vpar->sequence.chroma_intra_quant,
964                     p_vpar->sequence.intra_quant.pi_matrix );
965     }
966     if( GetBits( &p_vpar->bit_stream, 1 ) )
967     {
968         /* Load non_intra_quantiser_matrix for chrominance. */
969         LoadMatrix( p_vpar, &p_vpar->sequence.chroma_nonintra_quant );
970     }
971     else
972     {
973         /* Link the chrominance intra matrix to the luminance one. */
974         LinkMatrix( &p_vpar->sequence.chroma_intra_quant,
975                     p_vpar->sequence.intra_quant.pi_matrix );
976     }
977     if( GetBits( &p_vpar->bit_stream, 1 ) )
978     {
979         /* Load non_intra_quantiser_matrix for chrominance. */
980         LoadMatrix( p_vpar, &p_vpar->sequence.chroma_nonintra_quant );
981     }
982     else
983     {
984         /* Link the chrominance nonintra matrix to the luminance one. */
985         LinkMatrix( &p_vpar->sequence.chroma_nonintra_quant,
986                     p_vpar->sequence.nonintra_quant.pi_matrix );
987     }
988 }
989
990
991 /*****************************************************************************
992  * SequenceScalableExtension : Parse the sequence_scalable_extension         *
993  *                             structure to handle scalable coding           *
994  *****************************************************************************/
995
996 static void SequenceScalableExtension( vpar_thread_t * p_vpar )
997 {
998     /* We don't care about anything scalable except the scalable mode. */
999     switch( p_vpar->sequence.i_scalable_mode = GetBits( &p_vpar->bit_stream, 2 ) )
1000     /* The length of the structure depends on the value of the scalable_mode */
1001     {
1002         case 1:
1003             RemoveBits32( &p_vpar->bit_stream );
1004             RemoveBits( &p_vpar->bit_stream, 21 );
1005             break;
1006         case 2:
1007             RemoveBits( &p_vpar->bit_stream, 12 );
1008             break;
1009         default:
1010             RemoveBits( &p_vpar->bit_stream, 4 );
1011     }
1012
1013 }
1014 /*****************************************************************************
1015  * PictureDisplayExtension : Parse the picture_display_extension structure   *
1016  *****************************************************************************/
1017
1018 static void PictureDisplayExtension( vpar_thread_t * p_vpar )
1019 {
1020     /* Number of frame center offset */
1021     int i_nb, i_dummy;
1022     /* I am not sure it works but it should
1023         (fewer tests than shown in §6.3.12) */
1024     i_nb = p_vpar->sequence.b_progressive ? p_vpar->sequence.b_progressive +
1025                                             p_vpar->picture.b_repeat_first_field +
1026                                             p_vpar->picture.b_top_field_first
1027                            : ( p_vpar->picture.b_frame_structure + 1 ) +
1028                              p_vpar->picture.b_repeat_first_field;
1029     for( i_dummy = 0; i_dummy < i_nb; i_dummy++ )
1030     {
1031         RemoveBits( &p_vpar->bit_stream, 17 );
1032         RemoveBits( &p_vpar->bit_stream, 17 );
1033     }
1034 }
1035
1036
1037 /*****************************************************************************
1038  * PictureSpatialScalableExtension                                           *
1039  *****************************************************************************/
1040
1041 static void PictureSpatialScalableExtension( vpar_thread_t * p_vpar )
1042 {
1043     /* That's scalable, so we trash it */
1044     RemoveBits32( &p_vpar->bit_stream );
1045     RemoveBits( &p_vpar->bit_stream, 16 );
1046 }
1047
1048
1049 /*****************************************************************************
1050  * PictureTemporalScalableExtension                                          *
1051  *****************************************************************************/
1052
1053 static void PictureTemporalScalableExtension( vpar_thread_t * p_vpar )
1054 {
1055     /* Scalable again, trashed again */
1056     RemoveBits( &p_vpar->bit_stream, 23 );
1057 }
1058
1059
1060 /*****************************************************************************
1061  * CopyrightExtension : Keeps some legal informations                        *
1062  *****************************************************************************/
1063
1064 static void CopyrightExtension( vpar_thread_t * p_vpar )
1065 {
1066     u32     i_copyright_nb_1, i_copyright_nb_2; /* local integers */
1067     p_vpar->sequence.b_copyright_flag = GetBits( &p_vpar->bit_stream, 1 );
1068         /* A flag that says whether the copyright information is significant */
1069     p_vpar->sequence.i_copyright_id = GetBits( &p_vpar->bit_stream, 8 );
1070         /* An identifier compliant with ISO/CEI JTC 1/SC 29 */
1071     p_vpar->sequence.b_original = GetBits( &p_vpar->bit_stream, 1 );
1072         /* Reserved bits */
1073     RemoveBits( &p_vpar->bit_stream, 8 );
1074         /* The copyright_number is split in three parts */
1075         /* first part */
1076     i_copyright_nb_1 = GetBits( &p_vpar->bit_stream, 20 );
1077     RemoveBits( &p_vpar->bit_stream, 1 );
1078         /* second part */
1079     i_copyright_nb_2 = GetBits( &p_vpar->bit_stream, 22 );
1080     RemoveBits( &p_vpar->bit_stream, 1 );
1081         /* third part and sum */
1082     p_vpar->sequence.i_copyright_nb = ( (u64)i_copyright_nb_1 << 44 ) |
1083                                       ( (u64)i_copyright_nb_2 << 22 ) |
1084                                       ( (u64)GetBits( &p_vpar->bit_stream, 22 ) );
1085 }