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