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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * a52tospdif.c : encapsulates A/52 frames into S/PDIF packets
  3.  *****************************************************************************
  4.  * Copyright (C) 2002, 2006 the VideoLAN team
  5.  * $Id: f43855135934775fb62bfe36ae13ba7a1e202755 $
  6.  *
  7.  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  8.  *          Stéphane Borel <stef@via.ecp.fr>
  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. #ifdef HAVE_UNISTD_H
  33. #   include <unistd.h>
  34. #endif
  35. #include <vlc_aout.h>
  36. /*****************************************************************************
  37.  * Local prototypes
  38.  *****************************************************************************/
  39. static int  Create    ( vlc_object_t * );
  40. static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
  41.                         aout_buffer_t * );
  42. /*****************************************************************************
  43.  * Module descriptor
  44.  *****************************************************************************/
  45. vlc_module_begin ()
  46.     set_category( CAT_AUDIO )
  47.     set_subcategory( SUBCAT_AUDIO_MISC )
  48.     set_description( N_("Audio filter for A/52->S/PDIF encapsulation") )
  49.     set_capability( "audio filter", 10 )
  50.     set_callbacks( Create, NULL )
  51. vlc_module_end ()
  52. /*****************************************************************************
  53.  * Create:
  54.  *****************************************************************************/
  55. static int Create( vlc_object_t *p_this )
  56. {
  57.     aout_filter_t * p_filter = (aout_filter_t *)p_this;
  58.     if ( p_filter->input.i_format != VLC_FOURCC('a','5','2',' ') ||
  59.          ( p_filter->output.i_format != VLC_FOURCC('s','p','d','b') &&
  60.            p_filter->output.i_format != VLC_FOURCC('s','p','d','i') ) )
  61.     {
  62.         return -1;
  63.     }
  64.     p_filter->pf_do_work = DoWork;
  65.     p_filter->b_in_place = 0;
  66.     return 0;
  67. }
  68. /*****************************************************************************
  69.  * DoWork: convert a buffer
  70.  *****************************************************************************/
  71. static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
  72.                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  73. {
  74.     VLC_UNUSED(p_aout);
  75.     /* AC3 is natively big endian. Most SPDIF devices have the native
  76.      * endianness of the computer system.
  77.      * On Mac OS X however, little endian devices are also common.
  78.      */
  79.     static const uint8_t p_sync_le[6] = { 0x72, 0xF8, 0x1F, 0x4E, 0x01, 0x00 };
  80.     static const uint8_t p_sync_be[6] = { 0xF8, 0x72, 0x4E, 0x1F, 0x00, 0x01 };
  81.     uint16_t i_frame_size = p_in_buf->i_nb_bytes / 2;
  82.     uint8_t * p_in = p_in_buf->p_buffer;
  83.     uint8_t * p_out = p_out_buf->p_buffer;
  84.     /* Copy the S/PDIF headers. */
  85.     if( p_filter->output.i_format == VLC_FOURCC('s','p','d','b') )
  86.     {
  87.         vlc_memcpy( p_out, p_sync_be, 6 );
  88.         p_out[4] = p_in[5] & 0x7; /* bsmod */
  89.         p_out[6] = (i_frame_size >> 4) & 0xff;
  90.         p_out[7] = (i_frame_size << 4) & 0xff;
  91.         vlc_memcpy( &p_out[8], p_in, i_frame_size * 2 );
  92.     }
  93.     else
  94.     {
  95.         vlc_memcpy( p_out, p_sync_le, 6 );
  96.         p_out[5] = p_in[5] & 0x7; /* bsmod */
  97.         p_out[6] = (i_frame_size << 4) & 0xff;
  98.         p_out[7] = (i_frame_size >> 4) & 0xff;
  99.         swab( p_in, &p_out[8], i_frame_size * 2 );
  100.     }
  101.     vlc_memset( p_out + 8 + i_frame_size * 2, 0,
  102.                 AOUT_SPDIF_SIZE - i_frame_size * 2 - 8 );
  103.     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
  104.     p_out_buf->i_nb_bytes = AOUT_SPDIF_SIZE;
  105. }