]> git.sesse.net Git - vlc/blob - modules/audio_output/file.c
* Trivial resampler plug-in (resampling still non-functional)
[vlc] / modules / audio_output / file.c
1 /*****************************************************************************
2  * file.c : audio output which writes the samples to a file
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: file.c,v 1.3 2002/08/09 23:47:23 massiot Exp $
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <string.h>
28 #include <stdlib.h>
29 #include <errno.h>
30
31 #include <vlc/vlc.h>
32 #include <vlc/aout.h>
33
34 #include "aout_internal.h"
35
36 /*****************************************************************************
37  * Local prototypes.
38  *****************************************************************************/
39 static int     Open        ( vlc_object_t * );
40 static void    Close       ( vlc_object_t * );
41 static int     SetFormat   ( aout_instance_t * );
42 static void    Play        ( aout_instance_t *, aout_buffer_t * );
43
44 /*****************************************************************************
45  * Module descriptor
46  *****************************************************************************/
47 #define FORMAT_TEXT N_("Output format")
48 #define FORMAT_LONGTEXT N_("one of \"u8\", \"s8\", \"u16\", \"s16\"," \
49                            " \"u16_le\", \"s16_le\", \"u16_be\"," \
50                            " \"s16_be\", \"fixed32\", \"float32\" or \"spdif\"")
51
52 static char *format_list[] = { "u8", "s8", "u16", "s16", "u16_le", "s16_le",
53                                "u16_be", "s16_be", "fixed32", "float32",
54                                "spdif", NULL };
55 static int format_int[] = { AOUT_FMT_U8, AOUT_FMT_S8, AOUT_FMT_U16_NE,
56                             AOUT_FMT_S16_NE, AOUT_FMT_U16_LE, AOUT_FMT_S16_LE,
57                             AOUT_FMT_U16_BE, AOUT_FMT_S16_BE, AOUT_FMT_FIXED32,
58                             AOUT_FMT_FLOAT32, AOUT_FMT_A52 };
59
60 #define PATH_TEXT N_("Path of the output file")
61 #define PATH_LONGTEXT N_("By default samples.raw")
62
63 vlc_module_begin();
64     add_category_hint( N_("Audio"), NULL );
65     add_string_from_list( "format", "s16", format_list, NULL,
66                           FORMAT_TEXT, FORMAT_LONGTEXT );
67     add_string( "path", "samples.raw", NULL, PATH_TEXT, PATH_LONGTEXT );
68     set_description( _("file output module") );
69     set_capability( "audio output", 0 );
70     add_shortcut( "file" );
71     set_callbacks( Open, Close );
72 vlc_module_end();
73
74 /*****************************************************************************
75  * Open: open a dummy audio device
76  *****************************************************************************/
77 static int Open( vlc_object_t * p_this )
78 {
79     aout_instance_t * p_aout = (aout_instance_t *)p_this;
80     FILE * p_file;
81     char * psz_name = config_GetPsz( p_this, "path" );
82
83     (FILE *)p_aout->output.p_sys = p_file = fopen( psz_name, "wb" );
84     free( psz_name );
85     if ( p_file == NULL ) return -1;
86
87     p_aout->output.pf_setformat = SetFormat;
88     p_aout->output.pf_play = Play;
89
90     return VLC_SUCCESS;
91 }
92
93 /*****************************************************************************
94  * Close: close our file
95  *****************************************************************************/
96 static void Close( vlc_object_t * p_this )
97 {
98     aout_instance_t * p_aout = (aout_instance_t *)p_this;
99
100     fclose( (FILE *)p_aout->output.p_sys );
101 }
102
103 /*****************************************************************************
104  * SetFormat: pretend to set the dsp output format
105  *****************************************************************************/
106 static int SetFormat( aout_instance_t * p_aout )
107 {
108     char * psz_format = config_GetPsz( p_aout, "format" );
109     char ** ppsz_compare = format_list;
110     int i = 0;
111
112     while ( *ppsz_compare != NULL )
113     {
114         if ( !strncmp( *ppsz_compare, psz_format, strlen(*ppsz_compare) ) )
115         {
116             break;
117         }
118         ppsz_compare++; i++;
119     }
120
121     if ( *ppsz_compare == NULL )
122     {
123         msg_Err( p_aout, "Cannot understand the format string (%s)",
124                  psz_format );
125         return -1;
126     }
127
128     p_aout->output.output.i_format = format_int[i];
129     p_aout->output.i_nb_samples = 2048;
130     return 0;
131 }
132
133 /*****************************************************************************
134  * Play: pretend to play a sound
135  *****************************************************************************/
136 static void Play( aout_instance_t * p_aout, aout_buffer_t * p_buffer )
137 {
138     if( fwrite( p_buffer->p_buffer,
139                 aout_FormatToSize( &p_aout->output.output,
140                                    p_buffer->i_nb_samples ), 1,
141                 (FILE *)p_aout->output.p_sys ) != 1 )
142     {
143         msg_Err( p_aout, "write error (%s)", strerror(errno) );
144     }
145
146     aout_BufferFree( p_buffer );
147 }
148