2 * PCM audio output driver
4 * This file is part of MPlayer.
6 * MPlayer is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * MPlayer is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 #include "libavutil/common.h"
29 #include "subopt-helper.h"
30 #include "libaf/af_format.h"
31 #include "libaf/reorder_ch.h"
32 #include "audio_out.h"
33 #include "audio_out_internal.h"
38 static ao_info_t info
=
40 "RAW PCM/WAVE file writer audio output",
50 static char *ao_outputfilename
= NULL
;
51 static int ao_pcm_waveheader
= 1;
54 #define WAV_ID_RIFF 0x46464952 /* "RIFF" */
55 #define WAV_ID_WAVE 0x45564157 /* "WAVE" */
56 #define WAV_ID_FMT 0x20746d66 /* "fmt " */
57 #define WAV_ID_DATA 0x61746164 /* "data" */
58 #define WAV_ID_PCM 0x0001
59 #define WAV_ID_FLOAT_PCM 0x0003
71 uint32_t bytes_per_second
;
78 /* init with default values */
79 static struct WaveHeader wavhdr
;
81 static FILE *fp
= NULL
;
83 // to set/get/query special features/parameters
84 static int control(int cmd
,void *arg
){
88 // open & setup audio device
89 // return: 1=success 0=fail
90 static int init(int rate
,int channels
,int format
,int flags
){
93 {"waveheader", OPT_ARG_BOOL
, &ao_pcm_waveheader
, NULL
},
94 {"file", OPT_ARG_MSTRZ
, &ao_outputfilename
, NULL
},
95 {"fast", OPT_ARG_BOOL
, &fast
, NULL
},
99 ao_pcm_waveheader
= 1;
101 if (subopt_parse(ao_subdevice
, subopts
) != 0) {
104 if (!ao_outputfilename
){
106 strdup(ao_pcm_waveheader
?"audiodump.wav":"audiodump.pcm");
111 case AF_FORMAT_S32_BE
:
112 format
=AF_FORMAT_S32_LE
;
113 case AF_FORMAT_S32_LE
:
116 case AF_FORMAT_FLOAT_BE
:
117 format
=AF_FORMAT_FLOAT_LE
;
118 case AF_FORMAT_FLOAT_LE
:
129 format
=AF_FORMAT_S16_LE
;
134 ao_data
.outburst
= 65536;
135 ao_data
.buffersize
= 2*65536;
136 ao_data
.channels
=channels
;
137 ao_data
.samplerate
=rate
;
138 ao_data
.format
=format
;
139 ao_data
.bps
=channels
*rate
*(bits
/8);
141 wavhdr
.riff
= le2me_32(WAV_ID_RIFF
);
142 wavhdr
.wave
= le2me_32(WAV_ID_WAVE
);
143 wavhdr
.fmt
= le2me_32(WAV_ID_FMT
);
144 wavhdr
.fmt_length
= le2me_32(16);
145 wavhdr
.fmt_tag
= le2me_16(format
== AF_FORMAT_FLOAT_LE
? WAV_ID_FLOAT_PCM
: WAV_ID_PCM
);
146 wavhdr
.channels
= le2me_16(ao_data
.channels
);
147 wavhdr
.sample_rate
= le2me_32(ao_data
.samplerate
);
148 wavhdr
.bytes_per_second
= le2me_32(ao_data
.bps
);
149 wavhdr
.bits
= le2me_16(bits
);
150 wavhdr
.block_align
= le2me_16(ao_data
.channels
* (bits
/ 8));
152 wavhdr
.data
= le2me_32(WAV_ID_DATA
);
153 wavhdr
.data_length
=le2me_32(0x7ffff000);
154 wavhdr
.file_length
= wavhdr
.data_length
+ sizeof(wavhdr
) - 8;
156 mp_msg(MSGT_AO
, MSGL_INFO
, MSGTR_AO_PCM_FileInfo
, ao_outputfilename
,
157 (ao_pcm_waveheader
?"WAVE":"RAW PCM"), rate
,
158 (channels
> 1) ? "Stereo" : "Mono", af_fmt2str_short(format
));
159 mp_msg(MSGT_AO
, MSGL_INFO
, MSGTR_AO_PCM_HintInfo
);
161 fp
= fopen(ao_outputfilename
, "wb");
163 if(ao_pcm_waveheader
){ /* Reserve space for wave header */
164 fwrite(&wavhdr
,sizeof(wavhdr
),1,fp
);
165 wavhdr
.file_length
=wavhdr
.data_length
=0;
169 mp_msg(MSGT_AO
, MSGL_ERR
, MSGTR_AO_PCM_CantOpenOutputFile
,
174 // close audio device
175 static void uninit(int immed
){
177 if(ao_pcm_waveheader
&& fseek(fp
, 0, SEEK_SET
) == 0){ /* Write wave header */
178 wavhdr
.file_length
= wavhdr
.data_length
+ sizeof(wavhdr
) - 8;
179 wavhdr
.file_length
= le2me_32(wavhdr
.file_length
);
180 wavhdr
.data_length
= le2me_32(wavhdr
.data_length
);
181 fwrite(&wavhdr
,sizeof(wavhdr
),1,fp
);
184 if (ao_outputfilename
)
185 free(ao_outputfilename
);
186 ao_outputfilename
= NULL
;
189 // stop playing and empty buffers (for seeking/pause)
190 static void reset(void){
194 // stop playing, keep buffers (for pause)
195 static void audio_pause(void)
197 // for now, just call reset();
201 // resume playing, after audio_pause()
202 static void audio_resume(void)
206 // return: how many bytes can be played without blocking
207 static int get_space(void){
210 return ao_data
.pts
< vo_pts
+ fast
* 30000 ? ao_data
.outburst
: 0;
211 return ao_data
.outburst
;
214 // plays 'len' bytes of 'data'
215 // it should round it down to outburst*n
216 // return: number of bytes played
217 static int play(void* data
,int len
,int flags
){
219 // let libaf to do the conversion...
221 //#ifdef WORDS_BIGENDIAN
222 if (ao_data
.format
== AFMT_S16_LE
) {
223 unsigned short *buffer
= (unsigned short *) data
;
225 for(i
= 0; i
< len
/2; ++i
) {
226 buffer
[i
] = le2me_16(buffer
[i
]);
231 if (ao_data
.channels
== 6 || ao_data
.channels
== 5) {
232 int frame_size
= le2me_16(wavhdr
.bits
) / 8;
233 len
-= len
% (frame_size
* ao_data
.channels
);
234 reorder_channel_nch(data
, AF_CHANNEL_LAYOUT_MPLAYER_DEFAULT
,
235 AF_CHANNEL_LAYOUT_WAVEEX_DEFAULT
,
237 len
/ frame_size
, frame_size
);
240 //printf("PCM: Writing chunk!\n");
241 fwrite(data
,len
,1,fp
);
243 if(ao_pcm_waveheader
)
244 wavhdr
.data_length
+= len
;
249 // return: delay in seconds between first and last sample in buffer
250 static float get_delay(void){