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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * s16tofloat32swab.c : converter from signed 16 bits integer to float32
  3.  *                      with endianness change
  4.  *****************************************************************************
  5.  * Copyright (C) 2002 VideoLAN
  6.  * $Id: s16tofloat32swab.c 6961 2004-03-05 17:34:23Z sam $
  7.  *
  8.  * Authors: Samuel Hocevar <sam@zoy.org>
  9.  *          Henri Fallon <henri@videolan.org>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  24.  *****************************************************************************/
  25. /*****************************************************************************
  26.  * Preamble
  27.  *****************************************************************************/
  28. #include <stdlib.h>                                      /* malloc(), free() */
  29. #include <string.h>
  30. #include <vlc/vlc.h>
  31. #ifdef HAVE_UNISTD_H
  32. #   include <unistd.h>
  33. #endif
  34. #ifdef HAVE_ALLOCA_H
  35. #   include <alloca.h>
  36. #endif
  37. #include "audio_output.h"
  38. #include "aout_internal.h"
  39. /*****************************************************************************
  40.  * Local prototypes
  41.  *****************************************************************************/
  42. static int  Create    ( vlc_object_t * );
  43. static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
  44.                         aout_buffer_t * );
  45. /*****************************************************************************
  46.  * Module descriptor
  47.  *****************************************************************************/
  48. vlc_module_begin();
  49.     set_description(
  50.             _("audio filter for s16->float32 with endianness conversion") );
  51.     set_capability( "audio filter", 1 );
  52.     set_callbacks( Create, NULL );
  53. vlc_module_end();
  54. /*****************************************************************************
  55.  * Create: allocate trivial mixer
  56.  *****************************************************************************
  57.  * This function allocates and initializes a Crop vout method.
  58.  *****************************************************************************/
  59. static int Create( vlc_object_t *p_this )
  60. {
  61.     aout_filter_t * p_filter = (aout_filter_t *)p_this;
  62.     if ( !AOUT_FMTS_SIMILAR( &p_filter->input, &p_filter->output ) )
  63.     {
  64.         return -1;
  65.     }
  66.     if ( (p_filter->input.i_format == VLC_FOURCC('s','1','6','l') ||
  67.          p_filter->input.i_format == VLC_FOURCC('s','1','6','b'))
  68.          && p_filter->output.i_format == VLC_FOURCC('f','l','3','2')
  69.          && p_filter->input.i_format != AOUT_FMT_S16_NE )
  70.     {
  71.         p_filter->pf_do_work = DoWork;
  72.         p_filter->b_in_place = VLC_TRUE;
  73.         return 0;
  74.     }
  75.     return -1;
  76. }
  77. /*****************************************************************************
  78.  * DoWork: convert a buffer
  79.  *****************************************************************************/
  80. static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
  81.                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  82. {
  83.     int i = p_in_buf->i_nb_samples * aout_FormatNbChannels( &p_filter->input );
  84.     /* We start from the end because b_in_place is true */
  85.     int16_t * p_in;
  86.     float * p_out = (float *)p_out_buf->p_buffer + i - 1;
  87. #ifdef HAVE_SWAB
  88. #   ifdef HAVE_ALLOCA
  89.     int16_t * p_swabbed = alloca( i * sizeof(int16_t) );
  90. #   else
  91.     int16_t * p_swabbed = malloc( i * sizeof(int16_t) );
  92. #   endif
  93.     swab( p_in_buf->p_buffer, (void *)p_swabbed, i * sizeof(int16_t) );
  94.     p_in = p_swabbed + i - 1;
  95. #else
  96.     byte_t p_tmp[2];
  97.     p_in = (int16_t *)p_in_buf->p_buffer + i - 1;
  98. #endif
  99.     while( i-- )
  100.     {
  101. #ifndef HAVE_SWAB
  102.         p_tmp[0] = ((byte_t *)p_in)[1];
  103.         p_tmp[1] = ((byte_t *)p_in)[0];
  104.         *p_out = (float)( *(int16_t *)p_tmp ) / 32768.0;
  105. #else
  106.         *p_out = (float)*p_in / 32768.0;
  107. #endif
  108.         p_in--; p_out--;
  109.     }
  110. #ifdef HAVE_SWAB
  111. #   ifndef HAVE_ALLOCA
  112.     free( p_swabbed );
  113. #   endif
  114. #endif
  115.     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
  116.     p_out_buf->i_nb_bytes = p_in_buf->i_nb_bytes * 2;
  117. }