]> git.sesse.net Git - vlc/blob - modules/audio_output/file.c
* ./modules/audio_output/*: ported the ALSA, aRts, esd and OSS modules to
[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.7 2002/08/19 23:07:30 sam 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 #define FRAME_SIZE 2048
37 #define A52_FRAME_NB 1536
38
39 /*****************************************************************************
40  * Local prototypes.
41  *****************************************************************************/
42 static int     Open        ( vlc_object_t * );
43 static void    Close       ( vlc_object_t * );
44 static int     SetFormat   ( aout_instance_t * );
45 static void    Play        ( aout_instance_t * );
46
47 /*****************************************************************************
48  * Module descriptor
49  *****************************************************************************/
50 #define FORMAT_TEXT N_("output format")
51 #define FORMAT_LONGTEXT N_("one of \"u8\", \"s8\", \"u16\", \"s16\"," \
52                            " \"u16_le\", \"s16_le\", \"u16_be\"," \
53                            " \"s16_be\", \"fixed32\", \"float32\" or \"spdif\"")
54
55 static char *format_list[] = { "u8", "s8", "u16", "s16", "u16_le", "s16_le",
56                                "u16_be", "s16_be", "fixed32", "float32",
57                                "spdif", NULL };
58 static int format_int[] = { AOUT_FMT_U8, AOUT_FMT_S8, AOUT_FMT_U16_NE,
59                             AOUT_FMT_S16_NE, AOUT_FMT_U16_LE, AOUT_FMT_S16_LE,
60                             AOUT_FMT_U16_BE, AOUT_FMT_S16_BE, AOUT_FMT_FIXED32,
61                             AOUT_FMT_FLOAT32, AOUT_FMT_SPDIF };
62
63 #define PATH_TEXT N_("path of the output file")
64 #define PATH_LONGTEXT N_("By default samples.raw")
65
66 vlc_module_begin();
67     add_category_hint( N_("Audio"), NULL );
68     add_string_from_list( "format", "s16", format_list, NULL,
69                           FORMAT_TEXT, FORMAT_LONGTEXT );
70     add_string( "path", "samples.raw", NULL, PATH_TEXT, PATH_LONGTEXT );
71     set_description( _("file output module") );
72     set_capability( "audio output", 0 );
73     add_shortcut( "file" );
74     set_callbacks( Open, Close );
75 vlc_module_end();
76
77 /*****************************************************************************
78  * Open: open a dummy audio device
79  *****************************************************************************/
80 static int Open( vlc_object_t * p_this )
81 {
82     aout_instance_t * p_aout = (aout_instance_t *)p_this;
83     FILE * p_file;
84     char * psz_name = config_GetPsz( p_this, "path" );
85
86     p_file = fopen( psz_name, "wb" );
87     p_aout->output.p_sys = (void *)p_file;
88     free( psz_name );
89     if ( p_file == NULL ) return -1;
90
91     p_aout->output.pf_setformat = SetFormat;
92     p_aout->output.pf_play = Play;
93
94     return VLC_SUCCESS;
95 }
96
97 /*****************************************************************************
98  * Close: close our file
99  *****************************************************************************/
100 static void Close( vlc_object_t * p_this )
101 {
102     aout_instance_t * p_aout = (aout_instance_t *)p_this;
103
104     fclose( (FILE *)p_aout->output.p_sys );
105 }
106
107 /*****************************************************************************
108  * SetFormat: pretend to set the dsp output format
109  *****************************************************************************/
110 static int SetFormat( aout_instance_t * p_aout )
111 {
112     char * psz_format = config_GetPsz( p_aout, "format" );
113     char ** ppsz_compare = format_list;
114     int i = 0;
115
116     while ( *ppsz_compare != NULL )
117     {
118         if ( !strncmp( *ppsz_compare, psz_format, strlen(*ppsz_compare) ) )
119         {
120             break;
121         }
122         ppsz_compare++; i++;
123     }
124
125     if ( *ppsz_compare == NULL )
126     {
127         msg_Err( p_aout, "Cannot understand the format string (%s)",
128                  psz_format );
129         return -1;
130     }
131
132     p_aout->output.output.i_format = format_int[i];
133     if ( p_aout->output.output.i_format == AOUT_FMT_SPDIF )
134     {
135         p_aout->output.i_nb_samples = A52_FRAME_NB;
136         p_aout->output.output.i_bytes_per_frame = AOUT_SPDIF_SIZE;
137         p_aout->output.output.i_frame_length = A52_FRAME_NB;
138     }
139     else
140     {
141         p_aout->output.i_nb_samples = FRAME_SIZE;
142     }
143     return 0;
144 }
145
146 /*****************************************************************************
147  * Play: pretend to play a sound
148  *****************************************************************************/
149 static void Play( aout_instance_t * p_aout )
150 {
151     aout_buffer_t * p_buffer = aout_FifoPop( p_aout, &p_aout->output.fifo );
152     if( fwrite( p_buffer->p_buffer, p_buffer->i_nb_bytes, 1,
153                 (FILE *)p_aout->output.p_sys ) != 1 )
154     {
155         msg_Err( p_aout, "write error (%s)", strerror(errno) );
156     }
157
158     aout_BufferFree( p_buffer );
159 }
160