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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * avi.c
  3.  *****************************************************************************
  4.  * Copyright (C) 2001, 2002 the VideoLAN team
  5.  * $Id: 2e7cb9f5389c622920c2bc58a53189424ccbf2c9 $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. /* TODO: add OpenDML write support */
  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. /*****************************************************************************
  36.  * Module descriptor
  37.  *****************************************************************************/
  38. static int  Open   ( vlc_object_t * );
  39. static void Close  ( vlc_object_t * );
  40. vlc_module_begin ()
  41.     set_description( N_("AVI muxer") )
  42.     set_category( CAT_SOUT )
  43.     set_subcategory( SUBCAT_SOUT_MUX )
  44.     set_capability( "sout mux", 5 )
  45.     add_shortcut( "avi" )
  46.     set_callbacks( Open, Close )
  47. vlc_module_end ()
  48. /*****************************************************************************
  49.  * Local prototypes
  50.  *****************************************************************************/
  51. static int Control( sout_mux_t *, int, va_list );
  52. static int AddStream( sout_mux_t *, sout_input_t * );
  53. static int DelStream( sout_mux_t *, sout_input_t * );
  54. static int Mux      ( sout_mux_t * );
  55. typedef struct avi_stream_s
  56. {
  57.     int i_cat;
  58.     char fcc[4];
  59.     mtime_t i_duration;       // in µs
  60.     int     i_frames;        // total frame count
  61.     int64_t i_totalsize;    // total stream size
  62.     float   f_fps;
  63.     int     i_bitrate;
  64.     BITMAPINFOHEADER    *p_bih;
  65.     WAVEFORMATEX        *p_wf;
  66. } avi_stream_t;
  67. typedef struct avi_idx1_entry_s
  68. {
  69.     char     fcc[4];
  70.     uint32_t i_flags;
  71.     uint32_t i_pos;
  72.     uint32_t i_length;
  73. } avi_idx1_entry_t;
  74. typedef struct avi_idx1_s
  75. {
  76.     unsigned int i_entry_count;
  77.     unsigned int i_entry_max;
  78.     avi_idx1_entry_t *entry;
  79. } avi_idx1_t;
  80. struct sout_mux_sys_t
  81. {
  82.     bool b_write_header;
  83.     int i_streams;
  84.     int i_stream_video;
  85.     off_t i_movi_size;
  86.     avi_stream_t stream[100];
  87.     avi_idx1_t idx1;
  88.     off_t i_idx1_size;
  89. };
  90. // FIXME FIXME
  91. #define HDR_SIZE 10240
  92. /* Flags in avih */
  93. #define AVIF_HASINDEX       0x00000010  // Index at end of file?
  94. #define AVIF_ISINTERLEAVED  0x00000100
  95. #define AVIF_TRUSTCKTYPE    0x00000800  // Use CKType to find key frames?
  96. /* Flags for index */
  97. #define AVIIF_KEYFRAME      0x00000010L /* this frame is a key frame.*/
  98. static block_t *avi_HeaderCreateRIFF( sout_mux_t * );
  99. static block_t *avi_HeaderCreateidx1( sout_mux_t * );
  100. static void SetFCC( uint8_t *p, char *fcc )
  101. {
  102.     memcpy( p, fcc, 4 );
  103. }
  104. /*****************************************************************************
  105.  * Open:
  106.  *****************************************************************************/
  107. static int Open( vlc_object_t *p_this )
  108. {
  109.     sout_mux_t      *p_mux = (sout_mux_t*)p_this;
  110.     sout_mux_sys_t  *p_sys = p_mux->p_sys;
  111.     msg_Dbg( p_mux, "AVI muxer opened" );
  112.     p_sys = malloc( sizeof( sout_mux_sys_t ) );
  113.     if( !p_sys )
  114.         return VLC_ENOMEM;
  115.     p_sys->i_streams = 0;
  116.     p_sys->i_stream_video = -1;
  117.     p_sys->i_movi_size = 0;
  118.     p_sys->idx1.i_entry_count = 0;
  119.     p_sys->idx1.i_entry_max = 10000;
  120.     p_sys->idx1.entry = calloc( p_sys->idx1.i_entry_max,
  121.                                 sizeof( avi_idx1_entry_t ) );
  122.     if( !p_sys->idx1.entry )
  123.     {
  124.         free( p_sys );
  125.         return VLC_ENOMEM;
  126.     }
  127.     p_sys->b_write_header = true;
  128.     p_mux->pf_control   = Control;
  129.     p_mux->pf_addstream = AddStream;
  130.     p_mux->pf_delstream = DelStream;
  131.     p_mux->pf_mux       = Mux;
  132.     p_mux->p_sys        = p_sys;
  133.     return VLC_SUCCESS;
  134. }
  135. /*****************************************************************************
  136.  * Close:
  137.  *****************************************************************************/
  138. static void Close( vlc_object_t * p_this )
  139. {
  140.     sout_mux_t      *p_mux = (sout_mux_t*)p_this;
  141.     sout_mux_sys_t  *p_sys = p_mux->p_sys;
  142.     block_t       *p_hdr, *p_idx1;
  143.     int                 i_stream;
  144.     msg_Dbg( p_mux, "AVI muxer closed" );
  145.     /* first create idx1 chunk (write at the end of the stream */
  146.     p_idx1 = avi_HeaderCreateidx1( p_mux );
  147.     p_sys->i_idx1_size = p_idx1->i_buffer;
  148.     sout_AccessOutWrite( p_mux->p_access, p_idx1 );
  149.     /* calculate some value for headers creations */
  150.     for( i_stream = 0; i_stream < p_sys->i_streams; i_stream++ )
  151.     {
  152.         avi_stream_t *p_stream;
  153.         p_stream = &p_sys->stream[i_stream];
  154.         p_stream->f_fps = 25;
  155.         if( p_stream->i_duration > 0 )
  156.         {
  157.             p_stream->f_fps = (float)p_stream->i_frames /
  158.                               ( (float)p_stream->i_duration /
  159.                                 (float)1000000 );
  160.         }
  161.         p_stream->i_bitrate = 128 * 1024;
  162.         if( p_stream->i_duration > 0 )
  163.         {
  164.             p_stream->i_bitrate =
  165.                 8 * (uint64_t)1000000 *
  166.                     (uint64_t)p_stream->i_totalsize /
  167.                     (uint64_t)p_stream->i_duration;
  168.         }
  169.         msg_Info( p_mux, "stream[%d] duration:%"PRId64" totalsize:%"PRId64
  170.                   " frames:%d fps:%f kb/s:%d",
  171.                   i_stream,
  172.                   (int64_t)p_stream->i_duration / (int64_t)1000000,
  173.                   p_stream->i_totalsize,
  174.                   p_stream->i_frames,
  175.                   p_stream->f_fps, p_stream->i_bitrate/1024 );
  176.     }
  177.     p_hdr = avi_HeaderCreateRIFF( p_mux );
  178.     sout_AccessOutSeek( p_mux->p_access, 0 );
  179.     sout_AccessOutWrite( p_mux->p_access, p_hdr );
  180. }
  181. static int Control( sout_mux_t *p_mux, int i_query, va_list args )
  182. {
  183.     VLC_UNUSED(p_mux);
  184.     bool *pb_bool;
  185.     char **ppsz;
  186.    switch( i_query )
  187.    {
  188.        case MUX_CAN_ADD_STREAM_WHILE_MUXING:
  189.            pb_bool = (bool*)va_arg( args, bool * );
  190.            *pb_bool = false;
  191.            return VLC_SUCCESS;
  192.        case MUX_GET_ADD_STREAM_WAIT:
  193.            pb_bool = (bool*)va_arg( args, bool * );
  194.            *pb_bool = true;
  195.            return VLC_SUCCESS;
  196.        case MUX_GET_MIME:
  197.            ppsz = (char**)va_arg( args, char ** );
  198.            *ppsz = strdup( "video/avi" );
  199.            return VLC_SUCCESS;
  200.         default:
  201.             return VLC_EGENERIC;
  202.    }
  203. }
  204. static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
  205. {
  206.     sout_mux_sys_t  *p_sys = p_mux->p_sys;
  207.     avi_stream_t    *p_stream;
  208.     if( p_sys->i_streams >= 100 )
  209.     {
  210.         msg_Err( p_mux, "too many streams" );
  211.         return VLC_EGENERIC;
  212.     }
  213.     msg_Dbg( p_mux, "adding input" );
  214.     p_input->p_sys = malloc( sizeof( int ) );
  215.     if( !p_input->p_sys )
  216.         return VLC_ENOMEM;
  217.     *((int*)p_input->p_sys) = p_sys->i_streams;
  218.     p_stream = &p_sys->stream[p_sys->i_streams];
  219.     switch( p_input->p_fmt->i_cat )
  220.     {
  221.         case AUDIO_ES:
  222.             p_stream->i_cat = AUDIO_ES;
  223.             p_stream->fcc[0] = '0' + p_sys->i_streams / 10;
  224.             p_stream->fcc[1] = '0' + p_sys->i_streams % 10;
  225.             p_stream->fcc[2] = 'w';
  226.             p_stream->fcc[3] = 'b';
  227.             p_stream->p_bih = NULL;
  228.             p_stream->p_wf  = malloc( sizeof( WAVEFORMATEX ) +
  229.                                       p_input->p_fmt->i_extra );
  230.             if( !p_stream->p_wf )
  231.             {
  232.                 free( p_input->p_sys );
  233.                 return VLC_ENOMEM;
  234.             }
  235. #define p_wf p_stream->p_wf
  236.             p_wf->cbSize = p_input->p_fmt->i_extra;
  237.             if( p_wf->cbSize > 0 )
  238.             {
  239.                 memcpy( &p_wf[1],
  240.                         p_input->p_fmt->p_extra,
  241.                         p_input->p_fmt->i_extra );
  242.             }
  243.             p_wf->nChannels      = p_input->p_fmt->audio.i_channels;
  244.             p_wf->nSamplesPerSec = p_input->p_fmt->audio.i_rate;
  245.             p_wf->nBlockAlign    = p_input->p_fmt->audio.i_blockalign;
  246.             p_wf->nAvgBytesPerSec= p_input->p_fmt->i_bitrate / 8;
  247.             p_wf->wBitsPerSample = 0;
  248.             switch( p_input->p_fmt->i_codec )
  249.             {
  250.                 case VLC_FOURCC( 'a', '5', '2', ' ' ):
  251.                     p_wf->wFormatTag = WAVE_FORMAT_A52;
  252.                     break;
  253.                 case VLC_FOURCC( 'm', 'p', 'g', 'a' ):
  254.                 case VLC_FOURCC( 'm', 'p', '3', ' ' ):
  255.                     p_wf->wFormatTag = WAVE_FORMAT_MPEGLAYER3;
  256.                     break;
  257.                 case VLC_FOURCC( 'w', 'm', 'a', '1' ):
  258.                     p_wf->wFormatTag = WAVE_FORMAT_WMA1;
  259.                     break;
  260.                 case VLC_FOURCC( 'w', 'm', 'a', ' ' ):
  261.                 case VLC_FOURCC( 'w', 'm', 'a', '2' ):
  262.                     p_wf->wFormatTag = WAVE_FORMAT_WMA2;
  263.                     break;
  264.                 case VLC_FOURCC( 'w', 'm', 'a', 'p' ):
  265.                     p_wf->wFormatTag = WAVE_FORMAT_WMAP;
  266.                     break;
  267.                 case VLC_FOURCC( 'w', 'm', 'a', 'l' ):
  268.                     p_wf->wFormatTag = WAVE_FORMAT_WMAL;
  269.                     break;
  270.                     /* raw codec */
  271.                 case VLC_FOURCC( 'u', '8', ' ', ' ' ):
  272.                     p_wf->wFormatTag = WAVE_FORMAT_PCM;
  273.                     p_wf->nBlockAlign= p_wf->nChannels;
  274.                     p_wf->wBitsPerSample = 8;
  275.                     break;
  276.                 case VLC_FOURCC( 's', '1', '6', 'l' ):
  277.                     p_wf->wFormatTag = WAVE_FORMAT_PCM;
  278.                     p_wf->nBlockAlign= 2 * p_wf->nChannels;
  279.                     p_wf->wBitsPerSample = 16;
  280.                     break;
  281.                 case VLC_FOURCC( 's', '2', '4', 'l' ):
  282.                     p_wf->wFormatTag = WAVE_FORMAT_PCM;
  283.                     p_wf->nBlockAlign= 3 * p_wf->nChannels;
  284.                     p_wf->wBitsPerSample = 24;
  285.                     break;
  286.                 case VLC_FOURCC( 's', '3', '2', 'l' ):
  287.                     p_wf->wFormatTag = WAVE_FORMAT_PCM;
  288.                     p_wf->nBlockAlign= 4 * p_wf->nChannels;
  289.                     p_wf->wBitsPerSample = 32;
  290.                     break;
  291.                 default:
  292.                     return VLC_EGENERIC;
  293.             }
  294. #undef p_wf
  295.             break;
  296.         case VIDEO_ES:
  297.             p_stream->i_cat = VIDEO_ES;
  298.             p_stream->fcc[0] = '0' + p_sys->i_streams / 10;
  299.             p_stream->fcc[1] = '0' + p_sys->i_streams % 10;
  300.             p_stream->fcc[2] = 'd';
  301.             p_stream->fcc[3] = 'c';
  302.             if( p_sys->i_stream_video < 0 )
  303.             {
  304.                 p_sys->i_stream_video = p_sys->i_streams;
  305.             }
  306.             p_stream->p_wf  = NULL;
  307.             p_stream->p_bih = malloc( sizeof( BITMAPINFOHEADER ) +
  308.                                       p_input->p_fmt->i_extra );
  309.             if( !p_stream->p_bih )
  310.             {
  311.                 free( p_input->p_sys );
  312.                 return VLC_ENOMEM;
  313.             }
  314. #define p_bih p_stream->p_bih
  315.             p_bih->biSize  = sizeof( BITMAPINFOHEADER ) +
  316.                              p_input->p_fmt->i_extra;
  317.             if( p_input->p_fmt->i_extra > 0 )
  318.             {
  319.                 memcpy( &p_bih[1],
  320.                         p_input->p_fmt->p_extra,
  321.                         p_input->p_fmt->i_extra );
  322.             }
  323.             p_bih->biWidth = p_input->p_fmt->video.i_width;
  324.             p_bih->biHeight= p_input->p_fmt->video.i_height;
  325.             p_bih->biPlanes= 1;
  326.             p_bih->biBitCount       = 24;
  327.             p_bih->biSizeImage      = 0;
  328.             p_bih->biXPelsPerMeter  = 0;
  329.             p_bih->biYPelsPerMeter  = 0;
  330.             p_bih->biClrUsed        = 0;
  331.             p_bih->biClrImportant   = 0;
  332.             switch( p_input->p_fmt->i_codec )
  333.             {
  334.                 case VLC_FOURCC( 'm', 'p', '4', 'v' ):
  335.                     p_bih->biCompression = VLC_FOURCC( 'X', 'V', 'I', 'D' );
  336.                     break;
  337.                 default:
  338.                     p_bih->biCompression = p_input->p_fmt->i_codec;
  339.                     break;
  340.             }
  341. #undef p_bih
  342.             break;
  343.         default:
  344.             return( VLC_EGENERIC );
  345.     }
  346.     p_stream->i_totalsize = 0;
  347.     p_stream->i_frames    = 0;
  348.     p_stream->i_duration  = 0;
  349.     /* fixed later */
  350.     p_stream->f_fps = 25;
  351.     p_stream->i_bitrate = 128 * 1024;
  352.     p_sys->i_streams++;
  353.     return( VLC_SUCCESS );
  354. }
  355. static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
  356. {
  357.     msg_Dbg( p_mux, "removing input" );
  358.     free( p_input->p_sys );
  359.     return 0;
  360. }
  361. static int Mux      ( sout_mux_t *p_mux )
  362. {
  363.     sout_mux_sys_t  *p_sys = p_mux->p_sys;
  364.     avi_stream_t    *p_stream;
  365.     int i_stream, i;
  366.     if( p_sys->b_write_header )
  367.     {
  368.         block_t *p_hdr;
  369.         msg_Dbg( p_mux, "writing header" );
  370.         p_hdr = avi_HeaderCreateRIFF( p_mux );
  371.         sout_AccessOutWrite( p_mux->p_access, p_hdr );
  372.         p_sys->b_write_header = false;
  373.     }
  374.     for( i = 0; i < p_mux->i_nb_inputs; i++ )
  375.     {
  376.         int i_count;
  377.         block_fifo_t *p_fifo;
  378.         i_stream = *((int*)p_mux->pp_inputs[i]->p_sys );
  379.         p_stream = &p_sys->stream[i_stream];
  380.         p_fifo = p_mux->pp_inputs[i]->p_fifo;
  381.         i_count = block_FifoCount(  p_fifo );
  382.         while( i_count > 1 )
  383.         {
  384.             avi_idx1_entry_t *p_idx;
  385.             block_t *p_data;
  386.             p_data = block_FifoGet( p_fifo );
  387.             if( block_FifoCount( p_fifo ) > 0 )
  388.             {
  389.                 block_t *p_next = block_FifoShow( p_fifo );
  390.                 p_data->i_length = p_next->i_dts - p_data->i_dts;
  391.             }
  392.             p_stream->i_frames++;
  393.             if( p_data->i_length < 0 )
  394.             {
  395.                 msg_Warn( p_mux, "argg length < 0 l" );
  396.                 block_Release( p_data );
  397.                 i_count--;
  398.                 continue;
  399.             }
  400.             p_stream->i_duration  += p_data->i_length;
  401.             p_stream->i_totalsize += p_data->i_buffer;
  402.             /* add idx1 entry for this frame */
  403.             p_idx = &p_sys->idx1.entry[p_sys->idx1.i_entry_count];
  404.             memcpy( p_idx->fcc, p_stream->fcc, 4 );
  405.             p_idx->i_flags = 0;
  406.             if( ( p_data->i_flags & BLOCK_FLAG_TYPE_MASK ) == 0 || ( p_data->i_flags & BLOCK_FLAG_TYPE_I ) )
  407.                 p_idx->i_flags = AVIIF_KEYFRAME;
  408.             p_idx->i_pos   = p_sys->i_movi_size + 4;
  409.             p_idx->i_length= p_data->i_buffer;
  410.             p_sys->idx1.i_entry_count++;
  411.             if( p_sys->idx1.i_entry_count >= p_sys->idx1.i_entry_max )
  412.             {
  413.                 p_sys->idx1.i_entry_max += 10000;
  414.                 p_sys->idx1.entry = realloc( p_sys->idx1.entry,
  415.                                              p_sys->idx1.i_entry_max * sizeof( avi_idx1_entry_t ) );
  416.             }
  417.             p_data = block_Realloc( p_data, 8, p_data->i_buffer );
  418.             if( p_data )
  419.             {
  420.                 SetFCC( p_data->p_buffer, p_stream->fcc );
  421.                 SetDWLE( p_data->p_buffer + 4, p_data->i_buffer - 8 );
  422.                 if( p_data->i_buffer & 0x01 )
  423.                 {
  424.                     p_data = block_Realloc( p_data, 0, p_data->i_buffer + 1 );
  425.                     p_data->p_buffer[ p_data->i_buffer - 1 ] = '';
  426.                 }
  427.                 p_sys->i_movi_size += p_data->i_buffer;
  428.                 sout_AccessOutWrite( p_mux->p_access, p_data );
  429.             }
  430.             i_count--;
  431.         }
  432.     }
  433.     return( 0 );
  434. }
  435. /****************************************************************************/
  436. /****************************************************************************/
  437. /****************************************************************************/
  438. /****************************************************************************/
  439. typedef struct buffer_out_s
  440. {
  441.     int      i_buffer_size;
  442.     int      i_buffer;
  443.     uint8_t  *p_buffer;
  444. } buffer_out_t;
  445. static void bo_Init( buffer_out_t *p_bo, int i_size, uint8_t *p_buffer )
  446. {
  447.     p_bo->i_buffer_size = i_size;
  448.     p_bo->i_buffer = 0;
  449.     p_bo->p_buffer = p_buffer;
  450. }
  451. static void bo_AddByte( buffer_out_t *p_bo, uint8_t i )
  452. {
  453.     if( p_bo->i_buffer < p_bo->i_buffer_size )
  454.     {
  455.         p_bo->p_buffer[p_bo->i_buffer] = i;
  456.     }
  457.     p_bo->i_buffer++;
  458. }
  459. static void bo_AddWordLE( buffer_out_t *p_bo, uint16_t i )
  460. {
  461.     bo_AddByte( p_bo, i &0xff );
  462.     bo_AddByte( p_bo, ( ( i >> 8) &0xff ) );
  463. }
  464. static void bo_AddWordBE( buffer_out_t *p_bo, uint16_t i )
  465. {
  466.     bo_AddByte( p_bo, ( ( i >> 8) &0xff ) );
  467.     bo_AddByte( p_bo, i &0xff );
  468. }
  469. static void bo_AddDWordLE( buffer_out_t *p_bo, uint32_t i )
  470. {
  471.     bo_AddWordLE( p_bo, i &0xffff );
  472.     bo_AddWordLE( p_bo, ( ( i >> 16) &0xffff ) );
  473. }
  474. static void bo_AddDWordBE( buffer_out_t *p_bo, uint32_t i )
  475. {
  476.     bo_AddWordBE( p_bo, ( ( i >> 16) &0xffff ) );
  477.     bo_AddWordBE( p_bo, i &0xffff );
  478. }
  479. #if 0
  480. static void bo_AddLWordLE( buffer_out_t *p_bo, uint64_t i )
  481. {
  482.     bo_AddDWordLE( p_bo, i &0xffffffff );
  483.     bo_AddDWordLE( p_bo, ( ( i >> 32) &0xffffffff ) );
  484. }
  485. static void bo_AddLWordBE( buffer_out_t *p_bo, uint64_t i )
  486. {
  487.     bo_AddDWordBE( p_bo, ( ( i >> 32) &0xffffffff ) );
  488.     bo_AddDWordBE( p_bo, i &0xffffffff );
  489. }
  490. #endif
  491. static void bo_AddFCC( buffer_out_t *p_bo, const char *fcc )
  492. {
  493.     bo_AddByte( p_bo, fcc[0] );
  494.     bo_AddByte( p_bo, fcc[1] );
  495.     bo_AddByte( p_bo, fcc[2] );
  496.     bo_AddByte( p_bo, fcc[3] );
  497. }
  498. static void bo_AddMem( buffer_out_t *p_bo, int i_size, uint8_t *p_mem )
  499. {
  500.     int i;
  501.     for( i = 0; i < i_size; i++ )
  502.     {
  503.         bo_AddByte( p_bo, p_mem[i] );
  504.     }
  505. }
  506. /****************************************************************************
  507.  ****************************************************************************
  508.  **
  509.  ** avi header generation
  510.  **
  511.  ****************************************************************************
  512.  ****************************************************************************/
  513. #define AVI_BOX_ENTER( fcc ) 
  514.     buffer_out_t _bo_sav_; 
  515.     bo_AddFCC( p_bo, fcc ); 
  516.     _bo_sav_ = *p_bo; 
  517.     bo_AddDWordLE( p_bo, 0 )
  518. #define AVI_BOX_ENTER_LIST( fcc ) 
  519.     AVI_BOX_ENTER( "LIST" ); 
  520.     bo_AddFCC( p_bo, fcc )
  521. #define AVI_BOX_EXIT( i_err ) 
  522.     if( p_bo->i_buffer&0x01 ) bo_AddByte( p_bo, 0 ); 
  523.     bo_AddDWordLE( &_bo_sav_, p_bo->i_buffer - _bo_sav_.i_buffer - 4 ); 
  524.     return( i_err );
  525. static int avi_HeaderAdd_avih( sout_mux_t *p_mux,
  526.                                buffer_out_t *p_bo )
  527. {
  528.     sout_mux_sys_t  *p_sys = p_mux->p_sys;
  529.     avi_stream_t    *p_video = NULL;
  530.     int         i_stream;
  531.     uint32_t    i_microsecperframe;
  532.     int         i_maxbytespersec;
  533.     int         i_totalframes;
  534.     AVI_BOX_ENTER( "avih" );
  535.     if( p_sys->i_stream_video >= 0 )
  536.     {
  537.         p_video = &p_sys->stream[p_sys->i_stream_video];
  538.         if( p_video->i_frames <= 0 )
  539.         {
  540.         //    p_video = NULL;
  541.         }
  542.     }
  543.     if( p_video )
  544.     {
  545.         i_microsecperframe =
  546.             (uint32_t)( (float)1000000 /
  547.                         (float)p_sys->stream[p_sys->i_stream_video].f_fps );
  548.         i_totalframes = p_sys->stream[p_sys->i_stream_video].i_frames;
  549.     }
  550.     else
  551.     {
  552.         msg_Warn( p_mux, "avi file without video track isn't a good idea..." );
  553.         i_microsecperframe = 0;
  554.         i_totalframes = 0;
  555.     }
  556.     for( i_stream = 0,i_maxbytespersec = 0; i_stream < p_sys->i_streams; i_stream++ )
  557.     {
  558.         if( p_sys->stream[i_stream].i_duration > 0 )
  559.         {
  560.             i_maxbytespersec +=
  561.                 p_sys->stream[i_stream].i_totalsize /
  562.                 p_sys->stream[i_stream].i_duration;
  563.         }
  564.     }
  565.     bo_AddDWordLE( p_bo, i_microsecperframe );
  566.     bo_AddDWordLE( p_bo, i_maxbytespersec );
  567.     bo_AddDWordLE( p_bo, 0 );                   /* padding */
  568.     bo_AddDWordLE( p_bo, AVIF_TRUSTCKTYPE |
  569.                          AVIF_HASINDEX |
  570.                          AVIF_ISINTERLEAVED );  /* flags */
  571.     bo_AddDWordLE( p_bo, i_totalframes );
  572.     bo_AddDWordLE( p_bo, 0 );                   /* initial frame */
  573.     bo_AddDWordLE( p_bo, p_sys->i_streams );    /* streams count */
  574.     bo_AddDWordLE( p_bo, 1024 * 1024 );         /* suggested buffer size */
  575.     if( p_video )
  576.     {
  577.         bo_AddDWordLE( p_bo, p_video->p_bih->biWidth );
  578.         bo_AddDWordLE( p_bo, p_video->p_bih->biHeight );
  579.     }
  580.     else
  581.     {
  582.         bo_AddDWordLE( p_bo, 0 );
  583.         bo_AddDWordLE( p_bo, 0 );
  584.     }
  585.     bo_AddDWordLE( p_bo, 0 );                   /* ???? */
  586.     bo_AddDWordLE( p_bo, 0 );                   /* ???? */
  587.     bo_AddDWordLE( p_bo, 0 );                   /* ???? */
  588.     bo_AddDWordLE( p_bo, 0 );                   /* ???? */
  589.     AVI_BOX_EXIT( 0 );
  590. }
  591. static int avi_HeaderAdd_strh( buffer_out_t *p_bo, avi_stream_t *p_stream )
  592. {
  593.     AVI_BOX_ENTER( "strh" );
  594.     switch( p_stream->i_cat )
  595.     {
  596.         case VIDEO_ES:
  597.             {
  598.                 bo_AddFCC( p_bo, "vids" );
  599.                 bo_AddDWordBE( p_bo, p_stream->p_bih->biCompression );
  600.                 bo_AddDWordLE( p_bo, 0 );   /* flags */
  601.                 bo_AddWordLE(  p_bo, 0 );   /* priority */
  602.                 bo_AddWordLE(  p_bo, 0 );   /* langage */
  603.                 bo_AddDWordLE( p_bo, 0 );   /* initial frame */
  604.                 bo_AddDWordLE( p_bo, 1000 );/* scale */
  605.                 bo_AddDWordLE( p_bo, (uint32_t)( 1000 * p_stream->f_fps ));
  606.                 bo_AddDWordLE( p_bo, 0 );   /* start */
  607.                 bo_AddDWordLE( p_bo, p_stream->i_frames );
  608.                 bo_AddDWordLE( p_bo, 1024 * 1024 );
  609.                 bo_AddDWordLE( p_bo, -1 );  /* quality */
  610.                 bo_AddDWordLE( p_bo, 0 );   /* samplesize */
  611.                 bo_AddWordLE(  p_bo, 0 );   /* ??? */
  612.                 bo_AddWordLE(  p_bo, 0 );   /* ??? */
  613.                 bo_AddWordLE(  p_bo, p_stream->p_bih->biWidth );
  614.                 bo_AddWordLE(  p_bo, p_stream->p_bih->biHeight );
  615.             }
  616.             break;
  617.         case AUDIO_ES:
  618.             {
  619.                 int i_rate, i_scale, i_samplesize;
  620.                 i_samplesize = p_stream->p_wf->nBlockAlign;
  621.                 if( i_samplesize > 1 )
  622.                 {
  623.                     i_scale = i_samplesize;
  624.                     i_rate = /*i_scale **/ p_stream->i_bitrate / 8;
  625.                 }
  626.                 else
  627.                 {
  628.                     i_samplesize = 1;
  629.                     i_scale = 1000;
  630.                     i_rate = 1000 * p_stream->i_bitrate / 8;
  631.                 }
  632.                 bo_AddFCC( p_bo, "auds" );
  633.                 bo_AddDWordLE( p_bo, 0 );   /* tag */
  634.                 bo_AddDWordLE( p_bo, 0 );   /* flags */
  635.                 bo_AddWordLE(  p_bo, 0 );   /* priority */
  636.                 bo_AddWordLE(  p_bo, 0 );   /* langage */
  637.                 bo_AddDWordLE( p_bo, 0 );   /* initial frame */
  638.                 bo_AddDWordLE( p_bo, i_scale );/* scale */
  639.                 bo_AddDWordLE( p_bo, i_rate );
  640.                 bo_AddDWordLE( p_bo, 0 );   /* start */
  641.                 bo_AddDWordLE( p_bo, p_stream->i_frames );
  642.                 bo_AddDWordLE( p_bo, 10 * 1024 );
  643.                 bo_AddDWordLE( p_bo, -1 );  /* quality */
  644.                 bo_AddDWordLE( p_bo, i_samplesize );
  645.                 bo_AddWordLE(  p_bo, 0 );   /* ??? */
  646.                 bo_AddWordLE(  p_bo, 0 );   /* ??? */
  647.                 bo_AddWordLE(  p_bo, 0 );
  648.                 bo_AddWordLE(  p_bo, 0 );
  649.             }
  650.             break;
  651.     }
  652.     AVI_BOX_EXIT( 0 );
  653. }
  654. static int avi_HeaderAdd_strf( buffer_out_t *p_bo, avi_stream_t *p_stream )
  655. {
  656.     AVI_BOX_ENTER( "strf" );
  657.     switch( p_stream->i_cat )
  658.     {
  659.         case AUDIO_ES:
  660.             bo_AddWordLE( p_bo, p_stream->p_wf->wFormatTag );
  661.             bo_AddWordLE( p_bo, p_stream->p_wf->nChannels );
  662.             bo_AddDWordLE( p_bo, p_stream->p_wf->nSamplesPerSec );
  663.             bo_AddDWordLE( p_bo, p_stream->p_wf->nAvgBytesPerSec );
  664.             bo_AddWordLE( p_bo, p_stream->p_wf->nBlockAlign );
  665.             bo_AddWordLE( p_bo, p_stream->p_wf->wBitsPerSample );
  666.             bo_AddWordLE( p_bo, p_stream->p_wf->cbSize );
  667.             bo_AddMem( p_bo, p_stream->p_wf->cbSize, (uint8_t*)&p_stream->p_wf[1] );
  668.             break;
  669.         case VIDEO_ES:
  670.             bo_AddDWordLE( p_bo, p_stream->p_bih->biSize );
  671.             bo_AddDWordLE( p_bo, p_stream->p_bih->biWidth );
  672.             bo_AddDWordLE( p_bo, p_stream->p_bih->biHeight );
  673.             bo_AddWordLE( p_bo, p_stream->p_bih->biPlanes );
  674.             bo_AddWordLE( p_bo, p_stream->p_bih->biBitCount );
  675.             if( VLC_FOURCC( 0, 0, 0, 1 ) == 0x00000001 )
  676.             {
  677.                 bo_AddDWordBE( p_bo, p_stream->p_bih->biCompression );
  678.             }
  679.             else
  680.             {
  681.                 bo_AddDWordLE( p_bo, p_stream->p_bih->biCompression );
  682.             }
  683.             bo_AddDWordLE( p_bo, p_stream->p_bih->biSizeImage );
  684.             bo_AddDWordLE( p_bo, p_stream->p_bih->biXPelsPerMeter );
  685.             bo_AddDWordLE( p_bo, p_stream->p_bih->biYPelsPerMeter );
  686.             bo_AddDWordLE( p_bo, p_stream->p_bih->biClrUsed );
  687.             bo_AddDWordLE( p_bo, p_stream->p_bih->biClrImportant );
  688.             bo_AddMem( p_bo,
  689.                        p_stream->p_bih->biSize - sizeof( BITMAPINFOHEADER ),
  690.                        (uint8_t*)&p_stream->p_bih[1] );
  691.             break;
  692.     }
  693.     AVI_BOX_EXIT( 0 );
  694. }
  695. static int avi_HeaderAdd_strl( buffer_out_t *p_bo, avi_stream_t *p_stream )
  696. {
  697.     AVI_BOX_ENTER_LIST( "strl" );
  698.     avi_HeaderAdd_strh( p_bo, p_stream );
  699.     avi_HeaderAdd_strf( p_bo, p_stream );
  700.     AVI_BOX_EXIT( 0 );
  701. }
  702. static block_t *avi_HeaderCreateRIFF( sout_mux_t *p_mux )
  703. {
  704.     sout_mux_sys_t      *p_sys = p_mux->p_sys;
  705.     block_t       *p_hdr;
  706.     int                 i_stream;
  707.     int                 i_maxbytespersec;
  708.     int                 i_junk;
  709.     buffer_out_t        bo;
  710.     p_hdr = block_New( p_mux, HDR_SIZE );
  711.     memset( p_hdr->p_buffer, 0, HDR_SIZE );
  712.     bo_Init( &bo, HDR_SIZE, p_hdr->p_buffer );
  713.     bo_AddFCC( &bo, "RIFF" );
  714.     bo_AddDWordLE( &bo, p_sys->i_movi_size + HDR_SIZE - 8 + p_sys->i_idx1_size );
  715.     bo_AddFCC( &bo, "AVI " );
  716.     bo_AddFCC( &bo, "LIST" );
  717.     bo_AddDWordLE( &bo, HDR_SIZE - 8);
  718.     bo_AddFCC( &bo, "hdrl" );
  719.     avi_HeaderAdd_avih( p_mux, &bo );
  720.     for( i_stream = 0,i_maxbytespersec = 0; i_stream < p_sys->i_streams; i_stream++ )
  721.     {
  722.         avi_HeaderAdd_strl( &bo, &p_sys->stream[i_stream] );
  723.     }
  724.     i_junk = HDR_SIZE - bo.i_buffer - 8 - 12;
  725.     bo_AddFCC( &bo, "JUNK" );
  726.     bo_AddDWordLE( &bo, i_junk );
  727.     bo.i_buffer += i_junk;
  728.     bo_AddFCC( &bo, "LIST" );
  729.     bo_AddDWordLE( &bo, p_sys->i_movi_size + 4 );
  730.     bo_AddFCC( &bo, "movi" );
  731.     return( p_hdr );
  732. }
  733. static block_t * avi_HeaderCreateidx1( sout_mux_t *p_mux )
  734. {
  735.     sout_mux_sys_t      *p_sys = p_mux->p_sys;
  736.     block_t       *p_idx1;
  737.     uint32_t            i_idx1_size;
  738.     unsigned int        i;
  739.     buffer_out_t        bo;
  740.     i_idx1_size = 16 * p_sys->idx1.i_entry_count;
  741.     p_idx1 = block_New( p_mux, i_idx1_size + 8 );
  742.     memset( p_idx1->p_buffer, 0, i_idx1_size );
  743.     bo_Init( &bo, i_idx1_size, p_idx1->p_buffer );
  744.     bo_AddFCC( &bo, "idx1" );
  745.     bo_AddDWordLE( &bo, i_idx1_size );
  746.     for( i = 0; i < p_sys->idx1.i_entry_count; i++ )
  747.     {
  748.         bo_AddFCC( &bo, p_sys->idx1.entry[i].fcc );
  749.         bo_AddDWordLE( &bo, p_sys->idx1.entry[i].i_flags );
  750.         bo_AddDWordLE( &bo, p_sys->idx1.entry[i].i_pos );
  751.         bo_AddDWordLE( &bo, p_sys->idx1.entry[i].i_length );
  752.     }
  753.     return( p_idx1 );
  754. }