dtstospdif.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:7k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * dtstospdif.c : encapsulates DTS frames into S/PDIF packets
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: dtstospdif.c 6961 2004-03-05 17:34:23Z sam $
  6.  *
  7.  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>                                      /* malloc(), free() */
  27. #include <string.h>
  28. #include <vlc/vlc.h>
  29. #ifdef HAVE_UNISTD_H
  30. #   include <unistd.h>
  31. #endif
  32. #include "audio_output.h"
  33. #include "aout_internal.h"
  34. /*****************************************************************************
  35.  * Local structures
  36.  *****************************************************************************/
  37. struct aout_filter_sys_t
  38. {
  39.     /* 3 DTS frames have to be packed into an S/PDIF frame.
  40.      * We accumulate DTS frames from the decoder until we have enough to
  41.      * send. */
  42.     uint8_t *p_buf;
  43.     mtime_t start_date;
  44.     int i_frames;
  45.     unsigned int i_frame_size;
  46. };
  47. /*****************************************************************************
  48.  * Local prototypes
  49.  *****************************************************************************/
  50. static int  Create    ( vlc_object_t * );
  51. static void Close     ( vlc_object_t * );
  52. static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
  53.                         aout_buffer_t * );
  54. /*****************************************************************************
  55.  * Module descriptor
  56.  *****************************************************************************/
  57. vlc_module_begin();
  58.     set_description( _("audio filter for DTS->S/PDIF encapsulation") );
  59.     set_capability( "audio filter", 10 );
  60.     set_callbacks( Create, Close );
  61. vlc_module_end();
  62. /*****************************************************************************
  63.  * Create:
  64.  *****************************************************************************/
  65. static int Create( vlc_object_t *p_this )
  66. {
  67.     aout_filter_t * p_filter = (aout_filter_t *)p_this;
  68.     if ( p_filter->input.i_format != VLC_FOURCC('d','t','s',' ')
  69.           || p_filter->output.i_format != VLC_FOURCC('s','p','d','i') )
  70.     {
  71.         return -1;
  72.     }
  73.     /* Allocate the memory needed to store the module's structure */
  74.     p_filter->p_sys = malloc( sizeof(struct aout_filter_sys_t) );
  75.     if( p_filter->p_sys == NULL )
  76.     {
  77.         msg_Err( p_filter, "out of memory" );
  78.         return VLC_ENOMEM;
  79.     }
  80.     memset( p_filter->p_sys, 0, sizeof(struct aout_filter_sys_t) );
  81.     p_filter->p_sys->p_buf = 0;
  82.     p_filter->pf_do_work = DoWork;
  83.     p_filter->b_in_place = 1;
  84.     return 0;
  85. }
  86. /*****************************************************************************
  87.  * Close: free our resources
  88.  *****************************************************************************/
  89. static void Close( vlc_object_t * p_this )
  90. {
  91.     aout_filter_t * p_filter = (aout_filter_t *)p_this;
  92.     if( p_filter->p_sys->i_frame_size ) free( p_filter->p_sys->p_buf );
  93.     free( p_filter->p_sys );
  94. }
  95. /*****************************************************************************
  96.  * DoWork: convert a buffer
  97.  *****************************************************************************/
  98. static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
  99.                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  100. {
  101.     uint16_t i_fz = p_in_buf->i_nb_samples * 4;
  102.     uint16_t i_frame, i_length = p_in_buf->i_nb_bytes;
  103.     static const uint8_t p_sync[6] = { 0x72, 0xF8, 0x1F, 0x4E, 0x00, 0x00 };
  104.     if( p_in_buf->i_nb_bytes != p_filter->p_sys->i_frame_size )
  105.     {
  106.         /* Frame size changed, reset everything */
  107.         p_filter->p_sys->i_frame_size = p_in_buf->i_nb_bytes;
  108.         p_filter->p_sys->p_buf = realloc( p_filter->p_sys->p_buf,
  109.                                           p_in_buf->i_nb_bytes * 3 );
  110.         p_filter->p_sys->i_frames = 0;
  111.     }
  112.     /* Backup frame */
  113.     p_filter->p_vlc->pf_memcpy( p_filter->p_sys->p_buf + p_in_buf->i_nb_bytes *
  114.                                 p_filter->p_sys->i_frames, p_in_buf->p_buffer,
  115.                                 p_in_buf->i_nb_bytes );
  116.     p_filter->p_sys->i_frames++;
  117.     if( p_filter->p_sys->i_frames < 3 )
  118.     {
  119.         if( !p_filter->p_sys->i_frames )
  120.             /* We'll need the starting date */
  121.             p_filter->p_sys->start_date = p_in_buf->start_date;
  122.         /* Not enough data */
  123.         p_out_buf->i_nb_samples = 0;
  124.         p_out_buf->i_nb_bytes = 0;
  125.         return;
  126.     }
  127.     p_filter->p_sys->i_frames = 0;
  128.     for( i_frame = 0; i_frame < 3; i_frame++ )
  129.     {
  130.         byte_t * p_out = p_out_buf->p_buffer + (i_frame * i_fz);
  131.         byte_t * p_in = p_filter->p_sys->p_buf + (i_frame * i_length);
  132.         /* Copy the S/PDIF headers. */
  133.         memcpy( p_out, p_sync, 6 );
  134.         switch( p_in_buf->i_nb_samples )
  135.         {
  136.             case  512: *(p_out + 4) = 0x0B; break;
  137.             case 1024: *(p_out + 4) = 0x0C; break;
  138.             case 2048: *(p_out + 4) = 0x0D; break;
  139.         }
  140.         *(p_out + 6) = (i_length * 8) & 0xff;
  141.         *(p_out + 7) = (i_length * 8) >> 8;
  142.         if( p_in[0] == 0x1f || p_in[0] == 0x7f )
  143.         {
  144.             /* We are dealing with a big endian bitstream.
  145.              * Convert to little endian */
  146. #ifdef HAVE_SWAB
  147.             swab( p_in, p_out + 8, i_length );
  148. #else
  149.             uint16_t i;
  150.             byte_t * p_tmp, tmp;
  151.             p_tmp = p_out + 8;
  152.             for( i = i_length / 2 ; i-- ; )
  153.             {
  154.                 tmp = p_in[0]; /* in-place filter */
  155.                 p_tmp[0] = p_in[1];
  156.                 p_tmp[1] = tmp;
  157.                 p_tmp += 2; p_in += 2;
  158.             }
  159. #endif
  160.         }
  161.         else
  162.         {
  163.             /* Little endian */
  164.             memcpy( p_out + 8, p_in, i_length );
  165.         }
  166.         if( i_fz > i_length + 8 )
  167.         {
  168.             p_filter->p_vlc->pf_memset( p_out + 8 + i_length, 0,
  169.                                         i_fz - i_length - 8 );
  170.         }
  171.     }
  172.     p_out_buf->start_date = p_filter->p_sys->start_date;
  173.     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples * 3;
  174.     p_out_buf->i_nb_bytes = p_out_buf->i_nb_samples * 4;
  175. }