]> git.sesse.net Git - vlc/blob - modules/mux/mpeg/ps.c
Merge branch 1.0-bugfix
[vlc] / modules / mux / mpeg / ps.c
1 /*****************************************************************************
2  * ps.c: MPEG PS (ISO/IEC 13818-1) / MPEG SYSTEM (ISO/IEC 1172-1)
3  *       multiplexer module for vlc
4  *****************************************************************************
5  * Copyright (C) 2001, 2002 the VideoLAN team
6  * $Id$
7  *
8  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
9  *          Eric Petit <titer@videolan.org>
10  *          Gildas Bazin <gbazin@videolan.org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30
31 #ifdef HAVE_CONFIG_H
32 # include "config.h"
33 #endif
34
35 #include <vlc_common.h>
36 #include <vlc_plugin.h>
37 #include <vlc_sout.h>
38 #include <vlc_codecs.h>
39 #include <vlc_block.h>
40
41 #include "bits.h"
42 #include "pes.h"
43
44 #include <vlc_iso_lang.h>
45
46 /*****************************************************************************
47  * Module descriptor
48  *****************************************************************************/
49 #define DTS_TEXT N_("DTS delay (ms)")
50 #define DTS_LONGTEXT N_("Delay the DTS (decoding time " \
51   "stamps) and PTS (presentation timestamps) of the data in the " \
52   "stream, compared to the SCRs. This allows for some buffering inside " \
53   "the client decoder.")
54
55 #define PES_SIZE_TEXT N_("PES maximum size")
56 #define PES_SIZE_LONGTEXT N_("Set the maximum allowed PES "\
57   "size when producing the MPEG PS streams.")
58
59 static int     Open   ( vlc_object_t * );
60 static void    Close  ( vlc_object_t * );
61
62 #define SOUT_CFG_PREFIX "sout-ps-"
63
64 vlc_module_begin ()
65     set_description( N_("PS muxer") )
66     set_shortname( "MPEG-PS" )
67     set_category( CAT_SOUT )
68     set_subcategory( SUBCAT_SOUT_MUX )
69     set_capability( "sout mux", 50 )
70     add_shortcut( "ps" )
71     add_shortcut( "mpeg1" )
72     add_shortcut( "dvd" )
73     set_callbacks( Open, Close )
74
75     add_integer( SOUT_CFG_PREFIX "dts-delay", 200, NULL, DTS_TEXT,
76                  DTS_LONGTEXT, true )
77     add_integer( SOUT_CFG_PREFIX "pes-max-size", PES_PAYLOAD_SIZE_MAX, NULL,
78                  PES_SIZE_TEXT, PES_SIZE_LONGTEXT, true )
79 vlc_module_end ()
80
81 /*****************************************************************************
82  * Exported prototypes
83  *****************************************************************************/
84 static int Control  ( sout_mux_t *, int, va_list );
85 static int AddStream( sout_mux_t *, sout_input_t * );
86 static int DelStream( sout_mux_t *, sout_input_t * );
87 static int Mux      ( sout_mux_t * );
88
89 /*****************************************************************************
90  * Local prototypes
91  *****************************************************************************/
92 static int  MuxGetStream        ( sout_mux_t *, int *, mtime_t * );
93
94 static void MuxWritePackHeader  ( sout_mux_t *, block_t **, mtime_t );
95 static void MuxWriteSystemHeader( sout_mux_t *, block_t **, mtime_t );
96 static void MuxWritePSM         ( sout_mux_t *, block_t **, mtime_t );
97
98 static void StreamIdInit        ( bool *id, int i_range );
99 static int  StreamIdGet         ( bool *id, int i_id_min, int i_id_max );
100 static void StreamIdRelease     ( bool *id, int i_id_min, int i_id );
101
102 typedef struct ps_stream_s
103 {
104     int i_stream_id;
105     int i_stream_type;
106     int i_max_buff_size; /* used in system header */
107
108     /* Language is iso639-2T */
109     uint8_t lang[3];
110
111 } ps_stream_t;
112
113 struct sout_mux_sys_t
114 {
115     /* Which id are unused */
116     bool  stream_id_mpga[16]; /* 0xc0 -> 0xcf */
117     bool  stream_id_mpgv[16]; /* 0xe0 -> 0xef */
118     bool  stream_id_a52[8];   /* 0x80 -> 0x87 <- FIXME I'm not sure */
119     bool  stream_id_spu[32];  /* 0x20 -> 0x3f */
120     bool  stream_id_dts[8];   /* 0x88 -> 0x8f */
121     bool  stream_id_lpcm[16]; /* 0xa0 -> 0xaf */
122
123     int i_audio_bound;
124     int i_video_bound;
125     int i_pes_count;
126     int i_system_header;
127     int i_dts_delay;
128     int i_rate_bound; /* units of 50 bytes/second */
129  
130     int64_t i_instant_bitrate;
131     int64_t i_instant_size;
132     int64_t i_instant_dts;
133
134     bool b_mpeg2;
135
136     int i_pes_max_size;
137
138     int i_psm_version;
139     uint32_t crc32_table[256];
140 };
141
142 static const char *const ppsz_sout_options[] = {
143     "dts-delay", "pes-max-size", NULL
144 };
145
146 /*****************************************************************************
147  * Open:
148  *****************************************************************************/
149 static int Open( vlc_object_t *p_this )
150 {
151     sout_mux_t *p_mux = (sout_mux_t*)p_this;
152     sout_mux_sys_t *p_sys;
153     vlc_value_t val;
154
155     msg_Info( p_mux, "Open" );
156     config_ChainParse( p_mux, SOUT_CFG_PREFIX, ppsz_sout_options, p_mux->p_cfg );
157
158     p_mux->pf_control   = Control;
159     p_mux->pf_addstream = AddStream;
160     p_mux->pf_delstream = DelStream;
161     p_mux->pf_mux       = Mux;
162     p_mux->p_sys        = p_sys = malloc( sizeof( sout_mux_sys_t ) );
163
164     /* Init free stream id */
165     StreamIdInit( p_sys->stream_id_a52,  8  );
166     StreamIdInit( p_sys->stream_id_dts,  8  );
167     StreamIdInit( p_sys->stream_id_mpga, 16 );
168     StreamIdInit( p_sys->stream_id_mpgv, 16 );
169     StreamIdInit( p_sys->stream_id_lpcm, 16 );
170     StreamIdInit( p_sys->stream_id_spu,  32 );
171
172     p_sys->i_audio_bound   = 0;
173     p_sys->i_video_bound   = 0;
174     p_sys->i_system_header = 0;
175     p_sys->i_pes_count     = 0;
176
177     p_sys->i_psm_version   = 0;
178
179     p_sys->i_instant_bitrate  = 0;
180     p_sys->i_instant_size     = 0;
181     p_sys->i_instant_dts      = 0;
182     p_sys->i_rate_bound      = 0;
183     p_sys->b_mpeg2 = !(p_mux->psz_mux && !strcmp( p_mux->psz_mux, "mpeg1" ));
184
185     var_Get( p_mux, SOUT_CFG_PREFIX "dts-delay", &val );
186     p_sys->i_dts_delay = (int64_t)val.i_int * 1000;
187
188     var_Get( p_mux, SOUT_CFG_PREFIX "pes-max-size", &val );
189     p_sys->i_pes_max_size = (int64_t)val.i_int;
190
191     /* Initialise CRC32 table */
192     if( p_sys->b_mpeg2 )
193     {
194         uint32_t i, j, k;
195
196         for( i = 0; i < 256; i++ )
197         {
198             k = 0;
199             for( j = (i << 24) | 0x800000; j != 0x80000000; j <<= 1 )
200                 k = (k << 1) ^ (((k ^ j) & 0x80000000) ? 0x04c11db7 : 0);
201
202             p_sys->crc32_table[i] = k;
203         }
204     }
205
206     return VLC_SUCCESS;
207 }
208
209 /*****************************************************************************
210  * Close:
211  *****************************************************************************/
212 static void Close( vlc_object_t * p_this )
213 {
214     sout_mux_t      *p_mux = (sout_mux_t*)p_this;
215     sout_mux_sys_t  *p_sys = p_mux->p_sys;
216
217     block_t   *p_end;
218
219     msg_Info( p_mux, "Close" );
220
221     p_end = block_New( p_mux, 4 );
222     p_end->p_buffer[0] = 0x00; p_end->p_buffer[1] = 0x00;
223     p_end->p_buffer[2] = 0x01; p_end->p_buffer[3] = 0xb9;
224
225     sout_AccessOutWrite( p_mux->p_access, p_end );
226
227     free( p_sys );
228 }
229
230 /*****************************************************************************
231  * Control:
232  *****************************************************************************/
233 static int Control( sout_mux_t *p_mux, int i_query, va_list args )
234 {
235     VLC_UNUSED(p_mux);
236     bool *pb_bool;
237     char **ppsz;
238
239     switch( i_query )
240     {
241         case MUX_CAN_ADD_STREAM_WHILE_MUXING:
242             pb_bool = (bool*)va_arg( args, bool * );
243             *pb_bool = true;
244             return VLC_SUCCESS;
245
246         case MUX_GET_ADD_STREAM_WAIT:
247             pb_bool = (bool*)va_arg( args, bool * );
248             *pb_bool = false;
249             return VLC_SUCCESS;
250
251         case MUX_GET_MIME:
252             ppsz = (char**)va_arg( args, char ** );
253             *ppsz = strdup( "video/mpeg" );
254             return VLC_SUCCESS;
255
256         default:
257             return VLC_EGENERIC;
258     }
259 }
260
261 /*****************************************************************************
262  * AddStream:
263  *****************************************************************************/
264 static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
265 {
266     sout_mux_sys_t  *p_sys = p_mux->p_sys;
267     ps_stream_t *p_stream;
268  
269
270     msg_Dbg( p_mux, "adding input codec=%4.4s",
271              (char*)&p_input->p_fmt->i_codec );
272
273     p_input->p_sys = p_stream = malloc( sizeof( ps_stream_t ) );
274     p_stream->i_stream_type = 0x81;
275
276     /* Init this new stream */
277     switch( p_input->p_fmt->i_codec )
278     {
279         case VLC_CODEC_MPGV:
280             p_stream->i_stream_id =
281                 StreamIdGet( p_sys->stream_id_mpgv, 0xe0, 0xef );
282             p_stream->i_stream_type = 0x02; /* ISO/IEC 13818 Video */
283             break;
284         case VLC_CODEC_MP4V:
285             p_stream->i_stream_id =
286                 StreamIdGet( p_sys->stream_id_mpgv, 0xe0, 0xef );
287             p_stream->i_stream_type = 0x10;
288             break;
289         case VLC_CODEC_H264:
290             p_stream->i_stream_id =
291                 StreamIdGet( p_sys->stream_id_mpgv, 0xe0, 0xef );
292             p_stream->i_stream_type = 0x1b;
293             break;
294         case VLC_CODEC_DVD_LPCM:
295             p_stream->i_stream_id =
296                 0xbd00 | StreamIdGet( p_sys->stream_id_lpcm, 0xa0, 0xaf );
297             break;
298         case VLC_CODEC_DTS:
299             p_stream->i_stream_id =
300                 0xbd00 | StreamIdGet( p_sys->stream_id_dts, 0x88, 0x8f );
301             break;
302         case VLC_CODEC_A52:
303             p_stream->i_stream_id =
304                 0xbd00 | StreamIdGet( p_sys->stream_id_a52, 0x80, 0x87 );
305             break;
306         case VLC_CODEC_MPGA:
307             p_stream->i_stream_id =
308                 StreamIdGet( p_sys->stream_id_mpga, 0xc0, 0xcf );
309             p_stream->i_stream_type = 0x03; /* ISO/IEC 11172 Audio */
310             break;
311         case VLC_CODEC_MP4A:
312             p_stream->i_stream_id =
313                 StreamIdGet( p_sys->stream_id_mpga, 0xc0, 0xcf );
314             p_stream->i_stream_type = 0x0f;
315             break;
316         case VLC_CODEC_SPU:
317             p_stream->i_stream_id =
318                 0xbd00 | StreamIdGet( p_sys->stream_id_spu, 0x20, 0x3f );
319             break;
320         default:
321             goto error;
322     }
323
324     if( p_stream->i_stream_id < 0 ) goto error;
325
326     if( p_input->p_fmt->i_cat == AUDIO_ES )
327     {
328         p_sys->i_audio_bound++;
329         p_stream->i_max_buff_size = 4 * 1024;
330     }
331     else if( p_input->p_fmt->i_cat == VIDEO_ES )
332     {
333         p_sys->i_video_bound++;
334         p_stream->i_max_buff_size = 400 * 1024; /* FIXME -- VCD uses 46, SVCD
335                         uses 230, ffmpeg has 230 with a note that it is small */
336     }
337     else
338     {   /* FIXME -- what's valid for not audio or video? */
339         p_stream->i_max_buff_size = 4 * 1024;
340     }
341
342     /* Try to set a sensible default value for the instant bitrate */
343     p_sys->i_instant_bitrate += p_input->p_fmt->i_bitrate + 1000/* overhead */;
344
345     /* FIXME -- spec requires  an upper limit rate boundary in the system header;
346        our codecs are VBR; using 2x nominal rate, convert to 50 bytes/sec */
347     p_sys->i_rate_bound += p_input->p_fmt->i_bitrate * 2 / (8 * 50);
348     p_sys->i_psm_version++;
349
350     p_stream->lang[0] = p_stream->lang[1] = p_stream->lang[2] = 0;
351     if( p_input->p_fmt->psz_language )
352     {
353         char *psz = p_input->p_fmt->psz_language;
354         const iso639_lang_t *pl = NULL;
355
356         if( strlen( psz ) == 2 )
357         {
358             pl = GetLang_1( psz );
359         }
360         else if( strlen( psz ) == 3 )
361         {
362             pl = GetLang_2B( psz );
363             if( !strcmp( pl->psz_iso639_1, "??" ) )
364             {
365                 pl = GetLang_2T( psz );
366             }
367         }
368         if( pl && strcmp( pl->psz_iso639_1, "??" ) )
369         {
370             p_stream->lang[0] = pl->psz_iso639_2T[0];
371             p_stream->lang[1] = pl->psz_iso639_2T[1];
372             p_stream->lang[2] = pl->psz_iso639_2T[2];
373
374             msg_Dbg( p_mux, "    - lang=%c%c%c",
375                      p_stream->lang[0], p_stream->lang[1], p_stream->lang[2] );
376         }
377     }
378     return VLC_SUCCESS;
379
380 error:
381     free( p_stream );
382     return VLC_EGENERIC;
383 }
384
385 /*****************************************************************************
386  * DelStream:
387  *****************************************************************************/
388 static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
389 {
390     sout_mux_sys_t *p_sys = p_mux->p_sys;
391     ps_stream_t *p_stream =(ps_stream_t*)p_input->p_sys;
392
393     msg_Dbg( p_mux, "removing input" );
394     switch( p_input->p_fmt->i_codec )
395     {
396         case VLC_CODEC_MPGV:
397             StreamIdRelease( p_sys->stream_id_mpgv, 0xe0,
398                              p_stream->i_stream_id );
399             break;
400         case VLC_CODEC_DVD_LPCM:
401             StreamIdRelease( p_sys->stream_id_lpcm, 0xa0,
402                              p_stream->i_stream_id&0xff );
403             break;
404         case VLC_CODEC_DTS:
405             StreamIdRelease( p_sys->stream_id_dts, 0x88,
406                              p_stream->i_stream_id&0xff );
407             break;
408         case VLC_CODEC_A52:
409             StreamIdRelease( p_sys->stream_id_a52, 0x80,
410                              p_stream->i_stream_id&0xff );
411             break;
412         case VLC_CODEC_MPGA:
413             StreamIdRelease( p_sys->stream_id_mpga, 0xc0,
414                              p_stream->i_stream_id  );
415             break;
416         case VLC_CODEC_SPU:
417             StreamIdRelease( p_sys->stream_id_spu, 0x20,
418                              p_stream->i_stream_id&0xff );
419             break;
420         default:
421             /* Never reached */
422             break;
423     }
424
425     if( p_input->p_fmt->i_cat == AUDIO_ES )
426     {
427         p_sys->i_audio_bound--;
428     }
429     else if( p_input->p_fmt->i_cat == VIDEO_ES )
430     {
431         p_sys->i_video_bound--;
432     }
433
434     /* Try to set a sensible default value for the instant bitrate */
435     p_sys->i_instant_bitrate -= (p_input->p_fmt->i_bitrate + 1000);
436     /* rate_bound is in units of 50 bytes/second */
437     p_sys->i_rate_bound -= (p_input->p_fmt->i_bitrate * 2)/(8 * 50);
438
439     p_sys->i_psm_version++;
440
441     free( p_stream );
442     return VLC_SUCCESS;
443 }
444
445 /*****************************************************************************
446  * Mux: Call each time there is new data for at least one stream
447  *****************************************************************************/
448 static int Mux( sout_mux_t *p_mux )
449 {
450     sout_mux_sys_t *p_sys = p_mux->p_sys;
451
452     for( ;; )
453     {
454         sout_input_t *p_input;
455         ps_stream_t *p_stream;
456
457         block_t *p_ps, *p_data;
458
459         mtime_t        i_dts;
460         int            i_stream;
461
462         /* Choose which stream to mux */
463         if( MuxGetStream( p_mux, &i_stream, &i_dts ) )
464         {
465             return VLC_SUCCESS;
466         }
467
468         p_input  = p_mux->pp_inputs[i_stream];
469         p_stream = (ps_stream_t*)p_input->p_sys;
470         p_ps     = NULL;
471
472         /* Write regulary PackHeader */
473         if( p_sys->i_pes_count % 30 == 0)
474         {
475             /* Update the instant bitrate every second or so */
476             if( p_sys->i_instant_size &&
477                 i_dts - p_sys->i_instant_dts > 1000000 )
478             {
479                 int64_t i_instant_bitrate = p_sys->i_instant_size * 8000000 /
480                     ( i_dts - p_sys->i_instant_dts );
481
482                 p_sys->i_instant_bitrate += i_instant_bitrate;
483                 p_sys->i_instant_bitrate /= 2;
484
485                 p_sys->i_instant_size = 0;
486                 p_sys->i_instant_dts = i_dts;
487             }
488             else if( !p_sys->i_instant_size )
489             {
490                 p_sys->i_instant_dts = i_dts;
491             }
492
493             MuxWritePackHeader( p_mux, &p_ps, i_dts );
494         }
495
496         /* Write regulary SystemHeader */
497         if( p_sys->i_pes_count % 300 == 0 )
498         {
499             block_t *p_pk;
500
501             MuxWriteSystemHeader( p_mux, &p_ps, i_dts );
502
503             /* For MPEG1 streaming, set HEADER flag */
504             for( p_pk = p_ps; p_pk != NULL; p_pk = p_pk->p_next )
505             {
506                 p_pk->i_flags |= BLOCK_FLAG_HEADER;
507             }
508         }
509
510         /* Write regulary ProgramStreamMap */
511         if( p_sys->b_mpeg2 && p_sys->i_pes_count % 300 == 0 )
512         {
513             MuxWritePSM( p_mux, &p_ps, i_dts );
514         }
515
516         /* Get and mux a packet */
517         p_data = block_FifoGet( p_input->p_fifo );
518          EStoPES ( p_mux->p_sout, &p_data, p_data,
519                        p_input->p_fmt, p_stream->i_stream_id,
520                        p_sys->b_mpeg2, 0, 0, p_sys->i_pes_max_size );
521
522         block_ChainAppend( &p_ps, p_data );
523
524         /* Get size of output data so we can calculate the instant bitrate */
525         for( p_data = p_ps; p_data; p_data = p_data->p_next )
526         {
527             p_sys->i_instant_size += p_data->i_buffer;
528         }
529
530         sout_AccessOutWrite( p_mux->p_access, p_ps );
531
532         /* Increase counter */
533         p_sys->i_pes_count++;
534     }
535
536     return VLC_SUCCESS;
537 }
538
539 /*****************************************************************************
540  *
541  *****************************************************************************/
542 static void StreamIdInit( bool *id, int i_range )
543 {
544     int i;
545
546     for( i = 0; i < i_range; i++ )
547     {
548         id[i] = true;
549     }
550 }
551 static int StreamIdGet( bool *id, int i_id_min, int i_id_max )
552 {
553     int i;
554
555     for( i = 0; i <= i_id_max - i_id_min; i++ )
556     {
557         if( id[i] )
558         {
559             id[i] = false;
560
561             return i_id_min + i;
562         }
563     }
564     return -1;
565 }
566 static void StreamIdRelease( bool *id, int i_id_min, int i_id )
567 {
568     id[i_id - i_id_min] = true;
569 }
570
571 static void MuxWritePackHeader( sout_mux_t *p_mux, block_t **p_buf,
572                                 mtime_t i_dts )
573 {
574     sout_mux_sys_t *p_sys = p_mux->p_sys;
575     bits_buffer_t bits;
576     block_t *p_hdr;
577     mtime_t i_scr;
578     int i_mux_rate;
579
580     i_scr = (i_dts - p_sys->i_dts_delay) * 9 / 100;
581
582     p_hdr = block_New( p_mux, 18 );
583     p_hdr->i_pts = p_hdr->i_dts = i_dts;
584     bits_initwrite( &bits, 14, p_hdr->p_buffer );
585     bits_write( &bits, 32, 0x01ba );
586
587     /* The spec specifies that the mux rate must be rounded upwards */
588     i_mux_rate = (p_sys->i_instant_bitrate + 8 * 50 - 1 ) / (8 * 50);
589
590     if( p_sys->b_mpeg2 )
591     {
592         bits_write( &bits, 2, 0x01 );
593     }
594     else
595     {
596         bits_write( &bits, 4, 0x02 );
597     }
598
599     bits_write( &bits, 3, ( i_scr >> 30 )&0x07 );
600     bits_write( &bits, 1,  1 ); // marker
601     bits_write( &bits, 15, ( i_scr >> 15 )&0x7fff );
602     bits_write( &bits, 1,  1 ); // marker
603     bits_write( &bits, 15, i_scr&0x7fff );
604     bits_write( &bits, 1,  1 ); // marker
605
606     if( p_sys->b_mpeg2 )
607     {
608         bits_write( &bits, 9,  0 ); // src extension
609     }
610     bits_write( &bits, 1,  1 );     // marker
611
612     bits_write( &bits, 22, i_mux_rate);
613     bits_write( &bits, 1,  1 );     // marker
614
615     if( p_sys->b_mpeg2 )
616     {
617         bits_write( &bits, 1,  1 );     // marker
618         bits_write( &bits, 5,  0x1f );  // reserved
619         bits_write( &bits, 3,  0 );     // stuffing bytes
620     }
621
622     p_hdr->i_buffer = p_sys->b_mpeg2 ? 14: 12;
623
624     block_ChainAppend( p_buf, p_hdr );
625 }
626
627 static void MuxWriteSystemHeader( sout_mux_t *p_mux, block_t **p_buf,
628                                   mtime_t i_dts )
629 {
630     sout_mux_sys_t  *p_sys = p_mux->p_sys;
631     block_t   *p_hdr;
632     bits_buffer_t   bits;
633     bool      b_private;
634     int i_rate_bound;
635
636     int             i_nb_private, i_nb_stream;
637     int i;
638
639     /* Count the number of private stream */
640     for( i = 0, i_nb_private = 0; i < p_mux->i_nb_inputs; i++ )
641     {
642         ps_stream_t *p_stream;
643
644         p_stream = (ps_stream_t*)p_mux->pp_inputs[i]->p_sys;
645
646         if( ( p_stream->i_stream_id&0xff00 ) == 0xbd00 )
647         {
648             i_nb_private++;
649         }
650     }
651
652     /* Private stream are declared only one time */
653     i_nb_stream = p_mux->i_nb_inputs -
654         ( i_nb_private > 0 ? i_nb_private - 1 : 0 );
655
656     p_hdr = block_New( p_mux, 12 + i_nb_stream * 3 );
657     p_hdr->i_dts = p_hdr->i_pts = i_dts;
658
659     /* The spec specifies that the reported rate_bound must be upper limit */
660     i_rate_bound = (p_sys->i_rate_bound);
661
662     bits_initwrite( &bits, 12 + i_nb_stream * 3, p_hdr->p_buffer );
663     bits_write( &bits, 32, 0x01bb );
664     bits_write( &bits, 16, 12 - 6 + i_nb_stream * 3 );
665     bits_write( &bits, 1,  1 ); // marker bit
666     bits_write( &bits, 22, i_rate_bound);
667     bits_write( &bits, 1,  1 ); // marker bit
668
669     bits_write( &bits, 6,  p_sys->i_audio_bound );
670     bits_write( &bits, 1,  0 ); // fixed flag
671     bits_write( &bits, 1,  0 ); // CSPS flag
672     bits_write( &bits, 1,  0 ); // system audio lock flag
673     bits_write( &bits, 1,  0 ); // system video lock flag
674
675     bits_write( &bits, 1,  1 ); // marker bit
676
677     bits_write( &bits, 5,  p_sys->i_video_bound );
678     bits_write( &bits, 1,  1 ); // packet rate restriction flag (1 for mpeg1)
679     bits_write( &bits, 7,  0xff ); // reserved bits
680
681     /* stream_id table */
682     for( i = 0, b_private = false; i < p_mux->i_nb_inputs; i++ )
683     {
684         sout_input_t *p_input;
685         ps_stream_t *p_stream;
686
687         p_input = p_mux->pp_inputs[i];
688         p_stream = (ps_stream_t *)p_input->p_sys;
689
690         if( ( p_stream->i_stream_id&0xff00 ) == 0xbd00 )
691         {
692             if( b_private )
693             {
694                 continue;
695             }
696             b_private = true;
697             /* Write stream id */
698             bits_write( &bits, 8, 0xbd );
699         }
700         else
701         {
702             /* Write stream id */
703             bits_write( &bits, 8, p_stream->i_stream_id&0xff );
704         }
705
706         bits_write( &bits, 2, 0x03 ); /* reserved */
707         if( p_input->p_fmt->i_cat == AUDIO_ES )
708         {
709             bits_write( &bits, 1, 0 );
710             bits_write( &bits, 13, p_stream->i_max_buff_size / 128 );
711         }
712         else if( p_input->p_fmt->i_cat == VIDEO_ES )
713         {
714             bits_write( &bits, 1, 1 );
715             bits_write( &bits, 13, p_stream->i_max_buff_size / 1024);
716         }
717         else
718         {
719             /* FIXME -- the scale of 0 means do a /128 */
720             bits_write( &bits, 1, 0 );
721             bits_write( &bits, 13, p_stream->i_max_buff_size / 128 );
722         }
723     }
724
725     block_ChainAppend( p_buf, p_hdr );
726 }
727
728 static void MuxWritePSM( sout_mux_t *p_mux, block_t **p_buf, mtime_t i_dts )
729 {
730     sout_mux_sys_t *p_sys = p_mux->p_sys;
731     block_t *p_hdr;
732     bits_buffer_t bits;
733     int i, i_psm_size = 16, i_es_map_size = 0;
734
735     for( i = 0; i < p_mux->i_nb_inputs; i++ )
736     {
737         sout_input_t *p_input = p_mux->pp_inputs[i];
738         ps_stream_t *p_stream = p_input->p_sys;
739
740         i_es_map_size += 4;
741         if( p_stream->lang[0] != 0 ) i_es_map_size += 6;
742     }
743
744     i_psm_size += i_es_map_size;
745
746     p_hdr = block_New( p_mux, i_psm_size );
747     p_hdr->i_dts = p_hdr->i_pts = i_dts;
748
749     memset( p_hdr->p_buffer, 0, p_hdr->i_buffer );
750     bits_initwrite( &bits, i_psm_size, p_hdr->p_buffer );
751     bits_write( &bits, 32, 0x01bc );
752     bits_write( &bits, 16, i_psm_size - 6 );
753     bits_write( &bits, 1, 1 ); /* current_next_indicator */
754     bits_write( &bits, 2, 0xF ); /* reserved */
755     bits_write( &bits, 5, p_sys->i_psm_version );
756     bits_write( &bits, 7, 0xFF ); /* reserved */
757     bits_write( &bits, 1, 1 ); /* marker */
758
759     bits_write( &bits, 16, 0 ); /* program_stream_info_length */
760     /* empty */
761
762     bits_write( &bits, 16, i_es_map_size ); /* elementary_stream_map_length */
763     for( i = 0; i < p_mux->i_nb_inputs; i++ )
764     {
765         sout_input_t *p_input = p_mux->pp_inputs[i];
766         ps_stream_t *p_stream = p_input->p_sys;
767
768         bits_write( &bits, 8, p_stream->i_stream_type ); /* stream_type */
769         bits_write( &bits, 8, p_stream->i_stream_id ); /* elementary_stream_id */
770
771         /* ISO639 language descriptor */
772         if( p_stream->lang[0] != 0 )
773         {
774             bits_write( &bits, 16, 6 ); /* elementary_stream_info_length */
775
776             bits_write( &bits, 8, 0x0a ); /* descriptor_tag */
777             bits_write( &bits, 8, 4 ); /* descriptor_length */
778
779             bits_write( &bits, 8, p_stream->lang[0] );
780             bits_write( &bits, 8, p_stream->lang[1] );
781             bits_write( &bits, 8, p_stream->lang[2] );
782             bits_write( &bits, 8, 0 ); /* audio type: 0x00 undefined */
783         }
784         else
785         {
786             bits_write( &bits, 16, 0 ); /* elementary_stream_info_length */
787         }
788     }
789
790     /* CRC32 */
791     {
792         uint32_t i_crc = 0xffffffff;
793         for( i = 0; (size_t)i < p_hdr->i_buffer; i++ )
794         i_crc = (i_crc << 8) ^
795             p_sys->crc32_table[((i_crc >> 24) ^ p_hdr->p_buffer[i]) & 0xff];
796
797         bits_write( &bits, 32, i_crc );
798     }
799
800     block_ChainAppend( p_buf, p_hdr );
801 }
802
803 /*
804  * Find stream to be muxed.
805  */
806 static int MuxGetStream( sout_mux_t *p_mux, int *pi_stream, mtime_t *pi_dts )
807 {
808     mtime_t i_dts;
809     int     i_stream, i;
810
811     for( i = 0, i_dts = 0, i_stream = -1; i < p_mux->i_nb_inputs; i++ )
812     {
813         sout_input_t *p_input = p_mux->pp_inputs[i];
814         block_t *p_data;
815
816         if( block_FifoCount( p_input->p_fifo ) <= 0 )
817         {
818             if( p_input->p_fmt->i_cat == AUDIO_ES ||
819                 p_input->p_fmt->i_cat == VIDEO_ES )
820             {
821                 /* We need that audio+video fifo contain at least 1 packet */
822                 return VLC_EGENERIC;
823             }
824
825             /* SPU */
826             continue;
827         }
828
829         p_data = block_FifoShow( p_input->p_fifo );
830         if( i_stream == -1 || p_data->i_dts < i_dts )
831         {
832             i_stream = i;
833             i_dts    = p_data->i_dts;
834         }
835     }
836
837     *pi_stream = i_stream;
838     *pi_dts = i_dts;
839
840     return VLC_SUCCESS;
841 }