]> git.sesse.net Git - vlc/blob - modules/mux/ogg.c
* include/vlc_es_out.h, src/input/es_out.c: added an ES_OUT_SET_FMT control.
[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     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 )
150         {
151             block_t *p_buf;
152
153             p_buf = block_FifoShow( p_fifo );
154             if( i_stream < 0 || p_buf->i_dts < i_dts )
155             {
156                 i_dts = p_buf->i_dts;
157                 i_stream = i;
158             }
159         }
160         else return -1;
161
162     }
163     if( pi_stream )
164     {
165         *pi_stream = i_stream;
166     }
167     if( pi_dts )
168     {
169         *pi_dts = i_dts;
170     }
171     return i_stream;
172 }
173
174 /*****************************************************************************
175  * Definitions of structures and functions used by this plugins 
176  *****************************************************************************/
177 typedef struct
178 {
179     int i_cat;
180     int i_fourcc;
181
182     int b_new;
183
184     mtime_t i_dts;
185     mtime_t i_length;
186     int     i_packet_no;
187     int     i_serial_no;
188     int     i_keyframe_granule_shift; /* Theora only */
189     ogg_stream_state os;
190
191     oggds_header_t *p_oggds_header;
192
193 } ogg_stream_t;
194
195 struct sout_mux_sys_t
196 {
197     int     i_streams;
198
199     mtime_t i_start_dts;
200     int     i_next_serial_no;
201
202     /* number of logical streams pending to be added */
203     int i_add_streams;
204
205     /* logical streams pending to be deleted */
206     int i_del_streams;
207     ogg_stream_t **pp_del_streams;
208 };
209
210 static void OggSetDate( block_t *, mtime_t , mtime_t  );
211 static block_t *OggStreamFlush( sout_mux_t *, ogg_stream_state *, mtime_t );
212
213 /*****************************************************************************
214  * Open: Open muxer
215  *****************************************************************************/
216 static int Open( vlc_object_t *p_this )
217 {
218     sout_mux_t      *p_mux = (sout_mux_t*)p_this;
219     sout_mux_sys_t  *p_sys;
220
221     msg_Info( p_mux, "Open" );
222
223     p_sys                 = malloc( sizeof( sout_mux_sys_t ) );
224     p_sys->i_streams      = 0;
225     p_sys->i_add_streams  = 0;
226     p_sys->i_del_streams  = 0;
227     p_sys->pp_del_streams = 0;
228
229     p_mux->p_sys        = p_sys;
230     p_mux->pf_control   = Control;
231     p_mux->pf_addstream = AddStream;
232     p_mux->pf_delstream = DelStream;
233     p_mux->pf_mux       = Mux;
234
235     /* First serial number is random.
236      * (Done like this because on win32 you need to seed the random number
237      *  generator once per thread). */
238     srand( (unsigned int)time( NULL ) );
239     p_sys->i_next_serial_no = rand();
240
241     return VLC_SUCCESS;
242 }
243
244 /*****************************************************************************
245  * Close: Finalize ogg bitstream and close muxer
246  *****************************************************************************/
247 static void Close( vlc_object_t * p_this )
248 {
249     sout_mux_t     *p_mux = (sout_mux_t*)p_this;
250     sout_mux_sys_t *p_sys = p_mux->p_sys;
251
252     msg_Info( p_mux, "Close" );
253
254     if( p_sys->i_del_streams )
255     {
256         block_t *p_og = NULL;
257         mtime_t i_dts = -1;
258         int i;
259
260         /* Close the current ogg stream */
261         msg_Dbg( p_mux, "writing footer" );
262         block_ChainAppend( &p_og, OggCreateFooter( p_mux, 0 ) );
263
264         /* Remove deleted logical streams */
265         for( i = 0; i < p_sys->i_del_streams; i++ )
266         {
267             i_dts = p_sys->pp_del_streams[i]->i_dts;
268             ogg_stream_clear( &p_sys->pp_del_streams[i]->os );
269             FREE( p_sys->pp_del_streams[i]->p_oggds_header );
270             FREE( p_sys->pp_del_streams[i] );
271         }
272         FREE( p_sys->pp_del_streams );
273         p_sys->i_streams -= p_sys->i_del_streams;
274
275         /* Write footer */
276         OggSetDate( p_og, i_dts, 0 );
277         sout_AccessOutWrite( p_mux->p_access, p_og );
278     }
279
280     free( p_sys );
281 }
282
283 /*****************************************************************************
284  * Control:
285  *****************************************************************************/
286 static int Control( sout_mux_t *p_mux, int i_query, va_list args )
287 {
288     vlc_bool_t *pb_bool;
289     char **ppsz;
290
291    switch( i_query )
292    {
293        case MUX_CAN_ADD_STREAM_WHILE_MUXING:
294            pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
295            *pb_bool = VLC_TRUE;
296            return VLC_SUCCESS;
297
298        case MUX_GET_ADD_STREAM_WAIT:
299            pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
300            *pb_bool = VLC_TRUE;
301            return VLC_SUCCESS;
302
303        case MUX_GET_MIME:
304            ppsz = (char**)va_arg( args, char ** );
305            *ppsz = strdup( "application/ogg" );
306            return VLC_SUCCESS;
307
308         default:
309             return VLC_EGENERIC;
310    }
311 }
312 /*****************************************************************************
313  * AddStream: Add an elementary stream to the muxed stream
314  *****************************************************************************/
315 static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
316 {
317     sout_mux_sys_t *p_sys = p_mux->p_sys;
318     ogg_stream_t   *p_stream;
319     uint16_t i_tag;
320
321     msg_Dbg( p_mux, "adding input" );
322
323     p_input->p_sys = p_stream = malloc( sizeof( ogg_stream_t ) );
324
325     p_stream->i_cat       = p_input->p_fmt->i_cat;
326     p_stream->i_fourcc    = p_input->p_fmt->i_codec;
327     p_stream->i_serial_no = p_sys->i_next_serial_no++;
328     p_stream->i_packet_no = 0;
329
330     p_stream->p_oggds_header = 0;
331
332     switch( p_input->p_fmt->i_cat )
333     {
334     case VIDEO_ES:
335         if( !p_input->p_fmt->video.i_frame_rate ||
336             !p_input->p_fmt->video.i_frame_rate_base )
337         {
338             msg_Warn( p_mux, "Missing frame rate, assuming 25fps" );
339             p_input->p_fmt->video.i_frame_rate = 25;
340             p_input->p_fmt->video.i_frame_rate_base = 1;
341         }
342
343         switch( p_stream->i_fourcc )
344         {
345         case VLC_FOURCC( 'm', 'p', 'g', 'v' ):
346         case VLC_FOURCC( 'm', 'p', '4', 'v' ):
347         case VLC_FOURCC( 'D', 'I', 'V', '3' ):
348         case VLC_FOURCC( 'M', 'J', 'P', 'G' ):
349         case VLC_FOURCC( 'W', 'M', 'V', '1' ):
350         case VLC_FOURCC( 'W', 'M', 'V', '2' ):
351         case VLC_FOURCC( 'W', 'M', 'V', '3' ):
352             p_stream->p_oggds_header = malloc( sizeof(oggds_header_t) );
353             memset( p_stream->p_oggds_header, 0, sizeof(oggds_header_t) );
354             p_stream->p_oggds_header->i_packet_type = PACKET_TYPE_HEADER;
355
356             memcpy( p_stream->p_oggds_header->stream_type, "video", 5 );
357             if( p_stream->i_fourcc == VLC_FOURCC( 'm', 'p', '4', 'v' ) )
358             {
359                 memcpy( p_stream->p_oggds_header->sub_type, "XVID", 4 );
360             }
361             else if( p_stream->i_fourcc == VLC_FOURCC( 'D', 'I', 'V', '3' ) )
362             {
363                 memcpy( p_stream->p_oggds_header->sub_type, "DIV3", 4 );
364             }
365             else
366             {
367                 memcpy( p_stream->p_oggds_header->sub_type,
368                         &p_stream->i_fourcc, 4 );
369             }
370             SetDWLE( &p_stream->p_oggds_header->i_size,
371                      sizeof( oggds_header_t ) - 1 );
372             SetQWLE( &p_stream->p_oggds_header->i_time_unit,
373                      I64C(10000000) * p_input->p_fmt->video.i_frame_rate_base /
374                      (int64_t)p_input->p_fmt->video.i_frame_rate );
375             SetQWLE( &p_stream->p_oggds_header->i_samples_per_unit, 1 );
376             SetDWLE( &p_stream->p_oggds_header->i_default_len, 1 ); /* ??? */
377             SetDWLE( &p_stream->p_oggds_header->i_buffer_size, 1024*1024 );
378             SetWLE( &p_stream->p_oggds_header->i_bits_per_sample, 0 );
379             SetDWLE( &p_stream->p_oggds_header->header.video.i_width,
380                      p_input->p_fmt->video.i_width );
381             SetDWLE( &p_stream->p_oggds_header->header.video.i_height,
382                      p_input->p_fmt->video.i_height );
383             msg_Dbg( p_mux, "%4.4s stream", (char *)&p_stream->i_fourcc );
384             break;
385
386         case VLC_FOURCC( 't', 'h', 'e', 'o' ):
387             msg_Dbg( p_mux, "theora stream" );
388             break;
389
390         default:
391             FREE( p_input->p_sys );
392             return VLC_EGENERIC;
393         }
394         break;
395
396     case AUDIO_ES:
397         switch( p_stream->i_fourcc )
398         {
399         case VLC_FOURCC( 'v', 'o', 'r', 'b' ):
400             msg_Dbg( p_mux, "vorbis stream" );
401             break;
402
403         case VLC_FOURCC( 's', 'p', 'x', ' ' ):
404             msg_Dbg( p_mux, "speex stream" );
405             break;
406
407         case VLC_FOURCC( 'f', 'l', 'a', 'c' ):
408             msg_Dbg( p_mux, "flac stream" );
409             break;
410
411         default:
412             fourcc_to_wf_tag( p_stream->i_fourcc, &i_tag );
413             if( i_tag == WAVE_FORMAT_UNKNOWN )
414             {
415                 FREE( p_input->p_sys );
416                 return VLC_EGENERIC;
417             }
418
419             p_stream->p_oggds_header =
420                 malloc( sizeof(oggds_header_t) + p_input->p_fmt->i_extra );
421             memset( p_stream->p_oggds_header, 0, sizeof(oggds_header_t) );
422             p_stream->p_oggds_header->i_packet_type = PACKET_TYPE_HEADER;
423
424             SetDWLE( &p_stream->p_oggds_header->i_size,
425                      sizeof( oggds_header_t ) - 1 + p_input->p_fmt->i_extra );
426
427             if( p_input->p_fmt->i_extra )
428             {
429                 memcpy( &p_stream->p_oggds_header[1],
430                         p_input->p_fmt->p_extra, p_input->p_fmt->i_extra );
431             }
432
433             memcpy( p_stream->p_oggds_header->stream_type, "audio", 5 );
434
435             memset( p_stream->p_oggds_header->sub_type, 0, 4 );
436             sprintf( p_stream->p_oggds_header->sub_type, "%-x", i_tag );
437
438             SetQWLE( &p_stream->p_oggds_header->i_time_unit, I64C(10000000) );
439             SetDWLE( &p_stream->p_oggds_header->i_default_len, 1 );
440             SetDWLE( &p_stream->p_oggds_header->i_buffer_size, 30*1024 );
441             SetQWLE( &p_stream->p_oggds_header->i_samples_per_unit,
442                      p_input->p_fmt->audio.i_rate );
443             SetWLE( &p_stream->p_oggds_header->i_bits_per_sample,
444                     p_input->p_fmt->audio.i_bitspersample );
445             SetDWLE( &p_stream->p_oggds_header->header.audio.i_channels,
446                      p_input->p_fmt->audio.i_channels );
447             SetDWLE( &p_stream->p_oggds_header->header.audio.i_block_align,
448                      p_input->p_fmt->audio.i_blockalign );
449             SetDWLE( &p_stream->p_oggds_header->header.audio.i_avgbytespersec,
450                      p_input->p_fmt->i_bitrate / 8);
451             msg_Dbg( p_mux, "%4.4s stream", (char *)&p_stream->i_fourcc );
452             break;
453         }
454         break;
455
456     case SPU_ES:
457         switch( p_stream->i_fourcc )
458         {
459         case VLC_FOURCC( 's', 'u','b', 't' ):
460             p_stream->p_oggds_header = malloc( sizeof(oggds_header_t) );
461             memset( p_stream->p_oggds_header, 0, sizeof(oggds_header_t) );
462             p_stream->p_oggds_header->i_packet_type = PACKET_TYPE_HEADER;
463
464             memcpy( p_stream->p_oggds_header->stream_type, "text", 4 );
465             msg_Dbg( p_mux, "subtitles stream" );
466             break;
467
468         default:
469             FREE( p_input->p_sys );
470             return VLC_EGENERIC;
471         }
472         break;
473     default:
474         FREE( p_input->p_sys );
475         return VLC_EGENERIC;
476     }
477
478     p_stream->b_new = VLC_TRUE;
479
480     p_sys->i_add_streams++;
481
482     return VLC_SUCCESS;
483 }
484
485 /*****************************************************************************
486  * DelStream: Delete an elementary stream from the muxed stream
487  *****************************************************************************/
488 static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
489 {
490     sout_mux_sys_t *p_sys  = p_mux->p_sys;
491     ogg_stream_t   *p_stream = (ogg_stream_t*)p_input->p_sys;
492     block_t *p_og;
493
494     msg_Dbg( p_mux, "removing input" );
495
496     /* flush all remaining data */
497     if( p_input->p_sys )
498     {
499         if( !p_stream->b_new &&
500             ( p_og = OggStreamFlush( p_mux, &p_stream->os, 0 ) ) )
501         {
502             OggSetDate( p_og, p_stream->i_dts, p_stream->i_length );
503             sout_AccessOutWrite( p_mux->p_access, p_og );
504         }
505
506         /* move input in delete queue */
507         if( !p_stream->b_new )
508         {
509             p_sys->pp_del_streams = realloc( p_sys->pp_del_streams,
510                                              (p_sys->i_del_streams + 1) *
511                                              sizeof(ogg_stream_t *) );
512             p_sys->pp_del_streams[p_sys->i_del_streams++] = p_stream;
513         }
514         else
515         {
516             /* Wasn't already added so get rid of it */
517             FREE( p_stream->p_oggds_header );
518             FREE( p_stream );
519             p_sys->i_add_streams--;
520         }
521     }
522
523     p_input->p_sys = NULL;
524
525     return 0;
526 }
527
528 /*****************************************************************************
529  * Ogg bitstream manipulation routines
530  *****************************************************************************/
531 static block_t *OggStreamFlush( sout_mux_t *p_mux,
532                                 ogg_stream_state *p_os, mtime_t i_pts )
533 {
534     block_t *p_og, *p_og_first = NULL;
535     ogg_page og;
536
537     while( ogg_stream_flush( p_os, &og ) )
538     {
539         /* Flush all data */
540         p_og = block_New( p_mux, og.header_len + og.body_len );
541
542         memcpy( p_og->p_buffer, og.header, og.header_len );
543         memcpy( p_og->p_buffer + og.header_len, og.body, og.body_len );
544         p_og->i_dts     = 0;
545         p_og->i_pts     = i_pts;
546         p_og->i_length  = 0;
547
548         i_pts = 0; // write it only once
549
550         block_ChainAppend( &p_og_first, p_og );
551     }
552
553     return p_og_first;
554 }
555
556 static block_t *OggStreamPageOut( sout_mux_t *p_mux,
557                                   ogg_stream_state *p_os, mtime_t i_pts )
558 {
559     block_t *p_og, *p_og_first = NULL;
560     ogg_page og;
561
562     while( ogg_stream_pageout( p_os, &og ) )
563     {
564         /* Flush all data */
565         p_og = block_New( p_mux, og.header_len + og.body_len );
566
567         memcpy( p_og->p_buffer, og.header, og.header_len );
568         memcpy( p_og->p_buffer + og.header_len, og.body, og.body_len );
569         p_og->i_dts     = 0;
570         p_og->i_pts     = i_pts;
571         p_og->i_length  = 0;
572
573         i_pts = 0; // write them only once
574
575         block_ChainAppend( &p_og_first, p_og );
576     }
577
578     return p_og_first;
579 }
580
581 static block_t *OggCreateHeader( sout_mux_t *p_mux, mtime_t i_dts )
582 {
583     block_t *p_hdr = NULL;
584     block_t *p_og = NULL;
585     ogg_packet op;
586     uint8_t *p_extra;
587     int i, i_extra;
588
589     /* Write header for each stream. All b_o_s (beginning of stream) packets
590      * must appear first in the ogg stream so we take care of them first. */
591     for( i = 0; i < p_mux->i_nb_inputs; i++ )
592     {
593         sout_input_t *p_input = p_mux->pp_inputs[i];
594         ogg_stream_t *p_stream = (ogg_stream_t*)p_input->p_sys;
595         p_stream->b_new = VLC_FALSE;
596
597         msg_Dbg( p_mux, "creating header for %4.4s",
598                  (char *)&p_stream->i_fourcc );
599
600         ogg_stream_init( &p_stream->os, p_stream->i_serial_no );
601         p_stream->i_packet_no = 0;
602
603         if( p_stream->i_fourcc == VLC_FOURCC( 'v', 'o', 'r', 'b' ) ||
604             p_stream->i_fourcc == VLC_FOURCC( 's', 'p', 'x', ' ' ) ||
605             p_stream->i_fourcc == VLC_FOURCC( 't', 'h', 'e', 'o' ) )
606         {
607             /* First packet in order: vorbis/speex/theora info */
608             p_extra = p_input->p_fmt->p_extra;
609             i_extra = p_input->p_fmt->i_extra;
610
611             op.bytes = *(p_extra++) << 8;
612             op.bytes |= (*(p_extra++) & 0xFF);
613             op.packet = p_extra;
614             i_extra -= (op.bytes + 2);
615             if( i_extra < 0 )
616             {
617                 msg_Err( p_mux, "header data corrupted");
618                 op.bytes += i_extra;
619             }
620
621             op.b_o_s  = 1;
622             op.e_o_s  = 0;
623             op.granulepos = 0;
624             op.packetno = p_stream->i_packet_no++;
625             ogg_stream_packetin( &p_stream->os, &op );
626             p_og = OggStreamFlush( p_mux, &p_stream->os, 0 );
627
628             /* Get keyframe_granule_shift for theora granulepos calculation */
629             if( p_stream->i_fourcc == VLC_FOURCC( 't', 'h', 'e', 'o' ) )
630             {
631                 int i_keyframe_frequency_force =
632                       1 << ((op.packet[40] << 6 >> 3) | (op.packet[41] >> 5));
633
634                 /* granule_shift = i_log( frequency_force -1 ) */
635                 p_stream->i_keyframe_granule_shift = 0;
636                 i_keyframe_frequency_force--;
637                 while( i_keyframe_frequency_force )
638                 {
639                     p_stream->i_keyframe_granule_shift++;
640                     i_keyframe_frequency_force >>= 1;
641                 }
642             }
643         }
644         else if( p_stream->i_fourcc == VLC_FOURCC( 'f', 'l', 'a', 'c' ) )
645         {
646             /* flac stream marker (yeah, only that in the 1st packet) */
647             op.packet = "fLaC";
648             op.bytes  = 4;
649             op.b_o_s  = 1;
650             op.e_o_s  = 0;
651             op.granulepos = 0;
652             op.packetno = p_stream->i_packet_no++;
653             ogg_stream_packetin( &p_stream->os, &op );
654             p_og = OggStreamFlush( p_mux, &p_stream->os, 0 );
655         }
656         else if( p_stream->p_oggds_header )
657         {
658             /* ds header */
659             op.packet = (uint8_t*)p_stream->p_oggds_header;
660             op.bytes  = p_stream->p_oggds_header->i_size + 1;
661             op.b_o_s  = 1;
662             op.e_o_s  = 0;
663             op.granulepos = 0;
664             op.packetno = p_stream->i_packet_no++;
665             ogg_stream_packetin( &p_stream->os, &op );
666             p_og = OggStreamFlush( p_mux, &p_stream->os, 0 );
667         }
668
669         block_ChainAppend( &p_hdr, p_og );
670     }
671
672     /* Take care of the non b_o_s headers */
673     for( i = 0; i < p_mux->i_nb_inputs; i++ )
674     {
675         sout_input_t *p_input = p_mux->pp_inputs[i];
676         ogg_stream_t *p_stream = (ogg_stream_t*)p_input->p_sys;
677
678         if( p_stream->i_fourcc == VLC_FOURCC( 'v', 'o', 'r', 'b' ) ||
679             p_stream->i_fourcc == VLC_FOURCC( 's', 'p', 'x', ' ' ) ||
680             p_stream->i_fourcc == VLC_FOURCC( 't', 'h', 'e', 'o' ) )
681         {
682             /* Special case, headers are already there in the incoming stream.
683              * We need to gather them an mark them as headers. */
684             int j = 2;
685
686             if( p_stream->i_fourcc == VLC_FOURCC( 's', 'p', 'x', ' ' ) ) j = 1;
687
688             p_extra = p_input->p_fmt->p_extra;
689             i_extra = p_input->p_fmt->i_extra;
690
691             /* Skip 1 header */
692             op.bytes = *(p_extra++) << 8;
693             op.bytes |= (*(p_extra++) & 0xFF);
694             op.packet = p_extra;
695             p_extra += op.bytes;
696             i_extra -= (op.bytes + 2);
697
698             while( j-- )
699             {
700                 op.bytes = *(p_extra++) << 8;
701                 op.bytes |= (*(p_extra++) & 0xFF);
702                 op.packet = p_extra;
703                 p_extra += op.bytes;
704                 i_extra -= (op.bytes + 2);
705                 if( i_extra < 0 )
706                 {
707                     msg_Err( p_mux, "header data corrupted");
708                     op.bytes += i_extra;
709                 }
710
711                 op.b_o_s  = 0;
712                 op.e_o_s  = 0;
713                 op.granulepos = 0;
714                 op.packetno = p_stream->i_packet_no++;
715                 ogg_stream_packetin( &p_stream->os, &op );
716
717                 p_og = OggStreamFlush( p_mux, &p_stream->os, 0 );
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_input->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_input->p_fmt->i_extra;
750             op.packet = p_input->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 }