]> git.sesse.net Git - vlc/blob - modules/mux/ogg.c
Improvements to preferences
[vlc] / modules / mux / ogg.c
1 /*****************************************************************************
2  * ogg.c: ogg muxer module for vlc
3  *****************************************************************************
4  * Copyright (C) 2001, 2002 VideoLAN
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Gildas Bazin <gbazin@videolan.org>
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 <stdlib.h>
29 #include <string.h>
30
31 #ifdef HAVE_TIME_H
32 #   include <time.h>
33 #endif
34
35 #include <vlc/vlc.h>
36 #include <vlc/input.h>
37 #include <vlc/sout.h>
38
39 #include "codecs.h"
40
41 #include <ogg/ogg.h>
42
43 /*****************************************************************************
44  * Module descriptor
45  *****************************************************************************/
46 static int  Open   ( vlc_object_t * );
47 static void Close  ( vlc_object_t * );
48
49 vlc_module_begin();
50     set_description( _("Ogg/ogm muxer") );
51     set_capability( "sout mux", 10 );
52     set_category( CAT_SOUT );
53     set_subcategory( SUBCAT_SOUT_MUX );
54     add_shortcut( "ogg" );
55     add_shortcut( "ogm" );
56     set_callbacks( Open, Close );
57 vlc_module_end();
58
59
60 /*****************************************************************************
61  * Exported prototypes
62  *****************************************************************************/
63 static int Control  ( sout_mux_t *, int, va_list );
64 static int AddStream( sout_mux_t *, sout_input_t * );
65 static int DelStream( sout_mux_t *, sout_input_t * );
66 static int Mux      ( sout_mux_t * );
67 static int MuxBlock ( sout_mux_t *, sout_input_t * );
68
69 static block_t *OggCreateHeader( sout_mux_t *, mtime_t );
70 static block_t *OggCreateFooter( sout_mux_t *, mtime_t );
71
72 /*****************************************************************************
73  * Misc declarations
74  *****************************************************************************/
75 #define FREE( p ) if( p ) { free( p ); (p) = NULL; }
76
77 /* Structures used for OggDS headers used in ogm files */
78
79 #define PACKET_TYPE_HEADER   0x01
80 #define PACKET_TYPE_COMMENT  0x03
81 #define PACKET_IS_SYNCPOINT  0x08
82
83 typedef struct
84 #ifdef HAVE_ATTRIBUTE_PACKED
85     __attribute__((__packed__))
86 #endif
87 {
88     int32_t i_width;
89     int32_t i_height;
90 } oggds_header_video_t;
91
92 typedef struct
93 #ifdef HAVE_ATTRIBUTE_PACKED
94     __attribute__((__packed__))
95 #endif
96 {
97     int16_t i_channels;
98     int16_t i_block_align;
99     int32_t i_avgbytespersec;
100 } oggds_header_audio_t;
101
102 typedef struct
103 #ifdef HAVE_ATTRIBUTE_PACKED
104     __attribute__((__packed__))
105 #endif
106 {
107     uint8_t i_packet_type;
108
109     char stream_type[8];
110     char sub_type[4];
111
112     int32_t i_size;
113
114     int64_t i_time_unit;
115     int64_t i_samples_per_unit;
116     int32_t i_default_len;
117
118     int32_t i_buffer_size;
119     int16_t i_bits_per_sample;
120
121     int16_t i_padding_0; /* Because the original is using MSVC packing style */
122
123     union
124     {
125         oggds_header_video_t video;
126         oggds_header_audio_t audio;
127     } header;
128
129     int32_t i_padding_1; /* Because the original is using MSVC packing style */
130
131 } oggds_header_t;
132
133 /*
134  * TODO  move this function to src/stream_output.c (used by nearly all muxers)
135  */
136 static int MuxGetStream( sout_mux_t *p_mux, int *pi_stream, mtime_t *pi_dts )
137 {
138     mtime_t i_dts;
139     int     i_stream;
140     int     i;
141
142     for( i = 0, i_dts = 0, i_stream = -1; i < p_mux->i_nb_inputs; i++ )
143     {
144         block_fifo_t  *p_fifo;
145
146         p_fifo = p_mux->pp_inputs[i]->p_fifo;
147
148         /* We don't really need to have anything in the SPU fifo */
149         if( p_mux->pp_inputs[i]->p_fmt->i_cat == SPU_ES &&
150             p_fifo->i_depth == 0 ) continue;
151
152         if( p_fifo->i_depth )
153         {
154             block_t *p_buf;
155
156             p_buf = block_FifoShow( p_fifo );
157             if( i_stream < 0 || p_buf->i_dts < i_dts )
158             {
159                 i_dts = p_buf->i_dts;
160                 i_stream = i;
161             }
162         }
163         else return -1;
164
165     }
166     if( pi_stream ) *pi_stream = i_stream;
167     if( pi_dts ) *pi_dts = i_dts;
168     return i_stream;
169 }
170
171 /*****************************************************************************
172  * Definitions of structures and functions used by this plugins 
173  *****************************************************************************/
174 typedef struct
175 {
176     int i_cat;
177     int i_fourcc;
178
179     int b_new;
180
181     mtime_t i_dts;
182     mtime_t i_length;
183     int     i_packet_no;
184     int     i_serial_no;
185     int     i_keyframe_granule_shift; /* Theora only */
186     ogg_stream_state os;
187
188     oggds_header_t *p_oggds_header;
189
190 } ogg_stream_t;
191
192 struct sout_mux_sys_t
193 {
194     int     i_streams;
195
196     mtime_t i_start_dts;
197     int     i_next_serial_no;
198
199     /* number of logical streams pending to be added */
200     int i_add_streams;
201
202     /* logical streams pending to be deleted */
203     int i_del_streams;
204     ogg_stream_t **pp_del_streams;
205 };
206
207 static void OggSetDate( block_t *, mtime_t , mtime_t  );
208 static block_t *OggStreamFlush( sout_mux_t *, ogg_stream_state *, mtime_t );
209
210 /*****************************************************************************
211  * Open: Open muxer
212  *****************************************************************************/
213 static int Open( vlc_object_t *p_this )
214 {
215     sout_mux_t      *p_mux = (sout_mux_t*)p_this;
216     sout_mux_sys_t  *p_sys;
217
218     msg_Info( p_mux, "Open" );
219
220     p_sys                 = malloc( sizeof( sout_mux_sys_t ) );
221     p_sys->i_streams      = 0;
222     p_sys->i_add_streams  = 0;
223     p_sys->i_del_streams  = 0;
224     p_sys->pp_del_streams = 0;
225
226     p_mux->p_sys        = p_sys;
227     p_mux->pf_control   = Control;
228     p_mux->pf_addstream = AddStream;
229     p_mux->pf_delstream = DelStream;
230     p_mux->pf_mux       = Mux;
231
232     /* First serial number is random.
233      * (Done like this because on win32 you need to seed the random number
234      *  generator once per thread). */
235     srand( (unsigned int)time( NULL ) );
236     p_sys->i_next_serial_no = rand();
237
238     return VLC_SUCCESS;
239 }
240
241 /*****************************************************************************
242  * Close: Finalize ogg bitstream and close muxer
243  *****************************************************************************/
244 static void Close( vlc_object_t * p_this )
245 {
246     sout_mux_t     *p_mux = (sout_mux_t*)p_this;
247     sout_mux_sys_t *p_sys = p_mux->p_sys;
248
249     msg_Info( p_mux, "Close" );
250
251     if( p_sys->i_del_streams )
252     {
253         block_t *p_og = NULL;
254         mtime_t i_dts = -1;
255         int i;
256
257         /* Close the current ogg stream */
258         msg_Dbg( p_mux, "writing footer" );
259         block_ChainAppend( &p_og, OggCreateFooter( p_mux, 0 ) );
260
261         /* Remove deleted logical streams */
262         for( i = 0; i < p_sys->i_del_streams; i++ )
263         {
264             i_dts = p_sys->pp_del_streams[i]->i_dts;
265             ogg_stream_clear( &p_sys->pp_del_streams[i]->os );
266             FREE( p_sys->pp_del_streams[i]->p_oggds_header );
267             FREE( p_sys->pp_del_streams[i] );
268         }
269         FREE( p_sys->pp_del_streams );
270         p_sys->i_streams -= p_sys->i_del_streams;
271
272         /* Write footer */
273         OggSetDate( p_og, i_dts, 0 );
274         sout_AccessOutWrite( p_mux->p_access, p_og );
275     }
276
277     free( p_sys );
278 }
279
280 /*****************************************************************************
281  * Control:
282  *****************************************************************************/
283 static int Control( sout_mux_t *p_mux, int i_query, va_list args )
284 {
285     vlc_bool_t *pb_bool;
286     char **ppsz;
287
288    switch( i_query )
289    {
290        case MUX_CAN_ADD_STREAM_WHILE_MUXING:
291            pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
292            *pb_bool = VLC_TRUE;
293            return VLC_SUCCESS;
294
295        case MUX_GET_ADD_STREAM_WAIT:
296            pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
297            *pb_bool = VLC_TRUE;
298            return VLC_SUCCESS;
299
300        case MUX_GET_MIME:
301            ppsz = (char**)va_arg( args, char ** );
302            *ppsz = strdup( "application/ogg" );
303            return VLC_SUCCESS;
304
305         default:
306             return VLC_EGENERIC;
307    }
308 }
309 /*****************************************************************************
310  * AddStream: Add an elementary stream to the muxed stream
311  *****************************************************************************/
312 static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
313 {
314     sout_mux_sys_t *p_sys = p_mux->p_sys;
315     ogg_stream_t   *p_stream;
316     uint16_t i_tag;
317
318     msg_Dbg( p_mux, "adding input" );
319
320     p_input->p_sys = p_stream = malloc( sizeof( ogg_stream_t ) );
321
322     p_stream->i_cat       = p_input->p_fmt->i_cat;
323     p_stream->i_fourcc    = p_input->p_fmt->i_codec;
324     p_stream->i_serial_no = p_sys->i_next_serial_no++;
325     p_stream->i_packet_no = 0;
326
327     p_stream->p_oggds_header = 0;
328
329     switch( p_input->p_fmt->i_cat )
330     {
331     case VIDEO_ES:
332         if( !p_input->p_fmt->video.i_frame_rate ||
333             !p_input->p_fmt->video.i_frame_rate_base )
334         {
335             msg_Warn( p_mux, "Missing frame rate, assuming 25fps" );
336             p_input->p_fmt->video.i_frame_rate = 25;
337             p_input->p_fmt->video.i_frame_rate_base = 1;
338         }
339
340         switch( p_stream->i_fourcc )
341         {
342         case VLC_FOURCC( 'm', 'p', 'g', 'v' ):
343         case VLC_FOURCC( 'm', 'p', '4', 'v' ):
344         case VLC_FOURCC( 'D', 'I', 'V', '3' ):
345         case VLC_FOURCC( 'M', 'J', 'P', 'G' ):
346         case VLC_FOURCC( 'W', 'M', 'V', '1' ):
347         case VLC_FOURCC( 'W', 'M', 'V', '2' ):
348         case VLC_FOURCC( 'W', 'M', 'V', '3' ):
349         case VLC_FOURCC( 'S', 'N', 'O', 'W' ):
350             p_stream->p_oggds_header = malloc( sizeof(oggds_header_t) );
351             memset( p_stream->p_oggds_header, 0, sizeof(oggds_header_t) );
352             p_stream->p_oggds_header->i_packet_type = PACKET_TYPE_HEADER;
353
354             memcpy( p_stream->p_oggds_header->stream_type, "video", 5 );
355             if( p_stream->i_fourcc == VLC_FOURCC( 'm', 'p', '4', 'v' ) )
356             {
357                 memcpy( p_stream->p_oggds_header->sub_type, "XVID", 4 );
358             }
359             else if( p_stream->i_fourcc == VLC_FOURCC( 'D', 'I', 'V', '3' ) )
360             {
361                 memcpy( p_stream->p_oggds_header->sub_type, "DIV3", 4 );
362             }
363             else
364             {
365                 memcpy( p_stream->p_oggds_header->sub_type,
366                         &p_stream->i_fourcc, 4 );
367             }
368             SetDWLE( &p_stream->p_oggds_header->i_size,
369                      sizeof( oggds_header_t ) - 1 );
370             SetQWLE( &p_stream->p_oggds_header->i_time_unit,
371                      I64C(10000000) * p_input->p_fmt->video.i_frame_rate_base /
372                      (int64_t)p_input->p_fmt->video.i_frame_rate );
373             SetQWLE( &p_stream->p_oggds_header->i_samples_per_unit, 1 );
374             SetDWLE( &p_stream->p_oggds_header->i_default_len, 1 ); /* ??? */
375             SetDWLE( &p_stream->p_oggds_header->i_buffer_size, 1024*1024 );
376             SetWLE( &p_stream->p_oggds_header->i_bits_per_sample, 0 );
377             SetDWLE( &p_stream->p_oggds_header->header.video.i_width,
378                      p_input->p_fmt->video.i_width );
379             SetDWLE( &p_stream->p_oggds_header->header.video.i_height,
380                      p_input->p_fmt->video.i_height );
381             msg_Dbg( p_mux, "%4.4s stream", (char *)&p_stream->i_fourcc );
382             break;
383
384         case VLC_FOURCC( 't', 'h', 'e', 'o' ):
385             msg_Dbg( p_mux, "theora stream" );
386             break;
387
388         default:
389             FREE( p_input->p_sys );
390             return VLC_EGENERIC;
391         }
392         break;
393
394     case AUDIO_ES:
395         switch( p_stream->i_fourcc )
396         {
397         case VLC_FOURCC( 'v', 'o', 'r', 'b' ):
398             msg_Dbg( p_mux, "vorbis stream" );
399             break;
400
401         case VLC_FOURCC( 's', 'p', 'x', ' ' ):
402             msg_Dbg( p_mux, "speex stream" );
403             break;
404
405         case VLC_FOURCC( 'f', 'l', 'a', 'c' ):
406             msg_Dbg( p_mux, "flac stream" );
407             break;
408
409         default:
410             fourcc_to_wf_tag( p_stream->i_fourcc, &i_tag );
411             if( i_tag == WAVE_FORMAT_UNKNOWN )
412             {
413                 FREE( p_input->p_sys );
414                 return VLC_EGENERIC;
415             }
416
417             p_stream->p_oggds_header =
418                 malloc( sizeof(oggds_header_t) + p_input->p_fmt->i_extra );
419             memset( p_stream->p_oggds_header, 0, sizeof(oggds_header_t) );
420             p_stream->p_oggds_header->i_packet_type = PACKET_TYPE_HEADER;
421
422             SetDWLE( &p_stream->p_oggds_header->i_size,
423                      sizeof( oggds_header_t ) - 1 + p_input->p_fmt->i_extra );
424
425             if( p_input->p_fmt->i_extra )
426             {
427                 memcpy( &p_stream->p_oggds_header[1],
428                         p_input->p_fmt->p_extra, p_input->p_fmt->i_extra );
429             }
430
431             memcpy( p_stream->p_oggds_header->stream_type, "audio", 5 );
432
433             memset( p_stream->p_oggds_header->sub_type, 0, 4 );
434             sprintf( p_stream->p_oggds_header->sub_type, "%-x", i_tag );
435
436             SetQWLE( &p_stream->p_oggds_header->i_time_unit, I64C(10000000) );
437             SetDWLE( &p_stream->p_oggds_header->i_default_len, 1 );
438             SetDWLE( &p_stream->p_oggds_header->i_buffer_size, 30*1024 );
439             SetQWLE( &p_stream->p_oggds_header->i_samples_per_unit,
440                      p_input->p_fmt->audio.i_rate );
441             SetWLE( &p_stream->p_oggds_header->i_bits_per_sample,
442                     p_input->p_fmt->audio.i_bitspersample );
443             SetDWLE( &p_stream->p_oggds_header->header.audio.i_channels,
444                      p_input->p_fmt->audio.i_channels );
445             SetDWLE( &p_stream->p_oggds_header->header.audio.i_block_align,
446                      p_input->p_fmt->audio.i_blockalign );
447             SetDWLE( &p_stream->p_oggds_header->header.audio.i_avgbytespersec,
448                      p_input->p_fmt->i_bitrate / 8);
449             msg_Dbg( p_mux, "%4.4s stream", (char *)&p_stream->i_fourcc );
450             break;
451         }
452         break;
453
454     case SPU_ES:
455         switch( p_stream->i_fourcc )
456         {
457         case VLC_FOURCC( 's', 'u','b', 't' ):
458             p_stream->p_oggds_header = malloc( sizeof(oggds_header_t) );
459             memset( p_stream->p_oggds_header, 0, sizeof(oggds_header_t) );
460             p_stream->p_oggds_header->i_packet_type = PACKET_TYPE_HEADER;
461
462             memcpy( p_stream->p_oggds_header->stream_type, "text", 4 );
463             msg_Dbg( p_mux, "subtitles stream" );
464             break;
465
466         default:
467             FREE( p_input->p_sys );
468             return VLC_EGENERIC;
469         }
470         break;
471     default:
472         FREE( p_input->p_sys );
473         return VLC_EGENERIC;
474     }
475
476     p_stream->b_new = VLC_TRUE;
477
478     p_sys->i_add_streams++;
479
480     return VLC_SUCCESS;
481 }
482
483 /*****************************************************************************
484  * DelStream: Delete an elementary stream from the muxed stream
485  *****************************************************************************/
486 static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
487 {
488     sout_mux_sys_t *p_sys  = p_mux->p_sys;
489     ogg_stream_t   *p_stream = (ogg_stream_t*)p_input->p_sys;
490     block_t *p_og;
491
492     msg_Dbg( p_mux, "removing input" );
493
494     /* flush all remaining data */
495     if( p_input->p_sys )
496     {
497         if( !p_stream->b_new )
498         {
499             while( p_input->p_fifo->i_depth ) MuxBlock( p_mux, p_input );
500         }
501
502         if( !p_stream->b_new &&
503             ( p_og = OggStreamFlush( p_mux, &p_stream->os, 0 ) ) )
504         {
505             OggSetDate( p_og, p_stream->i_dts, p_stream->i_length );
506             sout_AccessOutWrite( p_mux->p_access, p_og );
507         }
508
509         /* move input in delete queue */
510         if( !p_stream->b_new )
511         {
512             p_sys->pp_del_streams = realloc( p_sys->pp_del_streams,
513                                              (p_sys->i_del_streams + 1) *
514                                              sizeof(ogg_stream_t *) );
515             p_sys->pp_del_streams[p_sys->i_del_streams++] = p_stream;
516         }
517         else
518         {
519             /* Wasn't already added so get rid of it */
520             FREE( p_stream->p_oggds_header );
521             FREE( p_stream );
522             p_sys->i_add_streams--;
523         }
524     }
525
526     p_input->p_sys = NULL;
527
528     return 0;
529 }
530
531 /*****************************************************************************
532  * Ogg bitstream manipulation routines
533  *****************************************************************************/
534 static block_t *OggStreamFlush( sout_mux_t *p_mux,
535                                 ogg_stream_state *p_os, mtime_t i_pts )
536 {
537     block_t *p_og, *p_og_first = NULL;
538     ogg_page og;
539
540     while( ogg_stream_flush( p_os, &og ) )
541     {
542         /* Flush all data */
543         p_og = block_New( p_mux, og.header_len + og.body_len );
544
545         memcpy( p_og->p_buffer, og.header, og.header_len );
546         memcpy( p_og->p_buffer + og.header_len, og.body, og.body_len );
547         p_og->i_dts     = 0;
548         p_og->i_pts     = i_pts;
549         p_og->i_length  = 0;
550
551         i_pts = 0; // write it only once
552
553         block_ChainAppend( &p_og_first, p_og );
554     }
555
556     return p_og_first;
557 }
558
559 static block_t *OggStreamPageOut( sout_mux_t *p_mux,
560                                   ogg_stream_state *p_os, mtime_t i_pts )
561 {
562     block_t *p_og, *p_og_first = NULL;
563     ogg_page og;
564
565     while( ogg_stream_pageout( p_os, &og ) )
566     {
567         /* Flush all data */
568         p_og = block_New( p_mux, og.header_len + og.body_len );
569
570         memcpy( p_og->p_buffer, og.header, og.header_len );
571         memcpy( p_og->p_buffer + og.header_len, og.body, og.body_len );
572         p_og->i_dts     = 0;
573         p_og->i_pts     = i_pts;
574         p_og->i_length  = 0;
575
576         i_pts = 0; // write them only once
577
578         block_ChainAppend( &p_og_first, p_og );
579     }
580
581     return p_og_first;
582 }
583
584 static block_t *OggCreateHeader( sout_mux_t *p_mux, mtime_t i_dts )
585 {
586     block_t *p_hdr = NULL;
587     block_t *p_og = NULL;
588     ogg_packet op;
589     uint8_t *p_extra;
590     int i, i_extra;
591
592     /* Write header for each stream. All b_o_s (beginning of stream) packets
593      * must appear first in the ogg stream so we take care of them first. */
594     for( i = 0; i < p_mux->i_nb_inputs; i++ )
595     {
596         sout_input_t *p_input = p_mux->pp_inputs[i];
597         ogg_stream_t *p_stream = (ogg_stream_t*)p_input->p_sys;
598         p_stream->b_new = VLC_FALSE;
599
600         msg_Dbg( p_mux, "creating header for %4.4s",
601                  (char *)&p_stream->i_fourcc );
602
603         ogg_stream_init( &p_stream->os, p_stream->i_serial_no );
604         p_stream->i_packet_no = 0;
605
606         if( p_stream->i_fourcc == VLC_FOURCC( 'v', 'o', 'r', 'b' ) ||
607             p_stream->i_fourcc == VLC_FOURCC( 's', 'p', 'x', ' ' ) ||
608             p_stream->i_fourcc == VLC_FOURCC( 't', 'h', 'e', 'o' ) )
609         {
610             /* First packet in order: vorbis/speex/theora info */
611             p_extra = p_input->p_fmt->p_extra;
612             i_extra = p_input->p_fmt->i_extra;
613
614             op.bytes = *(p_extra++) << 8;
615             op.bytes |= (*(p_extra++) & 0xFF);
616             op.packet = p_extra;
617             i_extra -= (op.bytes + 2);
618             if( i_extra < 0 )
619             {
620                 msg_Err( p_mux, "header data corrupted");
621                 op.bytes += i_extra;
622             }
623
624             op.b_o_s  = 1;
625             op.e_o_s  = 0;
626             op.granulepos = 0;
627             op.packetno = p_stream->i_packet_no++;
628             ogg_stream_packetin( &p_stream->os, &op );
629             p_og = OggStreamFlush( p_mux, &p_stream->os, 0 );
630
631             /* Get keyframe_granule_shift for theora granulepos calculation */
632             if( p_stream->i_fourcc == VLC_FOURCC( 't', 'h', 'e', 'o' ) )
633             {
634                 int i_keyframe_frequency_force =
635                       1 << ((op.packet[40] << 6 >> 3) | (op.packet[41] >> 5));
636
637                 /* granule_shift = i_log( frequency_force -1 ) */
638                 p_stream->i_keyframe_granule_shift = 0;
639                 i_keyframe_frequency_force--;
640                 while( i_keyframe_frequency_force )
641                 {
642                     p_stream->i_keyframe_granule_shift++;
643                     i_keyframe_frequency_force >>= 1;
644                 }
645             }
646         }
647         else if( p_stream->i_fourcc == VLC_FOURCC( 'f', 'l', 'a', 'c' ) )
648         {
649             /* flac stream marker (yeah, only that in the 1st packet) */
650             op.packet = "fLaC";
651             op.bytes  = 4;
652             op.b_o_s  = 1;
653             op.e_o_s  = 0;
654             op.granulepos = 0;
655             op.packetno = p_stream->i_packet_no++;
656             ogg_stream_packetin( &p_stream->os, &op );
657             p_og = OggStreamFlush( p_mux, &p_stream->os, 0 );
658         }
659         else if( p_stream->p_oggds_header )
660         {
661             /* ds header */
662             op.packet = (uint8_t*)p_stream->p_oggds_header;
663             op.bytes  = p_stream->p_oggds_header->i_size + 1;
664             op.b_o_s  = 1;
665             op.e_o_s  = 0;
666             op.granulepos = 0;
667             op.packetno = p_stream->i_packet_no++;
668             ogg_stream_packetin( &p_stream->os, &op );
669             p_og = OggStreamFlush( p_mux, &p_stream->os, 0 );
670         }
671
672         block_ChainAppend( &p_hdr, p_og );
673     }
674
675     /* Take care of the non b_o_s headers */
676     for( i = 0; i < p_mux->i_nb_inputs; i++ )
677     {
678         sout_input_t *p_input = p_mux->pp_inputs[i];
679         ogg_stream_t *p_stream = (ogg_stream_t*)p_input->p_sys;
680
681         if( p_stream->i_fourcc == VLC_FOURCC( 'v', 'o', 'r', 'b' ) ||
682             p_stream->i_fourcc == VLC_FOURCC( 's', 'p', 'x', ' ' ) ||
683             p_stream->i_fourcc == VLC_FOURCC( 't', 'h', 'e', 'o' ) )
684         {
685             /* Special case, headers are already there in the incoming stream.
686              * We need to gather them an mark them as headers. */
687             int j = 2;
688
689             if( p_stream->i_fourcc == VLC_FOURCC( 's', 'p', 'x', ' ' ) ) j = 1;
690
691             p_extra = p_input->p_fmt->p_extra;
692             i_extra = p_input->p_fmt->i_extra;
693
694             /* Skip 1 header */
695             op.bytes = *(p_extra++) << 8;
696             op.bytes |= (*(p_extra++) & 0xFF);
697             op.packet = p_extra;
698             p_extra += op.bytes;
699             i_extra -= (op.bytes + 2);
700
701             while( j-- )
702             {
703                 op.bytes = *(p_extra++) << 8;
704                 op.bytes |= (*(p_extra++) & 0xFF);
705                 op.packet = p_extra;
706                 p_extra += op.bytes;
707                 i_extra -= (op.bytes + 2);
708                 if( i_extra < 0 )
709                 {
710                     msg_Err( p_mux, "header data corrupted");
711                     op.bytes += i_extra;
712                 }
713
714                 op.b_o_s  = 0;
715                 op.e_o_s  = 0;
716                 op.granulepos = 0;
717                 op.packetno = p_stream->i_packet_no++;
718                 ogg_stream_packetin( &p_stream->os, &op );
719
720                 p_og = OggStreamFlush( p_mux, &p_stream->os, 0 );
721                 block_ChainAppend( &p_hdr, p_og );
722             }
723         }
724         else if( p_stream->i_fourcc != VLC_FOURCC( 'f', 'l', 'a', 'c' ) )
725         {
726             uint8_t com[128];
727             int     i_com;
728
729             /* comment */
730             com[0] = PACKET_TYPE_COMMENT;
731             i_com = snprintf( &com[1], 128, PACKAGE_VERSION" stream output" )
732                      + 1;
733             op.packet = com;
734             op.bytes  = i_com;
735             op.b_o_s  = 0;
736             op.e_o_s  = 0;
737             op.granulepos = 0;
738             op.packetno = p_stream->i_packet_no++;
739             ogg_stream_packetin( &p_stream->os, &op );
740             p_og = OggStreamFlush( p_mux, &p_stream->os, 0 );
741             block_ChainAppend( &p_hdr, p_og );
742         }
743
744         /* Special case for mp4v and flac */
745         if( ( p_stream->i_fourcc == VLC_FOURCC( 'm', 'p', '4', 'v' ) ||
746               p_stream->i_fourcc == VLC_FOURCC( 'f', 'l', 'a', 'c' ) ) &&
747             p_input->p_fmt->i_extra )
748         {
749             /* Send a packet with the VOL data for mp4v
750              * or STREAMINFO for flac */
751             msg_Dbg( p_mux, "writing extra data" );
752             op.bytes  = p_input->p_fmt->i_extra;
753             op.packet = p_input->p_fmt->p_extra;
754             if( p_stream->i_fourcc == VLC_FOURCC( 'f', 'l', 'a', 'c' ) )
755             {
756                 /* Skip the flac stream marker */
757                 op.bytes -= 4;
758                 op.packet+= 4;
759             }
760             op.b_o_s  = 0;
761             op.e_o_s  = 0;
762             op.granulepos = 0;
763             op.packetno = p_stream->i_packet_no++;
764             ogg_stream_packetin( &p_stream->os, &op );
765             p_og = OggStreamFlush( p_mux, &p_stream->os, 0 );
766             block_ChainAppend( &p_hdr, p_og );
767         }
768     }
769
770     /* set HEADER flag */
771     for( p_og = p_hdr; p_og != NULL; p_og = p_og->p_next )
772     {
773         p_og->i_flags |= BLOCK_FLAG_HEADER;
774     }
775     return p_hdr;
776 }
777
778 static block_t *OggCreateFooter( sout_mux_t *p_mux, mtime_t i_dts )
779 {
780     sout_mux_sys_t *p_sys = p_mux->p_sys;
781     block_t *p_hdr = NULL;
782     block_t *p_og;
783     ogg_packet    op;
784     int i;
785
786     /* flush all remaining data */
787     for( i = 0; i < p_mux->i_nb_inputs; i++ )
788     {
789         ogg_stream_t *p_stream = p_mux->pp_inputs[i]->p_sys;
790
791         /* skip newly added streams */
792         if( p_stream->b_new ) continue;
793
794         if( ( p_og = OggStreamFlush( p_mux, &p_stream->os, 0 ) ) )
795         {
796             OggSetDate( p_og, p_stream->i_dts, p_stream->i_length );
797             sout_AccessOutWrite( p_mux->p_access, p_og );
798         }
799     }
800
801     /* Write eos packets for each stream. */
802     for( i = 0; i < p_mux->i_nb_inputs; i++ )
803     {
804         ogg_stream_t *p_stream = p_mux->pp_inputs[i]->p_sys;
805
806         /* skip newly added streams */
807         if( p_stream->b_new ) continue;
808
809         op.packet = NULL;
810         op.bytes  = 0;
811         op.b_o_s  = 0;
812         op.e_o_s  = 1;
813         op.granulepos = -1;
814         op.packetno = p_stream->i_packet_no++;
815         ogg_stream_packetin( &p_stream->os, &op );
816
817         p_og = OggStreamFlush( p_mux, &p_stream->os, 0 );
818         block_ChainAppend( &p_hdr, p_og );
819         ogg_stream_clear( &p_stream->os );
820     }
821
822     for( i = 0; i < p_sys->i_del_streams; i++ )
823     {
824         op.packet = NULL;
825         op.bytes  = 0;
826         op.b_o_s  = 0;
827         op.e_o_s  = 1;
828         op.granulepos = -1;
829         op.packetno = p_sys->pp_del_streams[i]->i_packet_no++;
830         ogg_stream_packetin( &p_sys->pp_del_streams[i]->os, &op );
831
832         p_og = OggStreamFlush( p_mux, &p_sys->pp_del_streams[i]->os, 0 );
833         block_ChainAppend( &p_hdr, p_og );
834         ogg_stream_clear( &p_sys->pp_del_streams[i]->os );
835     }
836
837     return p_hdr;
838 }
839
840 static void OggSetDate( block_t *p_og, mtime_t i_dts, mtime_t i_length )
841 {
842     int i_count;
843     block_t *p_tmp;
844     mtime_t i_delta;
845
846     for( p_tmp = p_og, i_count = 0; p_tmp != NULL; p_tmp = p_tmp->p_next )
847     {
848         i_count++;
849     }
850     i_delta = i_length / i_count;
851
852     for( p_tmp = p_og; p_tmp != NULL; p_tmp = p_tmp->p_next )
853     {
854         p_tmp->i_dts    = i_dts;
855         p_tmp->i_length = i_delta;
856
857         i_dts += i_delta;
858     }
859 }
860
861 /*****************************************************************************
862  * Mux: multiplex available data in input fifos into the Ogg bitstream
863  *****************************************************************************/
864 static int Mux( sout_mux_t *p_mux )
865 {
866     sout_mux_sys_t *p_sys = p_mux->p_sys;
867     block_t        *p_og = NULL;
868     int            i_stream;
869     mtime_t        i_dts;
870
871     if( p_sys->i_add_streams || p_sys->i_del_streams )
872     {
873         /* Open new ogg stream */
874         if( MuxGetStream( p_mux, &i_stream, &i_dts) < 0 )
875         {
876             msg_Dbg( p_mux, "waiting for data..." );
877             return VLC_SUCCESS;
878         }
879
880         if( p_sys->i_streams )
881         {
882             /* Close current ogg stream */
883             int i;
884
885             msg_Dbg( p_mux, "writing footer" );
886             block_ChainAppend( &p_og, OggCreateFooter( p_mux, 0 ) );
887
888             /* Remove deleted logical streams */
889             for( i = 0; i < p_sys->i_del_streams; i++ )
890             {
891                 FREE( p_sys->pp_del_streams[i]->p_oggds_header );
892                 FREE( p_sys->pp_del_streams[i] );
893             }
894             FREE( p_sys->pp_del_streams );
895             p_sys->i_streams = 0;
896         }
897
898         msg_Dbg( p_mux, "writing header" );
899         p_sys->i_start_dts = i_dts;
900         p_sys->i_streams = p_mux->i_nb_inputs;
901         p_sys->i_del_streams = 0;
902         p_sys->i_add_streams = 0;
903         block_ChainAppend( &p_og, OggCreateHeader( p_mux, i_dts ) );
904
905         /* Write header and/or footer */
906         OggSetDate( p_og, i_dts, 0 );
907         sout_AccessOutWrite( p_mux->p_access, p_og );
908         p_og = NULL;
909     }
910
911     for( ;; )
912     {
913         if( MuxGetStream( p_mux, &i_stream, 0 ) < 0 ) return VLC_SUCCESS;
914         MuxBlock( p_mux, p_mux->pp_inputs[i_stream] );
915     }
916
917     return VLC_SUCCESS;
918 }
919
920 static int MuxBlock( sout_mux_t *p_mux, sout_input_t *p_input )
921 {
922     sout_mux_sys_t *p_sys = p_mux->p_sys;
923     ogg_stream_t *p_stream = (ogg_stream_t*)p_input->p_sys;
924     block_t *p_data = block_FifoGet( p_input->p_fifo );
925     block_t *p_og = NULL;
926     ogg_packet op;
927
928     if( p_stream->i_fourcc != VLC_FOURCC( 'v', 'o', 'r', 'b' ) &&
929         p_stream->i_fourcc != VLC_FOURCC( 'f', 'l', 'a', 'c' ) &&
930         p_stream->i_fourcc != VLC_FOURCC( 's', 'p', 'x', ' ' ) &&
931         p_stream->i_fourcc != VLC_FOURCC( 't', 'h', 'e', 'o' ) )
932     {
933         p_data = block_Realloc( p_data, 1, p_data->i_buffer );
934         p_data->p_buffer[0] = PACKET_IS_SYNCPOINT;      // FIXME
935     }
936
937     op.packet   = p_data->p_buffer;
938     op.bytes    = p_data->i_buffer;
939     op.b_o_s    = 0;
940     op.e_o_s    = 0;
941     op.packetno = p_stream->i_packet_no++;
942
943     if( p_stream->i_cat == AUDIO_ES )
944     {
945         if( p_stream->i_fourcc == VLC_FOURCC( 'v', 'o', 'r', 'b' ) ||
946             p_stream->i_fourcc == VLC_FOURCC( 'f', 'l', 'a', 'c' ) ||
947             p_stream->i_fourcc == VLC_FOURCC( 's', 'p', 'x', ' ' ) )
948         {
949             /* number of sample from begining + current packet */
950             op.granulepos =
951                 ( p_data->i_dts - p_sys->i_start_dts + p_data->i_length ) *
952                 (mtime_t)p_input->p_fmt->audio.i_rate / I64C(1000000);
953         }
954         else if( p_stream->p_oggds_header )
955         {
956             /* number of sample from begining */
957             op.granulepos = ( p_data->i_dts - p_sys->i_start_dts ) *
958                 p_stream->p_oggds_header->i_samples_per_unit / I64C(1000000);
959         }
960     }
961     else if( p_stream->i_cat == VIDEO_ES )
962     {
963         if( p_stream->i_fourcc == VLC_FOURCC( 't', 'h', 'e', 'o' ) )
964         {
965             /* FIXME, we assume only keyframes */
966             op.granulepos = ( ( p_data->i_dts - p_sys->i_start_dts ) *
967                 p_input->p_fmt->video.i_frame_rate /
968                 p_input->p_fmt->video.i_frame_rate_base /
969                 I64C(1000000) ) << p_stream->i_keyframe_granule_shift;
970         }
971         else if( p_stream->p_oggds_header )
972             op.granulepos = ( p_data->i_dts - p_sys->i_start_dts ) * I64C(10) /
973                 p_stream->p_oggds_header->i_time_unit;
974     }
975     else if( p_stream->i_cat == SPU_ES )
976     {
977         /* granulepos is in milisec */
978         op.granulepos = ( p_data->i_dts - p_sys->i_start_dts ) / 1000;
979     }
980
981     ogg_stream_packetin( &p_stream->os, &op );
982
983     if( p_stream->i_cat == SPU_ES ||
984         p_stream->i_fourcc == VLC_FOURCC( 's', 'p', 'x', ' ' ) )
985     {
986         /* Subtitles or Speex packets are quite small so they 
987          * need to be flushed to be sent on time */
988         p_og = OggStreamFlush( p_mux, &p_stream->os, p_data->i_dts );
989     }
990     else
991     {
992         p_og = OggStreamPageOut( p_mux, &p_stream->os, p_data->i_dts );
993     }
994
995     if( p_og )
996     {
997         OggSetDate( p_og, p_stream->i_dts, p_stream->i_length );
998         p_stream->i_dts = -1;
999         p_stream->i_length = 0;
1000
1001         sout_AccessOutWrite( p_mux->p_access, p_og );
1002     }
1003     else
1004     {
1005         if( p_stream->i_dts < 0 )
1006         {
1007             p_stream->i_dts = p_data->i_dts;
1008         }
1009         p_stream->i_length += p_data->i_length;
1010     }
1011
1012     block_Release( p_data );
1013     return VLC_SUCCESS;
1014 }