]> git.sesse.net Git - vlc/blob - include/input_ext-dec.h
* Fixed a warning in input_es.c ;
[vlc] / include / input_ext-dec.h
1 /*****************************************************************************
2  * input_ext-dec.h: structures exported to the VideoLAN decoders
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 VideoLAN
5  * $Id: input_ext-dec.h,v 1.35 2001/09/24 11:17:49 massiot Exp $
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
8  *          Michel Kaempf <maxx@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 /* Structures exported to the decoders */
26
27 /*****************************************************************************
28  * data_packet_t
29  *****************************************************************************
30  * Describe a data packet.
31  *****************************************************************************/
32 typedef struct data_packet_s
33 {
34     /* Nothing before this line, the code relies on that */
35     byte_t *                p_buffer;                     /* raw data packet */
36     long                    l_size;                           /* buffer size */
37
38     /* Decoders information */
39     byte_t *                p_payload_start;
40                                   /* start of the PES payload in this packet */
41     byte_t *                p_payload_end;                    /* guess ? :-) */
42     boolean_t               b_discard_payload;  /* is the packet messed up ? */
43
44     int *                   pi_refcount;
45
46     /* Used to chain the TS packets that carry data for a same PES or PSI */
47     struct data_packet_s *  p_next;
48 } data_packet_t;
49
50 /*****************************************************************************
51  * pes_packet_t
52  *****************************************************************************
53  * Describes an PES packet, with its properties, and pointers to the TS packets
54  * containing it.
55  *****************************************************************************/
56 typedef struct pes_packet_s
57 {
58     /* PES properties */
59     boolean_t               b_data_alignment;  /* used to find the beginning of
60                                                 * a video or audio unit      */
61     boolean_t               b_discontinuity; /* This packet doesn't follow the
62                                               * previous one                 */
63
64     mtime_t                 i_pts;    /* PTS for this packet (zero if unset) */
65     mtime_t                 i_dts;    /* DTS for this packet (zero if unset) */
66     int                     i_rate;                /* current pace of reading
67                                                     * (see stream_control.h) */
68
69     int                     i_pes_size;    /* size of the current PES packet */
70
71     /* Pointers to packets (packets are then linked by the p_prev and
72        p_next fields of the data_packet_t struct) */
73     data_packet_t *         p_first;      /* The first packet contained by this
74                                            * PES (used by decoders). */
75 } pes_packet_t;
76
77 /*****************************************************************************
78  * decoder_fifo_t
79  *****************************************************************************
80  * This rotative FIFO contains PES packets that are to be decoded.
81  *****************************************************************************/
82 typedef struct decoder_fifo_s
83 {
84     /* Thread structures */
85     vlc_mutex_t             data_lock;                     /* fifo data lock */
86     vlc_cond_t              data_wait;     /* fifo data conditional variable */
87
88     /* Data */
89     pes_packet_t *          buffer[FIFO_SIZE + 1];
90     int                     i_start;
91     int                     i_end;
92
93     /* Communication interface between input and decoders */
94     boolean_t               b_die;          /* the decoder should return now */
95     boolean_t               b_error;      /* the decoder is in an error loop */
96     void *                  p_packets_mgt;   /* packets management services
97                                               * data (netlist...)            */
98     void                 (* pf_delete_pes)( void *, pes_packet_t * );
99                                      /* function to use when releasing a PES */
100 } decoder_fifo_t;
101
102 /* Macros to manage a decoder_fifo_t structure. Please remember to take
103  * data_lock before using them. */
104 #define DECODER_FIFO_ISEMPTY( fifo )  ( (fifo).i_start == (fifo).i_end )
105 #define DECODER_FIFO_ISFULL( fifo )   ( ( ((fifo).i_end + 1 - (fifo).i_start)\
106                                           & FIFO_SIZE ) == 0 )
107 #define DECODER_FIFO_START( fifo )    ( (fifo).buffer[ (fifo).i_start ] )
108 #define DECODER_FIFO_INCSTART( fifo ) ( (fifo).i_start = ((fifo).i_start + 1)\
109                                                          & FIFO_SIZE )
110 #define DECODER_FIFO_END( fifo )      ( (fifo).buffer[ (fifo).i_end ] )
111 #define DECODER_FIFO_INCEND( fifo )   ( (fifo).i_end = ((fifo).i_end + 1) \
112                                                        & FIFO_SIZE )
113
114 /*****************************************************************************
115  * bit_fifo_t : bit fifo descriptor
116  *****************************************************************************
117  * This type describes a bit fifo used to store bits while working with the
118  * input stream at the bit level.
119  *****************************************************************************/
120 typedef u32         WORD_TYPE;
121
122 typedef struct bit_fifo_s
123 {
124     /* This unsigned integer allows us to work at the bit level. This buffer
125      * can contain 32 bits, and the used space can be found on the MSb's side
126      * and the available space on the LSb's side. */
127     WORD_TYPE           buffer;
128
129     /* Number of bits available in the bit buffer */
130     int                 i_available;
131
132 } bit_fifo_t;
133
134 /*****************************************************************************
135  * bit_stream_t : bit stream descriptor
136  *****************************************************************************
137  * This type, based on a PES stream, includes all the structures needed to
138  * handle the input stream like a bit stream.
139  *****************************************************************************/
140 typedef struct bit_stream_s
141 {
142     /*
143      * Bit structures
144      */
145     bit_fifo_t              fifo;
146
147     /*
148      * Input structures
149      */
150     /* The decoder fifo contains the data of the PES stream */
151     decoder_fifo_t *        p_decoder_fifo;
152
153     /* Function to jump to the next data packet */
154     void                 (* pf_next_data_packet)( struct bit_stream_s * );
155
156     /* Callback to the decoder used when changing data packets ; set
157      * to NULL if your decoder doesn't need it. */
158     void                 (* pf_bitstream_callback)( struct bit_stream_s *,
159                                                     boolean_t b_new_pes );
160     /* Optional argument to the callback */
161     void *                  p_callback_arg;
162
163     /*
164      * Byte structures
165      */
166     /* Current data packet (in the current PES packet of the PES stream) */
167     data_packet_t *         p_data;
168     /* Pointer to the next byte that is to be read (in the current packet) */
169     byte_t *                p_byte;
170     /* Pointer to the last byte that is to be read (in the current packet */
171     byte_t *                p_end;
172     /* Temporary buffer in case we're not aligned when changing data packets */
173     WORD_TYPE               i_showbits_buffer;
174     data_packet_t           showbits_data;
175 } bit_stream_t;
176
177 /*****************************************************************************
178  * Inline functions used by the decoders to read bit_stream_t
179  *****************************************************************************/
180
181 /*
182  * DISCUSSION : How to use the bit_stream structures
183  *
184  * sizeof(WORD_TYPE) (usually 32) bits are read at the same time, thus
185  * minimizing the number of p_byte changes.
186  * Bits are read via GetBits() or ShowBits.
187  *
188  * XXX : Be aware that if, in the forthcoming functions, i_bits > 24,
189  * the data have to be already aligned on an 8-bit boundary, or wrong
190  * results will be returned. Use RealignBits() if unsure.
191  */
192
193 #if (WORD_TYPE == u32)
194 #   define WORD_AT      U32_AT
195 #   define WORD_SIGNED  s32
196 #elif (WORD_TYPE == u64)
197 #   define WORD_AT      U64_AT
198 #   define WORD_SIGNED  s64
199 #else
200 #   error Unsupported WORD_TYPE
201 #endif
202
203 /*****************************************************************************
204  * Protoypes from input_ext-dec.c
205  *****************************************************************************/
206 void UnalignedShowBits( struct bit_stream_s *, unsigned int );
207 void UnalignedRemoveBits( struct bit_stream_s * );
208 u32  UnalignedGetBits( struct bit_stream_s *, unsigned int );
209
210 /*****************************************************************************
211  * AlignWord : fill in the bit buffer so that the byte pointer be aligned
212  * on a word boundary (XXX: there must be at least sizeof(WORD_TYPE) - 1
213  * empty bytes in the bit buffer)
214  *****************************************************************************/
215 static __inline__ void AlignWord( bit_stream_t * p_bit_stream )
216 {
217     while( (ptrdiff_t)p_bit_stream->p_byte
218              & (sizeof(WORD_TYPE) - 1) )
219     {
220         if( p_bit_stream->p_byte < p_bit_stream->p_end )
221         {
222             p_bit_stream->fifo.buffer |= *(p_bit_stream->p_byte++)
223                 << (8 * sizeof(WORD_TYPE) - 8
224                      - p_bit_stream->fifo.i_available);
225             p_bit_stream->fifo.i_available += 8;
226         }
227         else
228         {
229             p_bit_stream->pf_next_data_packet( p_bit_stream );
230             p_bit_stream->fifo.buffer |= *(p_bit_stream->p_byte++)
231                 << (8 * sizeof(WORD_TYPE) - 8
232                      - p_bit_stream->fifo.i_available);
233             p_bit_stream->fifo.i_available += 8;
234         }
235     }
236 }
237
238 /*****************************************************************************
239  * ShowBits : return i_bits bits from the bit stream
240  *****************************************************************************/
241 static __inline__ u32 ShowBits( bit_stream_t * p_bit_stream,
242                                 unsigned int i_bits )
243 {
244     if( p_bit_stream->fifo.i_available >= i_bits )
245     {
246         return( p_bit_stream->fifo.buffer >> (8 * sizeof(WORD_TYPE) - i_bits) );
247     }
248
249     if( p_bit_stream->p_byte <= p_bit_stream->p_end - sizeof(WORD_TYPE) )
250     {
251         return( (p_bit_stream->fifo.buffer |
252                     (WORD_AT( p_bit_stream->p_byte )
253                         >> p_bit_stream->fifo.i_available))
254                     >> (8 * sizeof(WORD_TYPE) - i_bits) );
255     }
256
257     UnalignedShowBits( p_bit_stream, i_bits );
258
259     /* Now that we have filled in the buffers, do it again. Can't call
260      * ShowBits() instead, because the function is inline... */
261     if( p_bit_stream->fifo.i_available >= i_bits )
262     {
263         return( p_bit_stream->fifo.buffer >> (8 * sizeof(WORD_TYPE) - i_bits) );
264     }
265
266     return( (p_bit_stream->fifo.buffer |
267                 (WORD_AT( p_bit_stream->p_byte )
268                     >> p_bit_stream->fifo.i_available))
269                 >> (8 * sizeof(WORD_TYPE) - i_bits) );
270 }
271
272 /*****************************************************************************
273  * ShowSignedBits : return i_bits bits from the bit stream, using signed
274  *                  arithmetic
275  *****************************************************************************/
276 static __inline__ s32 ShowSignedBits( bit_stream_t * p_bit_stream,
277                                       unsigned int i_bits )
278 {
279     if( p_bit_stream->fifo.i_available >= i_bits )
280     {
281         return( (WORD_SIGNED)p_bit_stream->fifo.buffer
282                     >> (8 * sizeof(WORD_TYPE) - i_bits) );
283     }
284
285     /* You can probably do something a little faster, but now I'm tired. */
286     return( (WORD_SIGNED)(ShowBits( p_bit_stream, i_bits ) << (32 - i_bits))
287              >> (32 - i_bits) );
288 }
289
290 /*****************************************************************************
291  * RemoveBits : removes i_bits bits from the bit buffer
292  *              XXX: do not use for 32 bits, see RemoveBits32
293  *****************************************************************************/
294 static __inline__ void RemoveBits( bit_stream_t * p_bit_stream,
295                                    unsigned int i_bits )
296 {
297     p_bit_stream->fifo.i_available -= i_bits;
298
299     if( p_bit_stream->fifo.i_available >= 0 )
300     {
301         p_bit_stream->fifo.buffer <<= i_bits;
302         return;
303     }
304
305     if( p_bit_stream->p_byte <= p_bit_stream->p_end - sizeof(WORD_TYPE) )
306     {
307         p_bit_stream->fifo.buffer = WORD_AT( p_bit_stream->p_byte )
308                                         << ( -p_bit_stream->fifo.i_available );
309         ((WORD_TYPE *)p_bit_stream->p_byte)++;
310         p_bit_stream->fifo.i_available += sizeof(WORD_TYPE) * 8;
311         return;
312     }
313
314     UnalignedRemoveBits( p_bit_stream );
315 }
316
317 /*****************************************************************************
318  * RemoveBits32 : removes 32 bits from the bit buffer (and as a side effect,
319  *                refill it)
320  *****************************************************************************/
321 #if (WORD_TYPE == u32)
322 static __inline__ void RemoveBits32( bit_stream_t * p_bit_stream )
323 {
324     if( p_bit_stream->p_byte <= p_bit_stream->p_end - sizeof(WORD_TYPE) )
325     {
326         if( p_bit_stream->fifo.i_available )
327         {
328             p_bit_stream->fifo.buffer = WORD_AT( p_bit_stream->p_byte )
329                             << (32 - p_bit_stream->fifo.i_available);
330             ((WORD_TYPE *)p_bit_stream->p_byte)++;
331             return;
332         }
333
334         ((WORD_TYPE *)p_bit_stream->p_byte)++;
335         return;
336     }
337
338     p_bit_stream->fifo.i_available -= 32;
339     UnalignedRemoveBits( p_bit_stream );
340 }
341 #else
342 #   define RemoveBits32( p_bit_stream )     RemoveBits( p_bit_stream, 32 )
343 #endif
344
345 /*****************************************************************************
346  * GetBits : returns i_bits bits from the bit stream and removes them
347  *           XXX: do not use for 32 bits, see GetBits32
348  *****************************************************************************/
349 static __inline__ u32 GetBits( bit_stream_t * p_bit_stream,
350                                unsigned int i_bits )
351 {
352     u32             i_result;
353
354     p_bit_stream->fifo.i_available -= i_bits;
355
356     if( p_bit_stream->fifo.i_available >= 0 )
357     {
358         i_result = p_bit_stream->fifo.buffer
359                         >> (8 * sizeof(WORD_TYPE) - i_bits);
360         p_bit_stream->fifo.buffer <<= i_bits;
361         return( i_result );
362     }
363
364     if( p_bit_stream->p_byte <= p_bit_stream->p_end - sizeof(WORD_TYPE) )
365     {
366         i_result = p_bit_stream->fifo.buffer
367                         >> (8 * sizeof(WORD_TYPE) - i_bits);
368         p_bit_stream->fifo.buffer = WORD_AT( p_bit_stream->p_byte );
369         ((WORD_TYPE *)p_bit_stream->p_byte)++;
370         i_result |= p_bit_stream->fifo.buffer
371                         >> (8 * sizeof(WORD_TYPE)
372                                      + p_bit_stream->fifo.i_available);
373         p_bit_stream->fifo.buffer <<= ( -p_bit_stream->fifo.i_available );
374         p_bit_stream->fifo.i_available += sizeof(WORD_TYPE) * 8;
375         return( i_result );
376     }
377
378     return UnalignedGetBits( p_bit_stream, i_bits );
379 }
380
381 /*****************************************************************************
382  * GetSignedBits : returns i_bits bits from the bit stream and removes them,
383  *                 using signed arithmetic
384  *                 XXX: do not use for 32 bits
385  *****************************************************************************/
386 static __inline__ s32 GetSignedBits( bit_stream_t * p_bit_stream,
387                                      unsigned int i_bits )
388 {
389     if( p_bit_stream->fifo.i_available >= i_bits )
390     {
391         s32             i_result;
392
393         p_bit_stream->fifo.i_available -= i_bits;
394         i_result = (WORD_SIGNED)p_bit_stream->fifo.buffer
395                         >> (8 * sizeof(WORD_TYPE) - i_bits);
396         p_bit_stream->fifo.buffer <<= i_bits;
397         return( i_result );
398     }
399
400     /* You can probably do something a little faster, but now I'm tired. */
401     return( (WORD_SIGNED)(GetBits( p_bit_stream, i_bits ) << (32 - i_bits))
402              >> (32 - i_bits) );
403 }
404
405 /*****************************************************************************
406  * GetBits32 : returns 32 bits from the bit stream and removes them
407  *****************************************************************************/
408 #if (WORD_TYPE == u32)
409 static __inline__ u32 GetBits32( bit_stream_t * p_bit_stream )
410 {
411     u32             i_result;
412
413     if( p_bit_stream->fifo.i_available == 32 )
414     {
415         p_bit_stream->fifo.i_available = 0;
416         i_result = p_bit_stream->fifo.buffer;
417         p_bit_stream->fifo.buffer = 0;
418         return( i_result );
419     }
420
421     if( p_bit_stream->p_byte <= p_bit_stream->p_end - sizeof(WORD_TYPE) )
422     {
423         if( p_bit_stream->fifo.i_available )
424         {
425             i_result = p_bit_stream->fifo.buffer;
426             p_bit_stream->fifo.buffer = WORD_AT( p_bit_stream->p_byte );
427             ((WORD_TYPE *)p_bit_stream->p_byte)++;
428             i_result |= p_bit_stream->fifo.buffer
429                              >> (p_bit_stream->fifo.i_available);
430             p_bit_stream->fifo.buffer <<= (32 - p_bit_stream->fifo.i_available);
431             return( i_result );
432         }
433
434         i_result = WORD_AT( p_bit_stream->p_byte );
435         ((WORD_TYPE *)p_bit_stream->p_byte)++;
436         return( i_result );
437     }
438
439     p_bit_stream->fifo.i_available -= 32;
440     return UnalignedGetBits( p_bit_stream, 32 );
441 }
442 #else
443 #   define GetBits32( p_bit_stream )    GetBits( p_bit_stream, 32 )
444 #endif
445
446 /*****************************************************************************
447  * RealignBits : realigns the bit buffer on an 8-bit boundary
448  *****************************************************************************/
449 static __inline__ void RealignBits( bit_stream_t * p_bit_stream )
450 {
451     p_bit_stream->fifo.buffer <<= (p_bit_stream->fifo.i_available & 0x7);
452     p_bit_stream->fifo.i_available &= ~0x7;
453 }
454
455
456 /*****************************************************************************
457  * GetChunk : reads a large chunk of data
458  *****************************************************************************
459  * The position in the stream must be byte-aligned, if unsure call
460  * RealignBits(). p_buffer must point to a buffer at least as big as i_buf_len
461  * otherwise your code will crash.
462  *****************************************************************************/
463 static __inline__ void GetChunk( bit_stream_t * p_bit_stream,
464                                  byte_t * p_buffer, size_t i_buf_len )
465 {
466     ptrdiff_t           i_available;
467
468     /* We need to take care because i_buf_len may be < 4. */
469     while( p_bit_stream->fifo.i_available > 0 && i_buf_len )
470     {
471         *p_buffer = p_bit_stream->fifo.buffer >> (8 * sizeof(WORD_TYPE) - 8);
472         p_buffer++;
473         i_buf_len--;
474         p_bit_stream->fifo.buffer <<= 8;
475         p_bit_stream->fifo.i_available -= 8;
476     }
477
478     if( (i_available = p_bit_stream->p_end - p_bit_stream->p_byte)
479             >= i_buf_len )
480     {
481         memcpy( p_buffer, p_bit_stream->p_byte, i_buf_len );
482         p_bit_stream->p_byte += i_buf_len;
483     }
484     else
485     {
486         do
487         {
488             memcpy( p_buffer, p_bit_stream->p_byte, i_available );
489             p_bit_stream->p_byte = p_bit_stream->p_end;
490             p_buffer += i_available;
491             i_buf_len -= i_available;
492             p_bit_stream->pf_next_data_packet( p_bit_stream );
493         }
494         while( (i_available = p_bit_stream->p_end - p_bit_stream->p_byte)
495                 <= i_buf_len && !p_bit_stream->p_decoder_fifo->b_die );
496
497         if( i_buf_len )
498         {
499             memcpy( p_buffer, p_bit_stream->p_byte, i_buf_len );
500             p_bit_stream->p_byte += i_buf_len;
501         }
502     }
503
504     if( p_bit_stream->p_byte <= p_bit_stream->p_end - sizeof(WORD_TYPE) )
505     {
506         AlignWord( p_bit_stream );
507     }
508 }
509
510
511 /*
512  * The following functions are now deprecated.
513  */
514
515 static __inline__ byte_t _GetByte( bit_stream_t * p_bit_stream )
516 {
517     if ( p_bit_stream->p_byte >= p_bit_stream->p_end )
518     {
519         p_bit_stream->pf_next_data_packet( p_bit_stream );
520     }
521
522     return( *(p_bit_stream->p_byte++) );
523 }
524
525 static __inline__ void NeedBits( bit_stream_t * p_bit_stream, int i_bits )
526 {
527     while ( p_bit_stream->fifo.i_available < i_bits )
528     {
529         p_bit_stream->fifo.buffer |= ((WORD_TYPE)_GetByte( p_bit_stream ))
530                                      << (8 * sizeof(WORD_TYPE) - 8
531                                             - p_bit_stream->fifo.i_available);
532         p_bit_stream->fifo.i_available += 8;
533     }
534 }
535
536 static __inline__ void DumpBits( bit_stream_t * p_bit_stream, int i_bits )
537 {
538     p_bit_stream->fifo.buffer <<= i_bits;
539     p_bit_stream->fifo.i_available -= i_bits;
540 }
541
542
543 /*
544  * Communication interface between input and decoders
545  */
546
547 /*****************************************************************************
548  * decoder_config_t
549  *****************************************************************************
550  * Standard pointers given to the decoders as a toolbox.
551  *****************************************************************************/
552 typedef struct decoder_config_s
553 {
554     u16                     i_id;
555     u8                      i_type;         /* type of the elementary stream */
556
557     struct stream_ctrl_s *  p_stream_ctrl;
558     struct decoder_fifo_s * p_decoder_fifo;
559     void                 (* pf_init_bit_stream)( struct bit_stream_s *,
560                                                  struct decoder_fifo_s *,
561                  void (* pf_bitstream_callback)( struct bit_stream_s *,
562                                                  boolean_t ),
563                                                  void * );
564 } decoder_config_t;
565
566 /*****************************************************************************
567  * vdec_config_t
568  *****************************************************************************
569  * Pointers given to video decoders threads.
570  *****************************************************************************/
571 struct vout_thread_s;
572
573 typedef struct vdec_config_s
574 {
575     struct picture_s *   (* pf_create_picture)( struct vout_thread_s *,
576                                                 int i_type, int i_width,
577                                                 int i_height );
578     void                 (* pf_destroy_picture)( struct vout_thread_s *,
579                                                  struct picture_s * );
580     void                 (* pf_display_picture)( struct vout_thread_s *,
581                                                  struct picture_s * );
582     void                 (* pf_date_picture)( struct vout_thread_s *,
583                                               struct picture_s *, mtime_t date );
584     void                 (* pf_link_picture)( struct vout_thread_s *,
585                                               struct picture_s *, mtime_t date );
586     void                 (* pf_unlink_picture)( struct vout_thread_s *,
587                                                 struct picture_s *, mtime_t date );
588     struct subpicture_s *(* pf_create_subpicture)( struct vout_thread_s *,
589                                                    int i_type, int i_size );
590     void                 (* pf_destroy_subpicture)( struct vout_thread_s *,
591                                                     struct subpicture_s * );
592     void                 (* pf_display_subpicture)( struct vout_thread_s *,
593                                                     struct subpicture_s * );
594
595     decoder_config_t        decoder_config;
596 } vdec_config_t;
597
598 /*****************************************************************************
599  * adec_config_t
600  *****************************************************************************
601  * Pointers given to audio decoders threads.
602  *****************************************************************************/
603 typedef struct adec_config_s
604 {
605     struct aout_fifo_s * (* pf_create_fifo)( struct aout_fifo_s * );
606     void                 (* pf_destroy_fifo)( void );
607
608     decoder_config_t        decoder_config;
609 } adec_config_t;
610
611
612 /*
613  * Communication interface between decoders and input
614  */
615
616 /*****************************************************************************
617  * decoder_capabilities_t
618  *****************************************************************************
619  * Structure returned by a call to GetCapabilities() of the decoder.
620  *****************************************************************************/
621 typedef struct decoder_capabilities_s
622 {
623     int                     i_dec_type;
624     u8                      i_stream_type;   /* == i_type in es_descriptor_t */
625     int                     i_weight; /* for a given stream type, the decoder
626                                        * with higher weight will be spawned  */
627
628     vlc_thread_t         (* pf_create_thread)( void * );
629 } decoder_capabilities_t;
630
631 /* Decoder types */
632 #define NONE_D              0
633 #define VIDEO_D             1
634 #define AUDIO_D             2