]> git.sesse.net Git - vlc/blob - modules/audio_filter/converter/float.c
Implemented fi32 -> fl32/s16 conversion in format.c.
[vlc] / modules / audio_filter / converter / float.c
1 /*****************************************************************************
2  * float.c: Floating point audio format conversions
3  *****************************************************************************
4  * Copyright (C) 2002, 2006-2009 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jean-Paul Saman <jpsaman _at_ videolan _dot_ org>
8  *          Christophe Massiot <massiot@via.ecp.fr>
9  *          Samuel Hocevar <sam@zoy.org>
10  *          Xavier Maillard <zedek@fxgsproject.org>
11  *          Henri Fallon <henri@videolan.org>
12  *          Gildas Bazin <gbazin@netcourrier.com>
13  *
14  * This program is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation; either version 2 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
27  *****************************************************************************/
28
29 /*****************************************************************************
30  * Preamble
31  *****************************************************************************/
32 #ifdef HAVE_CONFIG_H
33 # include "config.h"
34 #endif
35
36 #include <vlc_common.h>
37 #include <vlc_plugin.h>
38 #include <vlc_aout.h>
39 #include <vlc_filter.h>
40
41 /*****************************************************************************
42  * Local prototypes
43  *****************************************************************************/
44 static int  Create_F32ToFL32 ( vlc_object_t * );
45 static block_t *Do_F32ToFL32( filter_t *, block_t * );
46
47 /*****************************************************************************
48  * Module descriptor
49  *****************************************************************************/
50 vlc_module_begin ()
51     set_description( N_("Floating-point audio format conversions") )
52     set_capability( "audio filter", 10 )
53     set_callbacks( Create_F32ToFL32, NULL )
54 vlc_module_end ()
55
56 /*****************************************************************************
57  * Fixed 32 to Float 32 and backwards
58  *****************************************************************************/
59 static int Create_F32ToFL32( vlc_object_t *p_this )
60 {
61     filter_t * p_filter = (filter_t *)p_this;
62
63     if( p_filter->fmt_out.audio.i_format != VLC_CODEC_FL32
64      || !AOUT_FMTS_SIMILAR( &p_filter->fmt_in.audio,
65                             &p_filter->fmt_out.audio ) )
66         return VLC_EGENERIC;
67
68     switch( p_filter->fmt_in.audio.i_format )
69     {
70         case VLC_CODEC_FI32:
71             p_filter->pf_audio_filter = Do_F32ToFL32;
72             break;
73
74         default:
75             return VLC_EGENERIC;
76     }
77
78     return VLC_SUCCESS;
79 }
80
81 static block_t *Do_F32ToFL32( filter_t * p_filter, block_t * p_in_buf )
82 {
83     int i;
84     vlc_fixed_t * p_in = (vlc_fixed_t *)p_in_buf->p_buffer;
85     float * p_out = (float *)p_in_buf->p_buffer;
86
87     for ( i = p_in_buf->i_nb_samples
88                * aout_FormatNbChannels( &p_filter->fmt_in.audio ) ; i-- ; )
89     {
90         *p_out++ = (float)*p_in++ / (float)FIXED32_ONE;
91     }
92     return p_in_buf;
93 }
94
95