]> git.sesse.net Git - vlc/blob - modules/audio_filter/converter/s16tofloat32swab.c
07d9a2fce2677936eda4378ea335352abeec05b2
[vlc] / modules / audio_filter / converter / s16tofloat32swab.c
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,v 1.10 2003/10/25 00:49:13 sam Exp $
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 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include <stdlib.h>                                      /* malloc(), free() */
30 #include <string.h>
31
32 #include <vlc/vlc.h>
33
34 #ifdef HAVE_UNISTD_H
35 #   include <unistd.h>
36 #endif
37
38 #ifdef HAVE_ALLOCA_H
39 #   include <alloca.h>
40 #endif
41
42 #include "audio_output.h"
43 #include "aout_internal.h"
44
45 /*****************************************************************************
46  * Local prototypes
47  *****************************************************************************/
48 static int  Create    ( vlc_object_t * );
49
50 static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
51                         aout_buffer_t * );
52
53 /*****************************************************************************
54  * Module descriptor
55  *****************************************************************************/
56 vlc_module_begin();
57     set_description(
58             _("audio filter for s16->float32 with endianness conversion") );
59     set_capability( "audio filter", 1 );
60     set_callbacks( Create, NULL );
61 vlc_module_end();
62
63 /*****************************************************************************
64  * Create: allocate trivial mixer
65  *****************************************************************************
66  * This function allocates and initializes a Crop vout method.
67  *****************************************************************************/
68 static int Create( vlc_object_t *p_this )
69 {
70     aout_filter_t * p_filter = (aout_filter_t *)p_this;
71
72     if ( !AOUT_FMTS_SIMILAR( &p_filter->input, &p_filter->output ) )
73     {
74         return -1;
75     }
76
77     if ( (p_filter->input.i_format == VLC_FOURCC('s','1','6','l') ||
78          p_filter->input.i_format == VLC_FOURCC('s','1','6','b'))
79          && p_filter->output.i_format == VLC_FOURCC('f','l','3','2')
80          && p_filter->input.i_format != AOUT_FMT_S16_NE )
81     {
82         p_filter->pf_do_work = DoWork;
83         p_filter->b_in_place = VLC_TRUE;
84
85         return 0;
86     }
87
88     return -1;
89 }
90
91 /*****************************************************************************
92  * DoWork: convert a buffer
93  *****************************************************************************/
94 static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
95                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
96 {
97     int i = p_in_buf->i_nb_samples * aout_FormatNbChannels( &p_filter->input );
98
99     /* We start from the end because b_in_place is true */
100     int16_t * p_in;
101     float * p_out = (float *)p_out_buf->p_buffer + i - 1;
102
103 #ifdef HAVE_SWAB
104 #   ifdef HAVE_ALLOCA
105     int16_t * p_swabbed = alloca( i * sizeof(int16_t) );
106 #   else
107     int16_t * p_swabbed = malloc( i * sizeof(int16_t) );
108 #   endif
109
110     swab( p_in_buf->p_buffer, (void *)p_swabbed, i * sizeof(int16_t) );
111     p_in = p_swabbed + i - 1;
112
113 #else
114     byte_t p_tmp[2];
115     p_in = (int16_t *)p_in_buf->p_buffer + i - 1;
116 #endif
117
118     while( i-- )
119     {
120 #ifndef HAVE_SWAB
121         p_tmp[0] = ((byte_t *)p_in)[1];
122         p_tmp[1] = ((byte_t *)p_in)[0];
123         *p_out = (float)( *(int16_t *)p_tmp ) / 32768.0;
124 #else
125         *p_out = (float)*p_in / 32768.0;
126 #endif
127         p_in--; p_out--;
128     }
129
130 #ifdef HAVE_SWAB
131 #   ifndef HAVE_ALLOCA
132     free( p_swabbed );
133 #   endif
134 #endif
135
136     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
137     p_out_buf->i_nb_bytes = p_in_buf->i_nb_bytes * 2;
138 }
139