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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * dtstospdif.c : encapsulates DTS frames into S/PDIF packets
  3.  *****************************************************************************
  4.  * Copyright (C) 2003, 2006 the VideoLAN team
  5.  * $Id: d55446d11bbfff66d9a358b406e164b7bbc0e5ea $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #ifdef HAVE_UNISTD_H
  32. #   include <unistd.h>
  33. #endif
  34. #include <vlc_aout.h>
  35. /*****************************************************************************
  36.  * Local structures
  37.  *****************************************************************************/
  38. struct aout_filter_sys_t
  39. {
  40.     /* 3 DTS frames have to be packed into an S/PDIF frame.
  41.      * We accumulate DTS frames from the decoder until we have enough to
  42.      * send. */
  43.     uint8_t *p_buf;
  44.     mtime_t start_date;
  45.     int i_frames;
  46.     unsigned int i_frame_size;
  47. };
  48. /*****************************************************************************
  49.  * Local prototypes
  50.  *****************************************************************************/
  51. static int  Create    ( vlc_object_t * );
  52. static void Close     ( vlc_object_t * );
  53. static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
  54.                         aout_buffer_t * );
  55. /*****************************************************************************
  56.  * Module descriptor
  57.  *****************************************************************************/
  58. vlc_module_begin ()
  59.     set_category( CAT_AUDIO )
  60.     set_subcategory( SUBCAT_AUDIO_MISC )
  61.     set_description( N_("Audio filter for DTS->S/PDIF encapsulation") )
  62.     set_capability( "audio filter", 10 )
  63.     set_callbacks( Create, Close )
  64. vlc_module_end ()
  65. /*****************************************************************************
  66.  * Create:
  67.  *****************************************************************************/
  68. static int Create( vlc_object_t *p_this )
  69. {
  70.     aout_filter_t * p_filter = (aout_filter_t *)p_this;
  71.     if( p_filter->input.i_format != VLC_FOURCC('d','t','s',' ') ||
  72.         ( p_filter->output.i_format != VLC_FOURCC('s','p','d','i') &&
  73.           p_filter->output.i_format != VLC_FOURCC('s','p','d','b') ) )
  74.     {
  75.         return -1;
  76.     }
  77.     /* Allocate the memory needed to store the module's structure */
  78.     p_filter->p_sys = calloc( 1, sizeof(struct aout_filter_sys_t) );
  79.     if( !p_filter->p_sys )
  80.         return VLC_ENOMEM;
  81.     p_filter->pf_do_work = DoWork;
  82.     p_filter->b_in_place = 1;
  83.     return 0;
  84. }
  85. /*****************************************************************************
  86.  * Close: free our resources
  87.  *****************************************************************************/
  88. static void Close( vlc_object_t * p_this )
  89. {
  90.     aout_filter_t * p_filter = (aout_filter_t *)p_this;
  91.     if( p_filter->p_sys->i_frame_size ) free( p_filter->p_sys->p_buf );
  92.     free( p_filter->p_sys );
  93. }
  94. /*****************************************************************************
  95.  * DoWork: convert a buffer
  96.  *****************************************************************************/
  97. static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
  98.                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  99. {
  100.     uint32_t i_ac5_spdif_type = 0;
  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_le[6] = { 0x72, 0xF8, 0x1F, 0x4E, 0x00, 0x00 };
  104.     static const uint8_t p_sync_be[6] = { 0xF8, 0x72, 0x4E, 0x1F, 0x00, 0x00 };
  105.     if( p_in_buf->i_nb_bytes != p_filter->p_sys->i_frame_size )
  106.     {
  107.         /* Frame size changed, reset everything */
  108.         msg_Warn( p_aout, "Frame size changed from %u to %u, "
  109.                           "resetting everything.",
  110.                   p_filter->p_sys->i_frame_size,
  111.                   (unsigned)p_in_buf->i_nb_bytes );
  112.         p_filter->p_sys->i_frame_size = p_in_buf->i_nb_bytes;
  113.         p_filter->p_sys->p_buf = realloc( p_filter->p_sys->p_buf,
  114.                                           p_in_buf->i_nb_bytes * 3 );
  115.         p_filter->p_sys->i_frames = 0;
  116.     }
  117.     /* Backup frame */
  118.     vlc_memcpy( p_filter->p_sys->p_buf + p_in_buf->i_nb_bytes *
  119.                   p_filter->p_sys->i_frames,
  120.                 p_in_buf->p_buffer, p_in_buf->i_nb_bytes );
  121.     p_filter->p_sys->i_frames++;
  122.     if( p_filter->p_sys->i_frames < 3 )
  123.     {
  124.         if( p_filter->p_sys->i_frames == 1 )
  125.             /* We'll need the starting date */
  126.             p_filter->p_sys->start_date = p_in_buf->start_date;
  127.         /* Not enough data */
  128.         p_out_buf->i_nb_samples = 0;
  129.         p_out_buf->i_nb_bytes = 0;
  130.         return;
  131.     }
  132.     p_filter->p_sys->i_frames = 0;
  133.     for( i_frame = 0; i_frame < 3; i_frame++ )
  134.     {
  135.         uint16_t i_length_padded = i_length;
  136.         uint8_t * p_out = p_out_buf->p_buffer + (i_frame * i_fz);
  137.         uint8_t * p_in = p_filter->p_sys->p_buf + (i_frame * i_length);
  138.         switch( p_in_buf->i_nb_samples )
  139.         {
  140.             case  512: i_ac5_spdif_type = 0x0B; break;
  141.             case 1024: i_ac5_spdif_type = 0x0C; break;
  142.             case 2048: i_ac5_spdif_type = 0x0D; break;
  143.         }
  144.         /* Copy the S/PDIF headers. */
  145.         if( p_filter->output.i_format == VLC_FOURCC('s','p','d','b') )
  146.         {
  147.             vlc_memcpy( p_out, p_sync_be, 6 );
  148.             p_out[5] = i_ac5_spdif_type;
  149.             p_out[6] = (( i_length ) >> 5 ) & 0xFF;
  150.             p_out[7] = ( i_length << 3 ) & 0xFF;
  151.         }
  152.         else
  153.         {
  154.             vlc_memcpy( p_out, p_sync_le, 6 );
  155.             p_out[4] = i_ac5_spdif_type;
  156.             p_out[6] = ( i_length << 3 ) & 0xFF;
  157.             p_out[7] = (( i_length ) >> 5 ) & 0xFF;
  158.         }
  159.         if( ( (p_in[0] == 0x1F || p_in[0] == 0x7F) && p_filter->output.i_format == VLC_FOURCC('s','p','d','i') ) ||
  160.             ( (p_in[0] == 0xFF || p_in[0] == 0xFE) && p_filter->output.i_format == VLC_FOURCC('s','p','d','b') ) )
  161.         {
  162.             /* We are dealing with a big endian bitstream and a little endian output
  163.              * or a little endian bitstream and a big endian output.
  164.              * Byteswap the stream */
  165.             swab( p_in, p_out + 8, i_length );
  166.             /* If i_length is odd, we have to adjust swapping a bit.. */
  167.             if( i_length & 1 )
  168.             {
  169.                 p_out[8+i_length-1] = 0;
  170.                 p_out[8+i_length] = p_in[i_length-1];
  171.                 i_length_padded++;
  172.             }
  173.         }
  174.         else
  175.         {
  176.             vlc_memcpy( p_out + 8, p_in, i_length );
  177.         }
  178.         if( i_fz > i_length + 8 )
  179.         {
  180.             vlc_memset( p_out + 8 + i_length_padded, 0,
  181.                         i_fz - i_length_padded - 8 );
  182.         }
  183.     }
  184.     p_out_buf->start_date = p_filter->p_sys->start_date;
  185.     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples * 3;
  186.     p_out_buf->i_nb_bytes = p_out_buf->i_nb_samples * 4;
  187. }