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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * a52tospdif.c : encapsulates A/52 frames into S/PDIF packets
  3.  *****************************************************************************
  4.  * Copyright (C) 2002 VideoLAN
  5.  * $Id: a52tospdif.c 6961 2004-03-05 17:34:23Z sam $
  6.  *
  7.  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  8.  *          St閜hane 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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #include <stdlib.h>                                      /* malloc(), free() */
  28. #include <string.h>
  29. #include <vlc/vlc.h>
  30. #ifdef HAVE_UNISTD_H
  31. #   include <unistd.h>
  32. #endif
  33. #include "audio_output.h"
  34. #include "aout_internal.h"
  35. /*****************************************************************************
  36.  * Local prototypes
  37.  *****************************************************************************/
  38. static int  Create    ( vlc_object_t * );
  39. static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
  40.                         aout_buffer_t * );
  41. /*****************************************************************************
  42.  * Module descriptor
  43.  *****************************************************************************/
  44. vlc_module_begin();
  45.     set_description( _("audio filter for A/52->S/PDIF encapsulation") );
  46.     set_capability( "audio filter", 10 );
  47.     set_callbacks( Create, NULL );
  48. vlc_module_end();
  49. /*****************************************************************************
  50.  * Create:
  51.  *****************************************************************************/
  52. static int Create( vlc_object_t *p_this )
  53. {
  54.     aout_filter_t * p_filter = (aout_filter_t *)p_this;
  55.     if ( p_filter->input.i_format != VLC_FOURCC('a','5','2',' ')
  56.           || p_filter->output.i_format != VLC_FOURCC('s','p','d','i') )
  57.     {
  58.         return -1;
  59.     }
  60.     p_filter->pf_do_work = DoWork;
  61.     p_filter->b_in_place = 0;
  62.     return 0;
  63. }
  64. /*****************************************************************************
  65.  * DoWork: convert a buffer
  66.  *****************************************************************************/
  67. static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
  68.                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  69. {
  70.     /* It is not entirely clear which endianness the AC3 stream should have.
  71.      * I have been told endianness does not matter, AC3 can be both endian.
  72.      * But then, I could not get it to work on Mac OS X and a JVC RX-6000R
  73.      * decoder without using little endian. So right now, I convert to little
  74.      * endian.
  75.      */
  76.     static const uint8_t p_sync[6] = { 0x72, 0xF8, 0x1F, 0x4E, 0x01, 0x00 };
  77. #ifndef HAVE_SWAB
  78.     byte_t * p_tmp;
  79.     uint16_t i;
  80. #endif
  81.     uint16_t i_length = p_in_buf->i_nb_bytes;
  82.     uint8_t * pi_length;
  83.     byte_t * p_in = p_in_buf->p_buffer;
  84.     byte_t * p_out = p_out_buf->p_buffer;
  85.     /* Copy the S/PDIF headers. */
  86.     memcpy( p_out, p_sync, 6 );
  87.     pi_length = (p_out + 6);
  88.     *pi_length = (i_length * 8) & 0xff;
  89.     *(pi_length + 1) = (i_length * 8) >> 8;
  90. #ifdef HAVE_SWAB
  91.     swab( p_in, p_out + 8, i_length );
  92. #else
  93.     p_tmp = p_out + 8;
  94.     for ( i = i_length / 2 ; i-- ; )
  95.     {
  96.         p_tmp[0] = p_in[1];
  97.         p_tmp[1] = p_in[0];
  98.         p_tmp += 2; p_in += 2;
  99.     }
  100. #endif
  101.     p_filter->p_vlc->pf_memset( p_out + 8 + i_length, 0,
  102.                                AOUT_SPDIF_SIZE - i_length - 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. }