]> git.sesse.net Git - vlc/blob - modules/mux/mpeg/ps.c
Removes trailing spaces. Removes tabs.
[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 #include <vlc/vlc.h>
32 #include <vlc_sout.h>
33 #include <vlc_codecs.h>
34 #include <vlc_block.h>
35
36 #include "bits.h"
37 #include "pes.h"
38
39 #include "iso_lang.h"
40
41 /*****************************************************************************
42  * Module descriptor
43  *****************************************************************************/
44 #define DTS_TEXT N_("DTS delay (ms)")
45 #define DTS_LONGTEXT N_("Delay the DTS (decoding time " \
46   "stamps) and PTS (presentation timestamps) of the data in the " \
47   "stream, compared to the SCRs. This allows for some buffering inside " \
48   "the client decoder.")
49
50 #define PES_SIZE_TEXT N_("PES maximum size")
51 #define PES_SIZE_LONGTEXT N_("Set the maximum allowed PES "\
52   "size when producing the MPEG PS streams.")
53
54 static int     Open   ( vlc_object_t * );
55 static void    Close  ( vlc_object_t * );
56
57 #define SOUT_CFG_PREFIX "sout-ps-"
58
59 vlc_module_begin();
60     set_description( _("PS muxer") );
61     set_shortname( "MPEG-PS" );
62     set_category( CAT_SOUT );
63     set_subcategory( SUBCAT_SOUT_MUX );
64     set_capability( "sout mux", 50 );
65     add_shortcut( "ps" );
66     add_shortcut( "mpeg1" );
67     add_shortcut( "dvd" );
68     set_callbacks( Open, Close );
69
70     add_integer( SOUT_CFG_PREFIX "dts-delay", 200, NULL, DTS_TEXT,
71                  DTS_LONGTEXT, VLC_TRUE );
72     add_integer( SOUT_CFG_PREFIX "pes-max-size", PES_PAYLOAD_SIZE_MAX, NULL,
73                  PES_SIZE_TEXT, PES_SIZE_LONGTEXT, VLC_TRUE );
74 vlc_module_end();
75
76 /*****************************************************************************
77  * Exported prototypes
78  *****************************************************************************/
79 static int Control  ( sout_mux_t *, int, va_list );
80 static int AddStream( sout_mux_t *, sout_input_t * );
81 static int DelStream( sout_mux_t *, sout_input_t * );
82 static int Mux      ( sout_mux_t * );
83
84 /*****************************************************************************
85  * Local prototypes
86  *****************************************************************************/
87 static int  MuxGetStream        ( sout_mux_t *, int *, mtime_t * );
88
89 static void MuxWritePackHeader  ( sout_mux_t *, block_t **, mtime_t );
90 static void MuxWriteSystemHeader( sout_mux_t *, block_t **, mtime_t );
91 static void MuxWritePSM         ( sout_mux_t *, block_t **, mtime_t );
92
93 static void StreamIdInit        ( vlc_bool_t *id, int i_range );
94 static int  StreamIdGet         ( vlc_bool_t *id, int i_id_min, int i_id_max );
95 static void StreamIdRelease     ( vlc_bool_t *id, int i_id_min, int i_id );
96
97 typedef struct ps_stream_s
98 {
99     int i_stream_id;
100     int i_stream_type;
101     int i_max_buff_size; /* used in system header */
102
103     /* Language is iso639-2T */
104     uint8_t lang[3];
105
106 } ps_stream_t;
107
108 struct sout_mux_sys_t
109 {
110     /* Which id are unused */
111     vlc_bool_t  stream_id_mpga[16]; /* 0xc0 -> 0xcf */
112     vlc_bool_t  stream_id_mpgv[16]; /* 0xe0 -> 0xef */
113     vlc_bool_t  stream_id_a52[8];   /* 0x80 -> 0x87 <- FIXME I'm not sure */
114     vlc_bool_t  stream_id_spu[32];  /* 0x20 -> 0x3f */
115     vlc_bool_t  stream_id_dts[8];   /* 0x88 -> 0x8f */
116     vlc_bool_t  stream_id_lpcm[16]; /* 0xa0 -> 0xaf */
117
118     int i_audio_bound;
119     int i_video_bound;
120     int i_pes_count;
121     int i_system_header;
122     int i_dts_delay;
123     int i_rate_bound; /* units of 50 bytes/second */
124  
125     int64_t i_instant_bitrate;
126     int64_t i_instant_size;
127     int64_t i_instant_dts;
128
129     vlc_bool_t b_mpeg2;
130
131     int i_pes_max_size;
132
133     int i_psm_version;
134     uint32_t crc32_table[256];
135 };
136
137 static const char *ppsz_sout_options[] = {
138     "dts-delay", "pes-max-size", NULL
139 };
140
141 /*****************************************************************************
142  * Open:
143  *****************************************************************************/
144 static int Open( vlc_object_t *p_this )
145 {
146     sout_mux_t *p_mux = (sout_mux_t*)p_this;
147     sout_mux_sys_t *p_sys;
148     vlc_value_t val;
149
150     msg_Info( p_mux, "Open" );
151     config_ChainParse( p_mux, SOUT_CFG_PREFIX, ppsz_sout_options, p_mux->p_cfg );
152
153     p_mux->pf_control   = Control;
154     p_mux->pf_addstream = AddStream;
155     p_mux->pf_delstream = DelStream;
156     p_mux->pf_mux       = Mux;
157     p_mux->p_sys        = p_sys = malloc( sizeof( sout_mux_sys_t ) );
158
159     /* Init free stream id */
160     StreamIdInit( p_sys->stream_id_a52,  8  );
161     StreamIdInit( p_sys->stream_id_dts,  8  );
162     StreamIdInit( p_sys->stream_id_mpga, 16 );
163     StreamIdInit( p_sys->stream_id_mpgv, 16 );
164     StreamIdInit( p_sys->stream_id_lpcm, 16 );
165     StreamIdInit( p_sys->stream_id_spu,  32 );
166
167     p_sys->i_audio_bound   = 0;
168     p_sys->i_video_bound   = 0;
169     p_sys->i_system_header = 0;
170     p_sys->i_pes_count     = 0;
171
172     p_sys->i_psm_version   = 0;
173
174     p_sys->i_instant_bitrate  = 0;
175     p_sys->i_instant_size     = 0;
176     p_sys->i_instant_dts      = 0;
177     p_sys->i_rate_bound      = 0;
178     p_sys->b_mpeg2 = !(p_mux->psz_mux && !strcmp( p_mux->psz_mux, "mpeg1" ));
179
180     var_Get( p_mux, SOUT_CFG_PREFIX "dts-delay", &val );
181     p_sys->i_dts_delay = (int64_t)val.i_int * 1000;
182
183     var_Get( p_mux, SOUT_CFG_PREFIX "pes-max-size", &val );
184     p_sys->i_pes_max_size = (int64_t)val.i_int;
185
186     /* Initialise CRC32 table */
187     if( p_sys->b_mpeg2 )
188     {
189         uint32_t i, j, k;
190
191         for( i = 0; i < 256; i++ )
192         {
193             k = 0;
194             for( j = (i << 24) | 0x800000; j != 0x80000000; j <<= 1 )
195                 k = (k << 1) ^ (((k ^ j) & 0x80000000) ? 0x04c11db7 : 0);
196
197             p_sys->crc32_table[i] = k;
198         }
199     }
200
201     return VLC_SUCCESS;
202 }
203
204 /*****************************************************************************
205  * Close:
206  *****************************************************************************/
207 static void Close( vlc_object_t * p_this )
208 {
209     sout_mux_t      *p_mux = (sout_mux_t*)p_this;
210     sout_mux_sys_t  *p_sys = p_mux->p_sys;
211
212     block_t   *p_end;
213
214     msg_Info( p_mux, "Close" );
215
216     p_end = block_New( p_mux, 4 );
217     p_end->p_buffer[0] = 0x00; p_end->p_buffer[1] = 0x00;
218     p_end->p_buffer[2] = 0x01; p_end->p_buffer[3] = 0xb9;
219
220     sout_AccessOutWrite( p_mux->p_access, p_end );
221
222     free( p_sys );
223 }
224
225 /*****************************************************************************
226  * Control:
227  *****************************************************************************/
228 static int Control( sout_mux_t *p_mux, int i_query, va_list args )
229 {
230     vlc_bool_t *pb_bool;
231     char **ppsz;
232
233    switch( i_query )
234    {
235        case MUX_CAN_ADD_STREAM_WHILE_MUXING:
236            pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
237            *pb_bool = VLC_TRUE;
238            return VLC_SUCCESS;
239
240        case MUX_GET_ADD_STREAM_WAIT:
241            pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
242            *pb_bool = VLC_FALSE;
243            return VLC_SUCCESS;
244
245        case MUX_GET_MIME:
246            ppsz = (char**)va_arg( args, char ** );
247            *ppsz = strdup( "video/mpeg" );
248            return VLC_SUCCESS;
249
250         default:
251             return VLC_EGENERIC;
252    }
253 }
254
255 /*****************************************************************************
256  * AddStream:
257  *****************************************************************************/
258 static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
259 {
260     sout_mux_sys_t  *p_sys = p_mux->p_sys;
261     ps_stream_t *p_stream;
262  
263
264     msg_Dbg( p_mux, "adding input codec=%4.4s",
265              (char*)&p_input->p_fmt->i_codec );
266
267     p_input->p_sys = p_stream = malloc( sizeof( ps_stream_t ) );
268     p_stream->i_stream_type = 0x81;
269
270     /* Init this new stream */
271     switch( p_input->p_fmt->i_codec )
272     {
273         case VLC_FOURCC( 'm', 'p', '1', 'v' ):
274             p_stream->i_stream_id =
275                 StreamIdGet( p_sys->stream_id_mpgv, 0xe0, 0xef );
276             p_stream->i_stream_type = 0x01; /* ISO/IEC 11172 Video */
277             break;
278         case VLC_FOURCC( 'm', 'p', '2', 'v' ):
279         case VLC_FOURCC( 'm', 'p', 'g', 'v' ):
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_FOURCC( 'm', 'p', '4', 'v' ):
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_FOURCC( 'h', '2', '6', '4' ):
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_FOURCC( 'l', 'p', 'c', 'm' ):
295             p_stream->i_stream_id =
296                 0xbd00 | StreamIdGet( p_sys->stream_id_lpcm, 0xa0, 0xaf );
297             break;
298         case VLC_FOURCC( 'd', 't', 's', ' ' ):
299             p_stream->i_stream_id =
300                 0xbd00 | StreamIdGet( p_sys->stream_id_dts, 0x88, 0x8f );
301             break;
302         case VLC_FOURCC( 'a', '5', '2', ' ' ):
303             p_stream->i_stream_id =
304                 0xbd00 | StreamIdGet( p_sys->stream_id_a52, 0x80, 0x87 );
305             break;
306         case VLC_FOURCC( 'm', 'p', 'g', 'a' ):
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_FOURCC( 'm', 'p', '4', 'a' ):
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_FOURCC( 's', 'p', 'u', ' ' ):
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_FOURCC( 'm', 'p', 'g', 'v' ):
397             StreamIdRelease( p_sys->stream_id_mpgv, 0xe0,
398                              p_stream->i_stream_id );
399             break;
400         case VLC_FOURCC( 'l', 'p', 'c', 'm' ):
401             StreamIdRelease( p_sys->stream_id_lpcm, 0xa0,
402                              p_stream->i_stream_id&0xff );
403             break;
404         case VLC_FOURCC( 'd', 't', 's', ' ' ):
405             StreamIdRelease( p_sys->stream_id_dts, 0x88,
406                              p_stream->i_stream_id&0xff );
407             break;
408         case VLC_FOURCC( 'a', '5', '2', ' ' ):
409             StreamIdRelease( p_sys->stream_id_a52, 0x80,
410                              p_stream->i_stream_id&0xff );
411             break;
412         case VLC_FOURCC( 'm', 'p', 'g', 'a' ):
413             StreamIdRelease( p_sys->stream_id_mpga, 0xc0,
414                              p_stream->i_stream_id  );
415             break;
416         case VLC_FOURCC( 's', 'p', 'u', ' ' ):
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         E_( 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( vlc_bool_t *id, int i_range )
543 {
544     int i;
545
546     for( i = 0; i < i_range; i++ )
547     {
548         id[i] = VLC_TRUE;
549     }
550 }
551 static int StreamIdGet( vlc_bool_t *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] = VLC_FALSE;
560
561             return i_id_min + i;
562         }
563     }
564     return -1;
565 }
566 static void StreamIdRelease( vlc_bool_t *id, int i_id_min, int i_id )
567 {
568     id[i_id - i_id_min] = VLC_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     vlc_bool_t      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 = VLC_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 = VLC_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; 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;
810     int     i;
811
812     for( i = 0, i_dts = 0, i_stream = -1; i < p_mux->i_nb_inputs; i++ )
813     {
814         sout_input_t *p_input = p_mux->pp_inputs[i];
815         block_t *p_data;
816
817         if( p_input->p_fifo->i_depth <= 0 )
818         {
819             if( p_input->p_fmt->i_cat == AUDIO_ES ||
820                 p_input->p_fmt->i_cat == VIDEO_ES )
821             {
822                 /* We need that audio+video fifo contain at least 1 packet */
823                 return VLC_EGENERIC;
824             }
825
826             /* SPU */
827             continue;
828         }
829
830         p_data = block_FifoShow( p_input->p_fifo );
831         if( i_stream == -1 || p_data->i_dts < i_dts )
832         {
833             i_stream = i;
834             i_dts    = p_data->i_dts;
835         }
836     }
837
838     *pi_stream = i_stream;
839     *pi_dts = i_dts;
840
841     return VLC_SUCCESS;
842 }