ogg.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:35k
源码类别:

midi

开发平台:

Unix_Linux

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