]> git.sesse.net Git - vlc/blob - modules/mux/ogg.c
* all: cosmetics + MUX_GET_MIME.
[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 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] );
279         }
280         FREE( p_sys->pp_del_streams );
281         p_sys->i_streams -= p_sys->i_del_streams;
282
283         /* Write footer */
284         OggSetDate( p_og, i_dts, 0 );
285         sout_AccessOutWrite( p_mux->p_access, p_og );
286     }
287
288     free( p_sys );
289 }
290
291 /*****************************************************************************
292  * Control:
293  *****************************************************************************/
294 static int Control( sout_mux_t *p_mux, int i_query, va_list args )
295 {
296     vlc_bool_t *pb_bool;
297     char **ppsz;
298
299    switch( i_query )
300    {
301        case MUX_CAN_ADD_STREAM_WHILE_MUXING:
302            pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
303            *pb_bool = VLC_TRUE;
304            return VLC_SUCCESS;
305
306        case MUX_GET_ADD_STREAM_WAIT:
307            pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
308            *pb_bool = VLC_TRUE;
309            return VLC_SUCCESS;
310
311        case MUX_GET_MIME:
312            ppsz = (char**)va_arg( args, char ** );
313            *ppsz = strdup( "application/ogg" );
314            return VLC_SUCCESS;
315
316         default:
317             return VLC_EGENERIC;
318    }
319 }
320 /*****************************************************************************
321  * AddStream: Add an elementary stream to the muxed stream
322  *****************************************************************************/
323 static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
324 {
325     sout_mux_sys_t *p_sys = p_mux->p_sys;
326     ogg_stream_t   *p_stream;
327
328     msg_Dbg( p_mux, "adding input" );
329
330     p_input->p_sys = p_stream = malloc( sizeof( ogg_stream_t ) );
331
332     p_stream->i_cat       = p_input->p_fmt->i_cat;
333     p_stream->i_fourcc    = p_input->p_fmt->i_codec;
334     p_stream->i_serial_no = p_sys->i_next_serial_no++;
335     p_stream->i_packet_no = 0;
336
337     p_stream->i_sout_headers = 0;
338
339     memset( &p_stream->oggds_header, 0, sizeof(p_stream->oggds_header) );
340     p_stream->oggds_header.i_packet_type = PACKET_TYPE_HEADER;
341     switch( p_input->p_fmt->i_cat )
342     {
343     case VIDEO_ES:
344         if( !p_input->p_fmt->video.i_frame_rate ||
345             !p_input->p_fmt->video.i_frame_rate_base )
346         {
347             msg_Warn( p_mux, "Missing frame rate, assuming 25fps" );
348             p_input->p_fmt->video.i_frame_rate = 25;
349             p_input->p_fmt->video.i_frame_rate_base = 1;
350         }
351
352         switch( p_stream->i_fourcc )
353         {
354         case VLC_FOURCC( 'm', 'p', 'g', 'v' ):
355         case VLC_FOURCC( 'm', 'p', '4', 'v' ):
356         case VLC_FOURCC( 'D', 'I', 'V', '3' ):
357         case VLC_FOURCC( 'M', 'J', 'P', 'G' ):
358         case VLC_FOURCC( 'W', 'M', 'V', '1' ):
359         case VLC_FOURCC( 'W', 'M', 'V', '2' ):
360             memcpy( p_stream->oggds_header.stream_type, "video", 5 );
361             if( p_stream->i_fourcc == VLC_FOURCC( 'm', 'p', '4', 'v' ) )
362             {
363                 memcpy( p_stream->oggds_header.sub_type, "XVID", 4 );
364             }
365             else if( p_stream->i_fourcc == VLC_FOURCC( 'D', 'I', 'V', '3' ) )
366             {
367                 memcpy( p_stream->oggds_header.sub_type, "DIV3", 4 );
368             }
369             else
370             {
371                 memcpy(p_stream->oggds_header.sub_type,&p_stream->i_fourcc,4);
372             }
373             SetDWLE( &p_stream->oggds_header.i_size,
374                      sizeof( oggds_header_t ) - 1);
375             SetQWLE( &p_stream->oggds_header.i_time_unit,
376                      I64C(10000000) * p_input->p_fmt->video.i_frame_rate_base /
377                      (int64_t)p_input->p_fmt->video.i_frame_rate );
378             SetQWLE( &p_stream->oggds_header.i_samples_per_unit, 1 );
379             SetDWLE( &p_stream->oggds_header.i_default_len, 1 ); /* ??? */
380             SetDWLE( &p_stream->oggds_header.i_buffer_size, 1024*1024 );
381             SetWLE( &p_stream->oggds_header.i_bits_per_sample, 0 );
382             SetDWLE( &p_stream->oggds_header.header.video.i_width,
383                      p_input->p_fmt->video.i_width );
384             SetDWLE( &p_stream->oggds_header.header.video.i_height,
385                      p_input->p_fmt->video.i_height );
386             msg_Dbg( p_mux, "%4.4s stream", (char *)&p_stream->i_fourcc );
387             break;
388
389         case VLC_FOURCC( 't', 'h', 'e', 'o' ):
390             msg_Dbg( p_mux, "theora stream" );
391             break;
392
393         default:
394             FREE( p_input->p_sys );
395             return VLC_EGENERIC;
396         }
397         break;
398
399     case AUDIO_ES:
400         switch( p_stream->i_fourcc )
401         {
402         case VLC_FOURCC( 'm', 'p', 'g', 'a' ):
403         case VLC_FOURCC( 'a', '5', '2', ' ' ):
404             memcpy( p_stream->oggds_header.stream_type, "audio", 5 );
405             if( p_stream->i_fourcc == VLC_FOURCC( 'm', 'p', 'g', 'a' ) )
406             {
407                 memcpy( p_stream->oggds_header.sub_type, "55  ", 4 );
408             }
409             else if( p_stream->i_fourcc == VLC_FOURCC( 'a', '5', '2', ' ' ) )
410             {
411                 memcpy( p_stream->oggds_header.sub_type, "2000", 4 );
412             }
413             SetDWLE( &p_stream->oggds_header.i_size,
414                      sizeof( oggds_header_t ) - 1);
415             SetQWLE( &p_stream->oggds_header.i_time_unit, 0 /* not used */ );
416             SetDWLE( &p_stream->oggds_header.i_default_len, 1 );
417             SetDWLE( &p_stream->oggds_header.i_buffer_size, 30*1024 );
418             SetQWLE( &p_stream->oggds_header.i_samples_per_unit,
419                      p_input->p_fmt->audio.i_rate );
420             SetWLE( &p_stream->oggds_header.i_bits_per_sample, 0 );
421             SetDWLE( &p_stream->oggds_header.header.audio.i_channels,
422                      p_input->p_fmt->audio.i_channels );
423             SetDWLE( &p_stream->oggds_header.header.audio.i_block_align,
424                      p_input->p_fmt->audio.i_blockalign );
425             SetDWLE( &p_stream->oggds_header.header.audio.i_avgbytespersec, 0);
426             msg_Dbg( p_mux, "mpga/a52 stream" );
427             break;
428
429         case VLC_FOURCC( 'v', 'o', 'r', 'b' ):
430             msg_Dbg( p_mux, "vorbis stream" );
431             break;
432
433         case VLC_FOURCC( 's', 'p', 'x', ' ' ):
434             msg_Dbg( p_mux, "speex stream" );
435             break;
436
437         case VLC_FOURCC( 'f', 'l', 'a', 'c' ):
438             msg_Dbg( p_mux, "flac stream" );
439             break;
440
441         default:
442             FREE( p_input->p_sys );
443             return VLC_EGENERIC;
444         }
445         break;
446
447     case SPU_ES:
448         switch( p_stream->i_fourcc )
449         {
450         case VLC_FOURCC( 's', 'u','b', 't' ):
451             memcpy( p_stream->oggds_header.stream_type, "text", 4 );
452             msg_Dbg( p_mux, "subtitles stream" );
453             break;
454
455         default:
456             FREE( p_input->p_sys );
457             return VLC_EGENERIC;
458         }
459         break;
460     default:
461         FREE( p_input->p_sys );
462         return VLC_EGENERIC;
463     }
464
465     p_stream->b_new = VLC_TRUE;
466
467     p_sys->i_add_streams++;
468
469     return VLC_SUCCESS;
470 }
471
472 /*****************************************************************************
473  * DelStream: Delete an elementary stream from the muxed stream
474  *****************************************************************************/
475 static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
476 {
477     sout_mux_sys_t *p_sys  = p_mux->p_sys;
478     ogg_stream_t   *p_stream = (ogg_stream_t*)p_input->p_sys;
479     block_t *p_og;
480
481     msg_Dbg( p_mux, "removing input" );
482
483     /* flush all remaining data */
484     if( p_input->p_sys )
485     {
486         int i;
487
488         if( !p_stream->b_new &&
489             ( p_og = OggStreamFlush( p_mux, &p_stream->os, 0 ) ) )
490         {
491             OggSetDate( p_og, p_stream->i_dts, p_stream->i_length );
492             sout_AccessOutWrite( p_mux->p_access, p_og );
493         }
494
495         for( i = 0; i < p_stream->i_sout_headers; i++ )
496         {
497             block_Release( p_stream->pp_sout_headers[i] );
498             p_stream->i_sout_headers = 0;
499         }
500
501         /* move input in delete queue */
502         if( !p_stream->b_new )
503         {
504             p_sys->pp_del_streams = realloc( p_sys->pp_del_streams,
505                                              (p_sys->i_del_streams + 1) *
506                                              sizeof(ogg_stream_t *) );
507             p_sys->pp_del_streams[p_sys->i_del_streams++] = p_stream;
508         }
509         else
510         {
511             /* Wasn't already added so get rid of it */
512             FREE( p_stream );
513             p_sys->i_add_streams--;
514         }
515     }
516
517     p_input->p_sys = NULL;
518
519     return 0;
520 }
521
522 /*****************************************************************************
523  * Ogg bitstream manipulation routines
524  *****************************************************************************/
525 static block_t *OggStreamFlush( sout_mux_t *p_mux,
526                                 ogg_stream_state *p_os, mtime_t i_pts )
527 {
528     block_t *p_og, *p_og_first = NULL;
529     ogg_page og;
530
531     while( ogg_stream_flush( p_os, &og ) )
532     {
533         /* Flush all data */
534         p_og = block_New( p_mux, og.header_len + og.body_len );
535
536         memcpy( p_og->p_buffer, og.header, og.header_len );
537         memcpy( p_og->p_buffer + og.header_len, og.body, og.body_len );
538         p_og->i_dts     = 0;
539         p_og->i_pts     = i_pts;
540         p_og->i_length  = 0;
541
542         i_pts = 0; // write it only once
543
544         block_ChainAppend( &p_og_first, p_og );
545     }
546
547     return p_og_first;
548 }
549
550 static block_t *OggStreamPageOut( sout_mux_t *p_mux,
551                                   ogg_stream_state *p_os, mtime_t i_pts )
552 {
553     block_t *p_og, *p_og_first = NULL;
554     ogg_page og;
555
556     while( ogg_stream_pageout( p_os, &og ) )
557     {
558         /* Flush all data */
559         p_og = block_New( p_mux, og.header_len + og.body_len );
560
561         memcpy( p_og->p_buffer, og.header, og.header_len );
562         memcpy( p_og->p_buffer + og.header_len, og.body, og.body_len );
563         p_og->i_dts     = 0;
564         p_og->i_pts     = i_pts;
565         p_og->i_length  = 0;
566
567         i_pts = 0; // write them only once
568
569         block_ChainAppend( &p_og_first, p_og );
570     }
571
572     return p_og_first;
573 }
574
575 static block_t *OggCreateHeader( sout_mux_t *p_mux, mtime_t i_dts )
576 {
577     block_t *p_hdr = NULL;
578     block_t *p_og;
579     ogg_packet    op;
580     int i;
581
582     /* Write header for each stream. All b_o_s (beginning of stream) packets
583      * must appear first in the ogg stream so we take care of them first. */
584     for( i = 0; i < p_mux->i_nb_inputs; i++ )
585     {
586         ogg_stream_t *p_stream = (ogg_stream_t*)p_mux->pp_inputs[i]->p_sys;
587         p_stream->b_new = VLC_FALSE;
588
589         msg_Dbg( p_mux, "creating header for %4.4s",
590                  (char *)&p_stream->i_fourcc );
591
592         ogg_stream_init( &p_stream->os, p_stream->i_serial_no );
593         p_stream->i_packet_no = 0;
594
595         if( p_stream->i_fourcc == VLC_FOURCC( 'v', 'o', 'r', 'b' ) ||
596             p_stream->i_fourcc == VLC_FOURCC( 's', 'p', 'x', ' ' ) ||
597             p_stream->i_fourcc == VLC_FOURCC( 't', 'h', 'e', 'o' ) )
598         {
599             /* Special case, headers are already there in the
600              * incoming stream or we backed them up earlier */
601
602             /* first packet in order: vorbis/speex/theora info */
603             if( !p_stream->i_sout_headers )
604             {
605                 p_og = block_FifoGet( p_mux->pp_inputs[i]->p_fifo );
606                 op.packet = p_og->p_buffer;
607                 op.bytes  = p_og->i_buffer;
608                 op.b_o_s  = 1;
609                 op.e_o_s  = 0;
610                 op.granulepos = 0;
611                 op.packetno = p_stream->i_packet_no++;
612                 ogg_stream_packetin( &p_stream->os, &op );
613                 p_stream->pp_sout_headers[0] =
614                     OggStreamFlush( p_mux, &p_stream->os, 0 );
615                 p_stream->i_sout_headers++;
616             }
617             p_og = block_Duplicate( p_stream->pp_sout_headers[0] );
618
619             /* Get keyframe_granule_shift for theora granulepos calculation */
620             if( p_stream->i_fourcc == VLC_FOURCC( 't', 'h', 'e', 'o' ) )
621             {
622                 int i_keyframe_frequency_force =
623                       1 << ((op.packet[40] << 6 >> 3) | (op.packet[41] >> 5));
624
625                 /* granule_shift = i_log( frequency_force -1 ) */
626                 p_stream->i_keyframe_granule_shift = 0;
627                 i_keyframe_frequency_force--;
628                 while( i_keyframe_frequency_force )
629                 {
630                     p_stream->i_keyframe_granule_shift++;
631                     i_keyframe_frequency_force >>= 1;
632                 }
633             }
634         }
635         else if( p_stream->i_fourcc == VLC_FOURCC( 'f', 'l', 'a', 'c' ) )
636         {
637             /* flac stream marker (yeah, only that in the 1st packet) */
638             op.packet = "fLaC";
639             op.bytes  = 4;
640             op.b_o_s  = 1;
641             op.e_o_s  = 0;
642             op.granulepos = 0;
643             op.packetno = p_stream->i_packet_no++;
644             ogg_stream_packetin( &p_stream->os, &op );
645             p_og = OggStreamFlush( p_mux, &p_stream->os, 0 );
646         }
647         else
648         {
649             /* ds header */
650             op.packet = (uint8_t*)&p_stream->oggds_header;
651             op.bytes  = sizeof( oggds_header_t );
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
660         block_ChainAppend( &p_hdr, p_og );
661     }
662
663     /* Take care of the non b_o_s headers */
664     for( i = 0; i < p_mux->i_nb_inputs; i++ )
665     {
666         ogg_stream_t *p_stream = (ogg_stream_t*)p_mux->pp_inputs[i]->p_sys;
667
668         if( p_stream->i_fourcc == VLC_FOURCC( 'v', 'o', 'r', 'b' ) ||
669             p_stream->i_fourcc == VLC_FOURCC( 's', 'p', 'x', ' ' ) ||
670             p_stream->i_fourcc == VLC_FOURCC( 't', 'h', 'e', 'o' ) )
671         {
672             /* Special case, headers are already there in the incoming stream.
673              * We need to gather them an mark them as headers. */
674             int j;
675             for( j = 0; j < 2; j++ )
676             {
677                 if( p_stream->i_sout_headers < j + 2 )
678                 {
679                     /* next packets in order: comments and codebooks */
680                     p_og = block_FifoGet( p_mux->pp_inputs[i]->p_fifo );
681                     op.packet = p_og->p_buffer;
682                     op.bytes  = p_og->i_buffer;
683                     op.b_o_s  = 0;
684                     op.e_o_s  = 0;
685                     op.granulepos = 0;
686                     op.packetno = p_stream->i_packet_no++;
687                     ogg_stream_packetin( &p_stream->os, &op );
688                     p_stream->pp_sout_headers[j+1] =
689                         OggStreamFlush( p_mux, &p_stream->os, 0 );
690                     p_stream->i_sout_headers++;
691                 }
692
693                 p_og = block_Duplicate( p_stream->pp_sout_headers[j+1] );
694                 block_ChainAppend( &p_hdr, p_og );
695             }
696         }
697         else if( p_stream->i_fourcc != VLC_FOURCC( 'f', 'l', 'a', 'c' ) )
698         {
699             uint8_t com[128];
700             int     i_com;
701
702             /* comment */
703             com[0] = PACKET_TYPE_COMMENT;
704             i_com = snprintf( &com[1], 128, VERSION" stream output" ) + 1;
705             op.packet = com;
706             op.bytes  = i_com;
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_og = OggStreamFlush( p_mux, &p_stream->os, 0 );
713             block_ChainAppend( &p_hdr, p_og );
714         }
715
716         /* Special case for mp4v and flac */
717         if( ( p_stream->i_fourcc == VLC_FOURCC( 'm', 'p', '4', 'v' ) ||
718               p_stream->i_fourcc == VLC_FOURCC( 'f', 'l', 'a', 'c' ) ) &&
719             p_mux->pp_inputs[i]->p_fmt->i_extra )
720         {
721             /* Send a packet with the VOL data for mp4v
722              * or STREAMINFO for flac */
723             msg_Dbg( p_mux, "writing extra data" );
724             op.bytes  = p_mux->pp_inputs[i]->p_fmt->i_extra;
725             op.packet = p_mux->pp_inputs[i]->p_fmt->p_extra;
726             if( p_stream->i_fourcc == VLC_FOURCC( 'f', 'l', 'a', 'c' ) )
727             {
728                 /* Skip the flac stream marker */
729                 op.bytes -= 4;
730                 op.packet+= 4;
731             }
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
742     /* set HEADER flag */
743     for( p_og = p_hdr; p_og != NULL; p_og = p_og->p_next )
744     {
745         p_og->i_flags |= BLOCK_FLAG_HEADER;
746     }
747     return p_hdr;
748 }
749
750 static block_t *OggCreateFooter( sout_mux_t *p_mux, mtime_t i_dts )
751 {
752     sout_mux_sys_t *p_sys = p_mux->p_sys;
753     block_t *p_hdr = NULL;
754     block_t *p_og;
755     ogg_packet    op;
756     int i;
757
758     /* flush all remaining data */
759     for( i = 0; i < p_mux->i_nb_inputs; i++ )
760     {
761         ogg_stream_t *p_stream = p_mux->pp_inputs[i]->p_sys;
762
763         /* skip newly added streams */
764         if( p_stream->b_new ) continue;
765
766         if( ( p_og = OggStreamFlush( p_mux, &p_stream->os, 0 ) ) )
767         {
768             OggSetDate( p_og, p_stream->i_dts, p_stream->i_length );
769             sout_AccessOutWrite( p_mux->p_access, p_og );
770         }
771     }
772
773     /* Write eos packets for each stream. */
774     for( i = 0; i < p_mux->i_nb_inputs; i++ )
775     {
776         ogg_stream_t *p_stream = p_mux->pp_inputs[i]->p_sys;
777
778         /* skip newly added streams */
779         if( p_stream->b_new ) continue;
780
781         op.packet = NULL;
782         op.bytes  = 0;
783         op.b_o_s  = 0;
784         op.e_o_s  = 1;
785         op.granulepos = -1;
786         op.packetno = p_stream->i_packet_no++;
787         ogg_stream_packetin( &p_stream->os, &op );
788
789         p_og = OggStreamFlush( p_mux, &p_stream->os, 0 );
790         block_ChainAppend( &p_hdr, p_og );
791         ogg_stream_clear( &p_stream->os );
792     }
793
794     for( i = 0; i < p_sys->i_del_streams; i++ )
795     {
796         op.packet = NULL;
797         op.bytes  = 0;
798         op.b_o_s  = 0;
799         op.e_o_s  = 1;
800         op.granulepos = -1;
801         op.packetno = p_sys->pp_del_streams[i]->i_packet_no++;
802         ogg_stream_packetin( &p_sys->pp_del_streams[i]->os, &op );
803
804         p_og = OggStreamFlush( p_mux, &p_sys->pp_del_streams[i]->os, 0 );
805         block_ChainAppend( &p_hdr, p_og );
806         ogg_stream_clear( &p_sys->pp_del_streams[i]->os );
807     }
808
809     return p_hdr;
810 }
811
812 static void OggSetDate( block_t *p_og, mtime_t i_dts, mtime_t i_length )
813 {
814     int i_count;
815     block_t *p_tmp;
816     mtime_t i_delta;
817
818     for( p_tmp = p_og, i_count = 0; p_tmp != NULL; p_tmp = p_tmp->p_next )
819     {
820         i_count++;
821     }
822     i_delta = i_length / i_count;
823
824     for( p_tmp = p_og; p_tmp != NULL; p_tmp = p_tmp->p_next )
825     {
826         p_tmp->i_dts    = i_dts;
827         p_tmp->i_length = i_delta;
828
829         i_dts += i_delta;
830     }
831 }
832
833 /*****************************************************************************
834  * Mux: multiplex available data in input fifos into the Ogg bitstream
835  *****************************************************************************/
836 static int Mux( sout_mux_t *p_mux )
837 {
838     sout_mux_sys_t *p_sys = p_mux->p_sys;
839     block_t        *p_og = NULL;
840     int            i_stream;
841     mtime_t        i_dts;
842
843     if( p_sys->i_add_streams || p_sys->i_del_streams )
844     {
845         /* Open new ogg stream */
846         if( MuxGetStream( p_mux, &i_stream, &i_dts) < 0 )
847         {
848             msg_Dbg( p_mux, "waiting for data..." );
849             return VLC_SUCCESS;
850         }
851
852         if( p_sys->i_streams )
853         {
854             /* Close current ogg stream */
855             int i;
856
857             msg_Dbg( p_mux, "writing footer" );
858             block_ChainAppend( &p_og, OggCreateFooter( p_mux, 0 ) );
859
860             /* Remove deleted logical streams */
861             for( i = 0; i < p_sys->i_del_streams; i++ )
862             {
863                 FREE( p_sys->pp_del_streams[i] );
864             }
865             FREE( p_sys->pp_del_streams );
866             p_sys->i_streams = 0;
867         }
868
869         msg_Dbg( p_mux, "writing header" );
870         p_sys->i_start_dts = i_dts;
871         p_sys->i_streams = p_mux->i_nb_inputs;
872         p_sys->i_del_streams = 0;
873         p_sys->i_add_streams = 0;
874         block_ChainAppend( &p_og, OggCreateHeader( p_mux, i_dts ) );
875
876         /* Write header and/or footer */
877         OggSetDate( p_og, i_dts, 0 );
878         sout_AccessOutWrite( p_mux->p_access, p_og );
879         p_og = NULL;
880     }
881
882     for( ;; )
883     {
884         sout_input_t *p_input;
885         ogg_stream_t *p_stream;
886         block_t *p_data;
887         ogg_packet op;
888
889         if( MuxGetStream( p_mux, &i_stream, &i_dts) < 0 )
890         {
891             return VLC_SUCCESS;
892         }
893
894         p_input  = p_mux->pp_inputs[i_stream];
895         p_stream = (ogg_stream_t*)p_input->p_sys;
896         p_data   = block_FifoGet( p_input->p_fifo );
897
898         if( p_stream->i_fourcc != VLC_FOURCC( 'v', 'o', 'r', 'b' ) &&
899             p_stream->i_fourcc != VLC_FOURCC( 'f', 'l', 'a', 'c' ) &&
900             p_stream->i_fourcc != VLC_FOURCC( 's', 'p', 'x', ' ' ) &&
901             p_stream->i_fourcc != VLC_FOURCC( 't', 'h', 'e', 'o' ) )
902         {
903             p_data = block_Realloc( p_data, 1, p_data->i_buffer );
904             p_data->p_buffer[0] = PACKET_IS_SYNCPOINT;      // FIXME
905         }
906
907         op.packet   = p_data->p_buffer;
908         op.bytes    = p_data->i_buffer;
909         op.b_o_s    = 0;
910         op.e_o_s    = 0;
911         op.packetno = p_stream->i_packet_no++;
912
913         if( p_stream->i_cat == AUDIO_ES )
914         {
915             if( p_stream->i_fourcc == VLC_FOURCC( 'v', 'o', 'r', 'b' ) ||
916                 p_stream->i_fourcc == VLC_FOURCC( 'f', 'l', 'a', 'c' ) ||
917                 p_stream->i_fourcc == VLC_FOURCC( 's', 'p', 'x', ' ' ) )
918             {
919                 /* number of sample from begining + current packet */
920                 op.granulepos =
921                     ( i_dts - p_sys->i_start_dts + p_data->i_length ) *
922                     (mtime_t)p_input->p_fmt->audio.i_rate / I64C(1000000);
923             }
924             else
925             {
926                 /* number of sample from begining */
927                 op.granulepos = ( i_dts - p_sys->i_start_dts ) *
928                     p_stream->oggds_header.i_samples_per_unit / I64C(1000000);
929             }
930         }
931         else if( p_stream->i_cat == VIDEO_ES )
932         {
933             if( p_stream->i_fourcc == VLC_FOURCC( 't', 'h', 'e', 'o' ) )
934             {
935                 /* FIXME, we assume only keyframes */
936                 op.granulepos = ( ( i_dts - p_sys->i_start_dts ) *
937                     p_input->p_fmt->video.i_frame_rate /
938                     p_input->p_fmt->video.i_frame_rate_base /
939                     I64C(1000000) ) << p_stream->i_keyframe_granule_shift;
940             }
941             else
942                 op.granulepos = ( i_dts - p_sys->i_start_dts ) * I64C(10) /
943                     p_stream->oggds_header.i_time_unit;
944         }
945         else if( p_stream->i_cat == SPU_ES )
946         {
947             /* granulepos is in milisec */
948             op.granulepos = ( i_dts - p_sys->i_start_dts ) / 1000;
949         }
950
951         ogg_stream_packetin( &p_stream->os, &op );
952
953         if( p_stream->i_cat == SPU_ES ||
954             p_stream->i_fourcc == VLC_FOURCC( 's', 'p', 'x', ' ' ) )
955         {
956             /* Subtitles or Speex packets are quite small so they 
957              * need to be flushed to be sent on time */
958             p_og = OggStreamFlush( p_mux, &p_stream->os, p_data->i_dts );
959         }
960         else
961         {
962             p_og = OggStreamPageOut( p_mux, &p_stream->os, p_data->i_dts );
963         }
964
965         if( p_og )
966         {
967             OggSetDate( p_og, p_stream->i_dts, p_stream->i_length );
968             p_stream->i_dts = -1;
969             p_stream->i_length = 0;
970
971             sout_AccessOutWrite( p_mux->p_access, p_og );
972         }
973         else
974         {
975             if( p_stream->i_dts < 0 )
976             {
977                 p_stream->i_dts = p_data->i_dts;
978             }
979             p_stream->i_length += p_data->i_length;
980         }
981
982         block_Release( p_data );
983     }
984
985     return VLC_SUCCESS;
986 }