Mercurial > mplayer.hg
annotate dec_audio.c @ 4239:acadddf56508
updated, colorkey support, pontscho reported it's working fine, only faulting with very-very-very big resolution
author | alex |
---|---|
date | Fri, 18 Jan 2002 18:14:10 +0000 |
parents | c92c23a42e91 |
children | ed500b952d2d |
rev | line source |
---|---|
3866 | 1 |
2 #define USE_G72X | |
3886 | 3 //#define USE_LIBAC3 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
4 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
5 #include <stdio.h> |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
6 #include <stdlib.h> |
1430 | 7 #include <unistd.h> |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
8 |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1020
diff
changeset
|
9 #include "config.h" |
1567 | 10 #include "mp_msg.h" |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1927
diff
changeset
|
11 #include "help_mp.h" |
1567 | 12 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
13 extern int verbose; // defined in mplayer.c |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
14 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
15 #include "stream.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
16 #include "demuxer.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
17 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
18 #include "codec-cfg.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
19 #include "stheader.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
20 |
2563 | 21 #include "dec_audio.h" |
22 | |
23 //========================================================================== | |
24 | |
25 #include "libao2/afmt.h" | |
26 | |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
1973
diff
changeset
|
27 #include "dll_init.h" |
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
1973
diff
changeset
|
28 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
29 #include "mp3lib/mp3.h" |
3886 | 30 |
31 #ifdef USE_LIBAC3 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
32 #include "libac3/ac3.h" |
3886 | 33 #endif |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
34 |
3413 | 35 #include "liba52/a52.h" |
3907 | 36 #include "liba52/mm_accel.h" |
3413 | 37 static sample_t * a52_samples; |
38 static a52_state_t a52_state; | |
3907 | 39 static uint32_t a52_accel=0; |
3911 | 40 static uint32_t a52_flags=0; |
3413 | 41 |
3866 | 42 #ifdef USE_G72X |
3426 | 43 #include "g72x/g72x.h" |
44 static G72x_DATA g72x_data; | |
3866 | 45 #endif |
3413 | 46 |
883 | 47 #include "alaw.h" |
48 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
49 #include "xa/xa_gsm.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
50 |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1517
diff
changeset
|
51 #include "ac3-iec958.h" |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1517
diff
changeset
|
52 |
3756 | 53 #include "adpcm.h" |
2420 | 54 |
3145 | 55 #include "cpudetect.h" |
56 | |
3182
95bbd21e8e1f
moved num_audio_channels out of LIBMAD ifdef, where it didn't belong!
steve
parents:
3181
diff
changeset
|
57 /* used for ac3surround decoder - set using -channels option */ |
95bbd21e8e1f
moved num_audio_channels out of LIBMAD ifdef, where it didn't belong!
steve
parents:
3181
diff
changeset
|
58 int audio_output_channels = 2; |
95bbd21e8e1f
moved num_audio_channels out of LIBMAD ifdef, where it didn't belong!
steve
parents:
3181
diff
changeset
|
59 |
2563 | 60 #ifdef USE_FAKE_MONO |
61 int fakemono=0; | |
62 #endif | |
63 | |
1291 | 64 #ifdef USE_DIRECTSHOW |
3947
2eb8c8aacca7
using dshow headers from dshow/ instead of c++ version
arpi
parents:
3933
diff
changeset
|
65 #include "loader/dshow/DS_AudioDecoder.h" |
2eb8c8aacca7
using dshow headers from dshow/ instead of c++ version
arpi
parents:
3933
diff
changeset
|
66 static DS_AudioDecoder* ds_adec=NULL; |
1291 | 67 #endif |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1020
diff
changeset
|
68 |
1828 | 69 #ifdef HAVE_OGGVORBIS |
70 /* XXX is math.h really needed? - atmos */ | |
71 #include <math.h> | |
72 #include <vorbis/codec.h> | |
2341 | 73 |
74 typedef struct ov_struct_st { | |
75 ogg_sync_state oy; /* sync and verify incoming physical bitstream */ | |
76 ogg_stream_state os; /* take physical pages, weld into a logical | |
77 stream of packets */ | |
78 ogg_page og; /* one Ogg bitstream page. Vorbis packets are inside */ | |
79 ogg_packet op; /* one raw packet of data for decode */ | |
3145 | 80 |
2341 | 81 vorbis_info vi; /* struct that stores all the static vorbis bitstream |
82 settings */ | |
83 vorbis_comment vc; /* struct that stores all the bitstream user comments */ | |
84 vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */ | |
85 vorbis_block vb; /* local working space for packet->PCM decode */ | |
86 } ov_struct_t; | |
1828 | 87 #endif |
88 | |
1927 | 89 #ifdef USE_LIBAVCODEC |
2496 | 90 #ifdef USE_LIBAVCODEC_SO |
91 #include <libffmpeg/avcodec.h> | |
92 #else | |
1927 | 93 #include "libavcodec/avcodec.h" |
2496 | 94 #endif |
1927 | 95 static AVCodec *lavc_codec=NULL; |
96 static AVCodecContext lavc_context; | |
97 extern int avcodec_inited; | |
98 #endif | |
99 | |
2415 | 100 |
101 | |
102 #ifdef USE_LIBMAD | |
103 #include <mad.h> | |
4208
c92c23a42e91
libmad memcpy optimization by Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4151
diff
changeset
|
104 |
c92c23a42e91
libmad memcpy optimization by Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4151
diff
changeset
|
105 #define MAD_SINGLE_BUFFER_SIZE 8192 |
c92c23a42e91
libmad memcpy optimization by Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4151
diff
changeset
|
106 #define MAD_TOTAL_BUFFER_SIZE ((MAD_SINGLE_BUFFER_SIZE)*3) |
c92c23a42e91
libmad memcpy optimization by Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4151
diff
changeset
|
107 |
2415 | 108 static struct mad_stream mad_stream; |
109 static struct mad_frame mad_frame; | |
110 static struct mad_synth mad_synth; | |
4208
c92c23a42e91
libmad memcpy optimization by Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4151
diff
changeset
|
111 static char* mad_in_buffer = 0; /* base pointer of buffer */ |
2415 | 112 |
113 // ensure buffer is filled with some data | |
114 static void mad_prepare_buffer(sh_audio_t* sh_audio, struct mad_stream* ms, int length) | |
115 { | |
116 if(sh_audio->a_in_buffer_len < length) { | |
117 int len = demux_read_data(sh_audio->ds, sh_audio->a_in_buffer+sh_audio->a_in_buffer_len, length-sh_audio->a_in_buffer_len); | |
118 sh_audio->a_in_buffer_len += len; | |
3874 | 119 // printf("mad_prepare_buffer: read %d bytes\n", len); |
2415 | 120 } |
121 } | |
122 | |
123 static void mad_postprocess_buffer(sh_audio_t* sh_audio, struct mad_stream* ms) | |
124 { | |
4208
c92c23a42e91
libmad memcpy optimization by Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4151
diff
changeset
|
125 /* rotate buffer while possible, in order to reduce the overhead of endless memcpy */ |
2415 | 126 int delta = (unsigned char*)ms->next_frame - (unsigned char *)sh_audio->a_in_buffer; |
4208
c92c23a42e91
libmad memcpy optimization by Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4151
diff
changeset
|
127 if((unsigned long)(sh_audio->a_in_buffer) - (unsigned long)mad_in_buffer < |
c92c23a42e91
libmad memcpy optimization by Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4151
diff
changeset
|
128 (MAD_TOTAL_BUFFER_SIZE - MAD_SINGLE_BUFFER_SIZE - delta)) { |
c92c23a42e91
libmad memcpy optimization by Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4151
diff
changeset
|
129 sh_audio->a_in_buffer += delta; |
c92c23a42e91
libmad memcpy optimization by Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4151
diff
changeset
|
130 sh_audio->a_in_buffer_len -= delta; |
c92c23a42e91
libmad memcpy optimization by Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4151
diff
changeset
|
131 } else { |
c92c23a42e91
libmad memcpy optimization by Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4151
diff
changeset
|
132 sh_audio->a_in_buffer = mad_in_buffer; |
2415 | 133 sh_audio->a_in_buffer_len -= delta; |
134 memcpy(sh_audio->a_in_buffer, ms->next_frame, sh_audio->a_in_buffer_len); | |
135 } | |
136 } | |
137 | |
138 static inline | |
139 signed short mad_scale(mad_fixed_t sample) | |
140 { | |
141 /* round */ | |
142 sample += (1L << (MAD_F_FRACBITS - 16)); | |
143 | |
144 /* clip */ | |
145 if (sample >= MAD_F_ONE) | |
146 sample = MAD_F_ONE - 1; | |
147 else if (sample < -MAD_F_ONE) | |
148 sample = -MAD_F_ONE; | |
149 | |
150 /* quantize */ | |
151 return sample >> (MAD_F_FRACBITS + 1 - 16); | |
3871 | 152 |
153 } | |
154 | |
155 static void mad_sync(sh_audio_t* sh_audio, struct mad_stream* ms) | |
156 { | |
157 int len; | |
3874 | 158 #if 1 |
3871 | 159 int skipped = 0; |
160 | |
161 // printf("buffer len: %d\n", sh_audio->a_in_buffer_len); | |
162 while(sh_audio->a_in_buffer_len - skipped) | |
163 { | |
164 len = mp_decode_mp3_header(sh_audio->a_in_buffer+skipped); | |
165 if (len != -1) | |
166 { | |
167 // printf("Frame len=%d\n", len); | |
168 break; | |
169 } | |
170 else | |
171 skipped++; | |
172 } | |
173 if (skipped) | |
174 { | |
175 printf("Audio synced, skipped bytes: %d\n", skipped); | |
3874 | 176 // ms->skiplen += skipped; |
177 // printf("skiplen: %d (skipped: %d)\n", ms->skiplen, skipped); | |
178 | |
179 // if (sh_audio->a_in_buffer_len - skipped < MAD_BUFFER_GUARD) | |
180 // printf("Mad reports: too small buffer\n"); | |
181 | |
182 // mad_stream_buffer(ms, sh_audio->a_in_buffer+skipped, sh_audio->a_in_buffer_len-skipped); | |
183 // mad_prepare_buffer(sh_audio, ms, sh_audio->a_in_buffer_len-skipped); | |
184 | |
185 /* move frame to the beginning of the buffer and fill up to a_in_buffer_size */ | |
186 sh_audio->a_in_buffer_len -= skipped; | |
187 memcpy(sh_audio->a_in_buffer, sh_audio->a_in_buffer+skipped, sh_audio->a_in_buffer_len); | |
188 mad_prepare_buffer(sh_audio, ms, sh_audio->a_in_buffer_size); | |
189 mad_stream_buffer(ms, sh_audio->a_in_buffer, sh_audio->a_in_buffer_len); | |
190 // printf("bufflen: %d\n", sh_audio->a_in_buffer_len); | |
191 | |
192 // len = mp_decode_mp3_header(sh_audio->a_in_buffer); | |
193 // printf("len: %d\n", len); | |
194 ms->md_len = len; | |
3871 | 195 } |
3874 | 196 #else |
3871 | 197 len = mad_stream_sync(&ms); |
198 if (len == -1) | |
199 { | |
200 printf("Mad sync failed\n"); | |
201 } | |
202 #endif | |
2415 | 203 } |
3874 | 204 |
205 static void mad_print_error(struct mad_stream *mad_stream) | |
206 { | |
207 printf("error (0x%x): ", mad_stream->error); | |
208 switch(mad_stream->error) | |
209 { | |
210 case MAD_ERROR_BUFLEN: printf("buffer too small"); break; | |
211 case MAD_ERROR_BUFPTR: printf("invalid buffer pointer"); break; | |
212 case MAD_ERROR_NOMEM: printf("not enought memory"); break; | |
213 case MAD_ERROR_LOSTSYNC: printf("lost sync"); break; | |
214 case MAD_ERROR_BADLAYER: printf("bad layer"); break; | |
215 case MAD_ERROR_BADBITRATE: printf("bad bitrate"); break; | |
216 case MAD_ERROR_BADSAMPLERATE: printf("bad samplerate"); break; | |
217 case MAD_ERROR_BADEMPHASIS: printf("bad emphasis"); break; | |
218 case MAD_ERROR_BADCRC: printf("bad crc"); break; | |
219 case MAD_ERROR_BADBITALLOC: printf("forbidden bit alloc val"); break; | |
220 case MAD_ERROR_BADSCALEFACTOR: printf("bad scalefactor index"); break; | |
221 case MAD_ERROR_BADFRAMELEN: printf("bad frame length"); break; | |
222 case MAD_ERROR_BADBIGVALUES: printf("bad bigvalues count"); break; | |
223 case MAD_ERROR_BADBLOCKTYPE: printf("reserved blocktype"); break; | |
224 case MAD_ERROR_BADSCFSI: printf("bad scalefactor selinfo"); break; | |
225 case MAD_ERROR_BADDATAPTR: printf("bad maindatabegin ptr"); break; | |
226 case MAD_ERROR_BADPART3LEN: printf("bad audio data len"); break; | |
227 case MAD_ERROR_BADHUFFTABLE: printf("bad huffman table sel"); break; | |
228 case MAD_ERROR_BADHUFFDATA: printf("huffman data overrun"); break; | |
229 case MAD_ERROR_BADSTEREO: printf("incomp. blocktype for JS"); break; | |
230 default: | |
231 printf("unknown error"); | |
232 } | |
233 printf("\n"); | |
234 } | |
2415 | 235 #endif |
236 | |
237 | |
3413 | 238 static int a52_fillbuff(sh_audio_t *sh_audio){ |
239 int length=0; | |
240 int flags=0; | |
241 int sample_rate=0; | |
242 int bit_rate=0; | |
3834 | 243 |
244 sh_audio->a_in_buffer_len=0; | |
245 // sync frame: | |
3413 | 246 while(1){ |
247 while(sh_audio->a_in_buffer_len<7){ | |
248 int c=demux_getc(sh_audio->ds); | |
249 if(c<0) return -1; // EOF | |
250 sh_audio->a_in_buffer[sh_audio->a_in_buffer_len++]=c; | |
251 } | |
252 length = a52_syncinfo (sh_audio->a_in_buffer, &flags, &sample_rate, &bit_rate); | |
3834 | 253 if(length>=7 && length<=3840) break; // we're done. |
254 // bad file => resync | |
255 memcpy(sh_audio->a_in_buffer,sh_audio->a_in_buffer+1,6); | |
256 --sh_audio->a_in_buffer_len; | |
257 } | |
3413 | 258 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"a52: len=%d flags=0x%X %d Hz %d bit/s\n",length,flags,sample_rate,bit_rate); |
259 sh_audio->samplerate=sample_rate; | |
260 sh_audio->i_bps=bit_rate/8; | |
261 demux_read_data(sh_audio->ds,sh_audio->a_in_buffer+7,length-7); | |
3891 | 262 |
263 if(crc16_block(sh_audio->a_in_buffer+2,length-2)!=0) | |
264 mp_msg(MSGT_DECAUDIO,MSGL_STATUS,"a52: CRC check failed! \n"); | |
265 | |
3413 | 266 return length; |
267 } | |
2415 | 268 |
3887 | 269 // returns: number of available channels |
270 static int a52_printinfo(sh_audio_t *sh_audio){ | |
271 int flags, sample_rate, bit_rate; | |
272 char* mode="unknown"; | |
273 int channels=0; | |
274 a52_syncinfo (sh_audio->a_in_buffer, &flags, &sample_rate, &bit_rate); | |
275 switch(flags&A52_CHANNEL_MASK){ | |
276 case A52_CHANNEL: mode="channel"; channels=2; break; | |
277 case A52_MONO: mode="mono"; channels=1; break; | |
278 case A52_STEREO: mode="stereo"; channels=2; break; | |
279 case A52_3F: mode="3f";channels=3;break; | |
280 case A52_2F1R: mode="2f+1r";channels=3;break; | |
281 case A52_3F1R: mode="3f+1r";channels=4;break; | |
282 case A52_2F2R: mode="2f+2r";channels=4;break; | |
283 case A52_3F2R: mode="3f+2r";channels=5;break; | |
284 case A52_CHANNEL1: mode="channel1"; channels=2; break; | |
285 case A52_CHANNEL2: mode="channel2"; channels=2; break; | |
286 case A52_DOLBY: mode="dolby"; channels=2; break; | |
287 } | |
288 mp_msg(MSGT_DECAUDIO,MSGL_INFO,"AC3: %d.%d (%s%s) %d Hz %3.1f kbit/s\n", | |
289 channels, (flags&A52_LFE)?1:0, | |
290 mode, (flags&A52_LFE)?"+lfe":"", | |
291 sample_rate, bit_rate*0.001f); | |
292 return (flags&A52_LFE) ? (channels+1) : channels; | |
293 } | |
294 | |
1927 | 295 int decode_audio(sh_audio_t *sh_audio,unsigned char *buf,int minlen,int maxlen); |
1327
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
296 |
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
297 |
1289 | 298 static sh_audio_t* dec_audio_sh=NULL; |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
299 |
3886 | 300 #ifdef USE_LIBAC3 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
301 // AC3 decoder buffer callback: |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
302 static void ac3_fill_buffer(uint8_t **start,uint8_t **end){ |
1289 | 303 int len=ds_get_packet(dec_audio_sh->ds,start); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
304 //printf("<ac3:%d>\n",len); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
305 if(len<0) |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
306 *start = *end = NULL; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
307 else |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
308 *end = *start + len; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
309 } |
3886 | 310 #endif |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
311 |
1289 | 312 // MP3 decoder buffer callback: |
313 int mplayer_audio_read(char *buf,int size){ | |
314 int len; | |
315 len=demux_read_data(dec_audio_sh->ds,buf,size); | |
316 return len; | |
317 } | |
318 | |
296 | 319 int init_audio(sh_audio_t *sh_audio){ |
303 | 320 int driver=sh_audio->codec->driver; |
296 | 321 |
322 sh_audio->samplesize=2; | |
1320
18374d49befa
On big-endian architectures, all audio decoders default to big-endian 16-bit
jkeil
parents:
1313
diff
changeset
|
323 #if WORDS_BIGENDIAN |
18374d49befa
On big-endian architectures, all audio decoders default to big-endian 16-bit
jkeil
parents:
1313
diff
changeset
|
324 sh_audio->sample_format=AFMT_S16_BE; |
18374d49befa
On big-endian architectures, all audio decoders default to big-endian 16-bit
jkeil
parents:
1313
diff
changeset
|
325 #else |
758 | 326 sh_audio->sample_format=AFMT_S16_LE; |
1320
18374d49befa
On big-endian architectures, all audio decoders default to big-endian 16-bit
jkeil
parents:
1313
diff
changeset
|
327 #endif |
303 | 328 sh_audio->samplerate=0; |
401 | 329 //sh_audio->pcm_bswap=0; |
1529 | 330 sh_audio->o_bps=0; |
303 | 331 |
758 | 332 sh_audio->a_buffer_size=0; |
303 | 333 sh_audio->a_buffer=NULL; |
296 | 334 |
746 | 335 sh_audio->a_in_buffer_len=0; |
336 | |
758 | 337 // setup required min. in/out buffer size: |
338 sh_audio->audio_out_minsize=8192;// default size, maybe not enough for Win32/ACM | |
339 | |
340 switch(driver){ | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
341 case AFM_ACM: |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1485
diff
changeset
|
342 #ifndef USE_WIN32DLL |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1927
diff
changeset
|
343 mp_msg(MSGT_DECAUDIO,MSGL_ERR,MSGTR_NoACMSupport); |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
344 driver=0; |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
345 #else |
296 | 346 // Win32 ACM audio codec: |
347 if(init_acm_audio_codec(sh_audio)){ | |
746 | 348 sh_audio->i_bps=sh_audio->wf->nAvgBytesPerSec; |
296 | 349 sh_audio->channels=sh_audio->o_wf.nChannels; |
350 sh_audio->samplerate=sh_audio->o_wf.nSamplesPerSec; | |
758 | 351 // if(sh_audio->audio_out_minsize>16384) sh_audio->audio_out_minsize=16384; |
352 // sh_audio->a_buffer_size=sh_audio->audio_out_minsize; | |
353 // if(sh_audio->a_buffer_size<sh_audio->audio_out_minsize+MAX_OUTBURST) | |
354 // sh_audio->a_buffer_size=sh_audio->audio_out_minsize+MAX_OUTBURST; | |
296 | 355 } else { |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1927
diff
changeset
|
356 mp_msg(MSGT_DECAUDIO,MSGL_ERR,MSGTR_ACMiniterror); |
303 | 357 driver=0; |
296 | 358 } |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
359 #endif |
758 | 360 break; |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
361 case AFM_DSHOW: |
296 | 362 #ifndef USE_DIRECTSHOW |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1927
diff
changeset
|
363 mp_msg(MSGT_DECAUDIO,MSGL_ERR,MSGTR_NoDShowAudio); |
303 | 364 driver=0; |
296 | 365 #else |
366 // Win32 DShow audio codec: | |
340 | 367 // printf("DShow_audio: channs=%d rate=%d\n",sh_audio->channels,sh_audio->samplerate); |
3442 | 368 if(!(ds_adec=DS_AudioDecoder_Open(sh_audio->codec->dll,&sh_audio->codec->guid,sh_audio->wf))){ |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1927
diff
changeset
|
369 mp_msg(MSGT_DECAUDIO,MSGL_ERR,MSGTR_MissingDLLcodec,sh_audio->codec->dll); |
303 | 370 driver=0; |
371 } else { | |
746 | 372 sh_audio->i_bps=sh_audio->wf->nAvgBytesPerSec; |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
401
diff
changeset
|
373 sh_audio->channels=sh_audio->wf->nChannels; |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
401
diff
changeset
|
374 sh_audio->samplerate=sh_audio->wf->nSamplesPerSec; |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
401
diff
changeset
|
375 sh_audio->audio_in_minsize=2*sh_audio->wf->nBlockAlign; |
296 | 376 if(sh_audio->audio_in_minsize<8192) sh_audio->audio_in_minsize=8192; |
377 sh_audio->a_in_buffer_size=sh_audio->audio_in_minsize; | |
378 sh_audio->a_in_buffer=malloc(sh_audio->a_in_buffer_size); | |
379 sh_audio->a_in_buffer_len=0; | |
758 | 380 sh_audio->audio_out_minsize=16384; |
296 | 381 } |
382 #endif | |
758 | 383 break; |
1828 | 384 case AFM_VORBIS: |
385 #ifndef HAVE_OGGVORBIS | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1927
diff
changeset
|
386 mp_msg(MSGT_DECAUDIO,MSGL_ERR,MSGTR_NoOggVorbis); |
1828 | 387 driver=0; |
388 #else | |
389 /* OggVorbis audio via libvorbis, compatible with files created by nandub and zorannt codec */ | |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
390 sh_audio->audio_out_minsize=1024*4; // 1024 samples/frame |
1828 | 391 #endif |
392 break; | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
393 case AFM_PCM: |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
394 case AFM_DVDPCM: |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
395 case AFM_ALAW: |
758 | 396 // PCM, aLaw |
397 sh_audio->audio_out_minsize=2048; | |
398 break; | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
399 case AFM_AC3: |
3413 | 400 case AFM_A52: |
758 | 401 // Dolby AC3 audio: |
3181
c8edb0691f09
Extended oss output driver and libac3 to support 4 and 6 channel output mixes. added -channels command line option
steve
parents:
3145
diff
changeset
|
402 // however many channels, 2 bytes in a word, 256 samples in a block, 6 blocks in a frame |
c8edb0691f09
Extended oss output driver and libac3 to support 4 and 6 channel output mixes. added -channels command line option
steve
parents:
3145
diff
changeset
|
403 sh_audio->audio_out_minsize=audio_output_channels*2*256*6; |
758 | 404 break; |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1517
diff
changeset
|
405 case AFM_HWAC3: |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1517
diff
changeset
|
406 // Dolby AC3 audio: |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1517
diff
changeset
|
407 sh_audio->audio_out_minsize=4*256*6; |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1517
diff
changeset
|
408 sh_audio->sample_format = AFMT_AC3; |
3829 | 409 sh_audio->channels=1; |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1517
diff
changeset
|
410 break; |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
411 case AFM_GSM: |
758 | 412 // MS-GSM audio codec: |
413 sh_audio->audio_out_minsize=4*320; | |
414 break; | |
3787 | 415 case AFM_IMAADPCM: |
3756 | 416 sh_audio->audio_out_minsize=4096; |
417 sh_audio->ds->ss_div=IMA_ADPCM_SAMPLES_PER_BLOCK; | |
418 sh_audio->ds->ss_mul=IMA_ADPCM_BLOCK_SIZE; | |
2420 | 419 break; |
3787 | 420 case AFM_MSADPCM: |
3875
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3874
diff
changeset
|
421 sh_audio->audio_out_minsize=sh_audio->wf->nBlockAlign * 8; |
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3874
diff
changeset
|
422 sh_audio->ds->ss_div = MS_ADPCM_SAMPLES_PER_BLOCK; |
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3874
diff
changeset
|
423 sh_audio->ds->ss_mul = sh_audio->wf->nBlockAlign; |
3787 | 424 break; |
3933
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
425 case AFM_FOX61ADPCM: |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
426 sh_audio->audio_out_minsize=FOX61_ADPCM_SAMPLES_PER_BLOCK * 4; |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
427 sh_audio->ds->ss_div=FOX61_ADPCM_SAMPLES_PER_BLOCK; |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
428 sh_audio->ds->ss_mul=FOX61_ADPCM_BLOCK_SIZE; |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
429 break; |
3826
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
430 case AFM_FOX62ADPCM: |
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
431 sh_audio->audio_out_minsize=FOX62_ADPCM_SAMPLES_PER_BLOCK * 4; |
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
432 sh_audio->ds->ss_div=FOX62_ADPCM_SAMPLES_PER_BLOCK; |
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
433 sh_audio->ds->ss_mul=FOX62_ADPCM_BLOCK_SIZE; |
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
434 break; |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
435 case AFM_MPEG: |
758 | 436 // MPEG Audio: |
437 sh_audio->audio_out_minsize=4608; | |
438 break; | |
3866 | 439 #ifdef USE_G72X |
3426 | 440 case AFM_G72X: |
441 // g72x_reader_init(&g72x_data,G723_16_BITS_PER_SAMPLE); | |
442 g72x_reader_init(&g72x_data,G723_24_BITS_PER_SAMPLE); | |
443 // g72x_reader_init(&g72x_data,G721_32_BITS_PER_SAMPLE); | |
444 // g72x_reader_init(&g72x_data,G721_40_BITS_PER_SAMPLE); | |
445 sh_audio->audio_out_minsize=g72x_data.samplesperblock*4; | |
446 break; | |
3866 | 447 #endif |
1927 | 448 case AFM_FFMPEG: |
449 #ifndef USE_LIBAVCODEC | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1927
diff
changeset
|
450 mp_msg(MSGT_DECAUDIO,MSGL_ERR,MSGTR_NoLAVCsupport); |
1927 | 451 return 0; |
452 #else | |
453 // FFmpeg Audio: | |
454 sh_audio->audio_out_minsize=AVCODEC_MAX_AUDIO_FRAME_SIZE; | |
455 break; | |
456 #endif | |
2415 | 457 |
458 #ifdef USE_LIBMAD | |
459 case AFM_MAD: | |
460 printf(__FILE__ ":%d:mad: setting minimum outputsize\n", __LINE__); | |
461 sh_audio->audio_out_minsize=4608; | |
4208
c92c23a42e91
libmad memcpy optimization by Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4151
diff
changeset
|
462 if(sh_audio->audio_in_minsize<MAD_SINGLE_BUFFER_SIZE) sh_audio->audio_in_minsize=MAD_SINGLE_BUFFER_SIZE; |
2415 | 463 sh_audio->a_in_buffer_size=sh_audio->audio_in_minsize; |
4208
c92c23a42e91
libmad memcpy optimization by Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4151
diff
changeset
|
464 mad_in_buffer = sh_audio->a_in_buffer = malloc(MAD_TOTAL_BUFFER_SIZE); |
2415 | 465 sh_audio->a_in_buffer_len=0; |
466 break; | |
467 #endif | |
296 | 468 } |
469 | |
303 | 470 if(!driver) return 0; |
296 | 471 |
472 // allocate audio out buffer: | |
758 | 473 sh_audio->a_buffer_size=sh_audio->audio_out_minsize+MAX_OUTBURST; // worst case calc. |
474 | |
1567 | 475 mp_msg(MSGT_DECAUDIO,MSGL_V,"dec_audio: Allocating %d + %d = %d bytes for output buffer\n", |
758 | 476 sh_audio->audio_out_minsize,MAX_OUTBURST,sh_audio->a_buffer_size); |
477 | |
296 | 478 sh_audio->a_buffer=malloc(sh_audio->a_buffer_size); |
758 | 479 if(!sh_audio->a_buffer){ |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1927
diff
changeset
|
480 mp_msg(MSGT_DECAUDIO,MSGL_ERR,MSGTR_CantAllocAudioBuf); |
758 | 481 return 0; |
482 } | |
296 | 483 memset(sh_audio->a_buffer,0,sh_audio->a_buffer_size); |
484 sh_audio->a_buffer_len=0; | |
485 | |
303 | 486 switch(driver){ |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1485
diff
changeset
|
487 #ifdef USE_WIN32DLL |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
488 case AFM_ACM: { |
758 | 489 int ret=acm_decode_audio(sh_audio,sh_audio->a_buffer,4096,sh_audio->a_buffer_size); |
296 | 490 if(ret<0){ |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1927
diff
changeset
|
491 mp_msg(MSGT_DECAUDIO,MSGL_INFO,"ACM decoding error: %d\n",ret); |
303 | 492 driver=0; |
296 | 493 } |
640 | 494 sh_audio->a_buffer_len=ret; |
303 | 495 break; |
296 | 496 } |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
497 #endif |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
498 case AFM_PCM: { |
296 | 499 // AVI PCM Audio: |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
401
diff
changeset
|
500 WAVEFORMATEX *h=sh_audio->wf; |
746 | 501 sh_audio->i_bps=h->nAvgBytesPerSec; |
296 | 502 sh_audio->channels=h->nChannels; |
503 sh_audio->samplerate=h->nSamplesPerSec; | |
504 sh_audio->samplesize=(h->wBitsPerSample+7)/8; | |
758 | 505 switch(sh_audio->format){ // hardware formats: |
506 case 0x6: sh_audio->sample_format=AFMT_A_LAW;break; | |
507 case 0x7: sh_audio->sample_format=AFMT_MU_LAW;break; | |
508 case 0x11: sh_audio->sample_format=AFMT_IMA_ADPCM;break; | |
509 case 0x50: sh_audio->sample_format=AFMT_MPEG;break; | |
2547 | 510 case 0x736F7774: sh_audio->sample_format=AFMT_S16_LE;sh_audio->codec->driver=AFM_DVDPCM;break; |
758 | 511 // case 0x2000: sh_audio->sample_format=AFMT_AC3; |
512 default: sh_audio->sample_format=(sh_audio->samplesize==2)?AFMT_S16_LE:AFMT_U8; | |
513 } | |
401 | 514 break; |
515 } | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
516 case AFM_DVDPCM: { |
401 | 517 // DVD PCM Audio: |
518 sh_audio->channels=2; | |
519 sh_audio->samplerate=48000; | |
746 | 520 sh_audio->i_bps=2*2*48000; |
296 | 521 // sh_audio->pcm_bswap=1; |
303 | 522 break; |
523 } | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
524 case AFM_AC3: { |
3886 | 525 #ifndef USE_LIBAC3 |
526 mp_msg(MSGT_DECAUDIO,MSGL_WARN,"WARNING: libac3 support is disabled. (hint: upgrade codecs.conf)\n"); | |
527 driver=0; | |
528 #else | |
296 | 529 // Dolby AC3 audio: |
1289 | 530 dec_audio_sh=sh_audio; // save sh_audio for the callback: |
296 | 531 ac3_config.fill_buffer_callback = ac3_fill_buffer; |
3181
c8edb0691f09
Extended oss output driver and libac3 to support 4 and 6 channel output mixes. added -channels command line option
steve
parents:
3145
diff
changeset
|
532 ac3_config.num_output_ch = audio_output_channels; |
296 | 533 ac3_config.flags = 0; |
3145 | 534 if(gCpuCaps.hasMMX){ |
296 | 535 ac3_config.flags |= AC3_MMX_ENABLE; |
3145 | 536 } |
537 if(gCpuCaps.has3DNow){ | |
296 | 538 ac3_config.flags |= AC3_3DNOW_ENABLE; |
3145 | 539 } |
296 | 540 ac3_init(); |
541 sh_audio->ac3_frame = ac3_decode_frame(); | |
542 if(sh_audio->ac3_frame){ | |
746 | 543 ac3_frame_t* fr=(ac3_frame_t*)sh_audio->ac3_frame; |
544 sh_audio->samplerate=fr->sampling_rate; | |
3181
c8edb0691f09
Extended oss output driver and libac3 to support 4 and 6 channel output mixes. added -channels command line option
steve
parents:
3145
diff
changeset
|
545 sh_audio->channels=ac3_config.num_output_ch; |
746 | 546 // 1 frame: 6*256 samples 1 sec: sh_audio->samplerate samples |
547 //sh_audio->i_bps=fr->frame_size*fr->sampling_rate/(6*256); | |
548 sh_audio->i_bps=fr->bit_rate*(1000/8); | |
303 | 549 } else { |
550 driver=0; // bad frame -> disable audio | |
551 } | |
3886 | 552 #endif |
303 | 553 break; |
554 } | |
3413 | 555 case AFM_A52: { |
3911 | 556 sample_t level=1, bias=384; |
557 int flags=0; | |
3413 | 558 // Dolby AC3 audio: |
3907 | 559 if(gCpuCaps.hasSSE) a52_accel|=MM_ACCEL_X86_SSE; |
560 if(gCpuCaps.hasMMX) a52_accel|=MM_ACCEL_X86_MMX; | |
561 if(gCpuCaps.hasMMX2) a52_accel|=MM_ACCEL_X86_MMXEXT; | |
562 if(gCpuCaps.has3DNow) a52_accel|=MM_ACCEL_X86_3DNOW; | |
563 a52_samples=a52_init (a52_accel); | |
3413 | 564 if (a52_samples == NULL) { |
565 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"A52 init failed\n"); | |
566 driver=0;break; | |
567 } | |
568 sh_audio->a_in_buffer_size=3840; | |
569 sh_audio->a_in_buffer=malloc(sh_audio->a_in_buffer_size); | |
570 sh_audio->a_in_buffer_len=0; | |
571 if(a52_fillbuff(sh_audio)<0){ | |
572 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"A52 sync failed\n"); | |
573 driver=0;break; | |
574 } | |
3887 | 575 // 'a52 cannot upmix' hotfix: |
3968 | 576 a52_printinfo(sh_audio); |
577 // if(audio_output_channels<sh_audio->channels) | |
578 // sh_audio->channels=audio_output_channels; | |
3911 | 579 // channels setup: |
3968 | 580 sh_audio->channels=audio_output_channels; |
581 while(sh_audio->channels>0){ | |
3911 | 582 switch(sh_audio->channels){ |
583 case 1: a52_flags=A52_MONO; break; | |
584 // case 2: a52_flags=A52_STEREO; break; | |
585 case 2: a52_flags=A52_DOLBY; break; | |
586 // case 3: a52_flags=A52_3F; break; | |
587 case 3: a52_flags=A52_2F1R; break; | |
588 case 4: a52_flags=A52_2F2R; break; // 2+2 | |
589 case 5: a52_flags=A52_3F2R; break; | |
590 case 6: a52_flags=A52_3F2R|A52_LFE; break; // 5.1 | |
591 } | |
592 // test: | |
593 flags=a52_flags|A52_ADJUST_LEVEL; | |
594 mp_msg(MSGT_DECAUDIO,MSGL_V,"A52 flags before a52_frame: 0x%X\n",flags); | |
595 if (a52_frame (&a52_state, sh_audio->a_in_buffer, &flags, &level, bias)){ | |
596 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"a52: error decoding frame -> nosound\n"); | |
597 driver=0;break; | |
598 } | |
599 mp_msg(MSGT_DECAUDIO,MSGL_V,"A52 flags after a52_frame: 0x%X\n",flags); | |
600 // frame decoded, let's init resampler: | |
3968 | 601 if(a52_resample_init(a52_accel,flags,sh_audio->channels)) break; |
602 --sh_audio->channels; // try to decrease no. of channels | |
603 } | |
604 if(sh_audio->channels<=0){ | |
3911 | 605 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"a52: no resampler. try different channel setup!\n"); |
606 driver=0;break; | |
607 } | |
3413 | 608 break; |
609 } | |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1517
diff
changeset
|
610 case AFM_HWAC3: { |
3829 | 611 // Dolby AC3 passthrough: |
3907 | 612 a52_samples=a52_init (a52_accel); |
3829 | 613 if (a52_samples == NULL) { |
614 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"A52 init failed\n"); | |
615 driver=0;break; | |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1517
diff
changeset
|
616 } |
3829 | 617 sh_audio->a_in_buffer_size=3840; |
618 sh_audio->a_in_buffer=malloc(sh_audio->a_in_buffer_size); | |
619 sh_audio->a_in_buffer_len=0; | |
620 if(a52_fillbuff(sh_audio)<0) { | |
621 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"A52 sync failed\n"); | |
622 driver=0;break; | |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1517
diff
changeset
|
623 } |
3829 | 624 |
625 //sh_audio->samplerate=ai.samplerate; // SET by a52_fillbuff() | |
626 //sh_audio->samplesize=ai.framesize; | |
627 //sh_audio->i_bps=ai.bitrate*(1000/8); // SET by a52_fillbuff() | |
628 //sh_audio->ac3_frame=malloc(6144); | |
629 //sh_audio->o_bps=sh_audio->i_bps; // XXX FIXME!!! XXX | |
630 | |
631 // o_bps is calculated from samplesize*channels*samplerate | |
632 // a single ac3 frame is always translated to 6144 byte packet. (zero padding) | |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1517
diff
changeset
|
633 sh_audio->channels=1; |
3829 | 634 sh_audio->samplesize=4; // 1*4*(6*256) = 6144 (very TRICKY!) |
635 | |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1517
diff
changeset
|
636 break; |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1517
diff
changeset
|
637 } |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
638 case AFM_ALAW: { |
296 | 639 // aLaw audio codec: |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
401
diff
changeset
|
640 sh_audio->channels=sh_audio->wf->nChannels; |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
401
diff
changeset
|
641 sh_audio->samplerate=sh_audio->wf->nSamplesPerSec; |
746 | 642 sh_audio->i_bps=sh_audio->channels*sh_audio->samplerate; |
303 | 643 break; |
644 } | |
3866 | 645 #ifdef USE_G72X |
3426 | 646 case AFM_G72X: { |
647 // GSM 723 audio codec: | |
648 sh_audio->channels=sh_audio->wf->nChannels; | |
649 sh_audio->samplerate=sh_audio->wf->nSamplesPerSec; | |
650 sh_audio->i_bps=(sh_audio->samplerate/g72x_data.samplesperblock)*g72x_data.blocksize; | |
651 break; | |
652 } | |
3866 | 653 #endif |
1927 | 654 #ifdef USE_LIBAVCODEC |
655 case AFM_FFMPEG: { | |
656 int x; | |
657 mp_msg(MSGT_DECAUDIO,MSGL_V,"FFmpeg's libavcodec audio codec\n"); | |
658 if(!avcodec_inited){ | |
659 avcodec_init(); | |
660 avcodec_register_all(); | |
661 avcodec_inited=1; | |
662 } | |
663 lavc_codec = (AVCodec *)avcodec_find_decoder_by_name(sh_audio->codec->dll); | |
664 if(!lavc_codec){ | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1927
diff
changeset
|
665 mp_msg(MSGT_DECAUDIO,MSGL_ERR,MSGTR_MissingLAVCcodec,sh_audio->codec->dll); |
1927 | 666 return 0; |
667 } | |
668 memset(&lavc_context, 0, sizeof(lavc_context)); | |
669 /* open it */ | |
670 if (avcodec_open(&lavc_context, lavc_codec) < 0) { | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1927
diff
changeset
|
671 mp_msg(MSGT_DECAUDIO,MSGL_ERR, MSGTR_CantOpenCodec); |
1927 | 672 return 0; |
673 } | |
674 mp_msg(MSGT_DECAUDIO,MSGL_V,"INFO: libavcodec init OK!\n"); | |
675 | |
676 // Decode at least 1 byte: (to get header filled) | |
677 x=decode_audio(sh_audio,sh_audio->a_buffer,1,sh_audio->a_buffer_size); | |
678 if(x>0) sh_audio->a_buffer_len=x; | |
679 | |
680 #if 1 | |
681 sh_audio->channels=lavc_context.channels; | |
682 sh_audio->samplerate=lavc_context.sample_rate; | |
683 sh_audio->i_bps=lavc_context.bit_rate/8; | |
684 #else | |
685 sh_audio->channels=sh_audio->wf->nChannels; | |
686 sh_audio->samplerate=sh_audio->wf->nSamplesPerSec; | |
687 sh_audio->i_bps=sh_audio->wf->nAvgBytesPerSec; | |
688 #endif | |
689 break; | |
690 } | |
691 #endif | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
692 case AFM_GSM: { |
296 | 693 // MS-GSM audio codec: |
694 GSM_Init(); | |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
401
diff
changeset
|
695 sh_audio->channels=sh_audio->wf->nChannels; |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
401
diff
changeset
|
696 sh_audio->samplerate=sh_audio->wf->nSamplesPerSec; |
746 | 697 // decodes 65 byte -> 320 short |
698 // 1 sec: sh_audio->channels*sh_audio->samplerate samples | |
699 // 1 frame: 320 samples | |
700 sh_audio->i_bps=65*(sh_audio->channels*sh_audio->samplerate)/320; // 1:10 | |
303 | 701 break; |
296 | 702 } |
3787 | 703 case AFM_IMAADPCM: |
2420 | 704 // IMA-ADPCM 4:1 audio codec: |
705 sh_audio->channels=sh_audio->wf->nChannels; | |
706 sh_audio->samplerate=sh_audio->wf->nSamplesPerSec; | |
707 // decodes 34 byte -> 64 short | |
3756 | 708 sh_audio->i_bps=IMA_ADPCM_BLOCK_SIZE*(sh_audio->channels*sh_audio->samplerate)/IMA_ADPCM_SAMPLES_PER_BLOCK; // 1:4 |
2420 | 709 break; |
3787 | 710 case AFM_MSADPCM: |
711 sh_audio->channels=sh_audio->wf->nChannels; | |
712 sh_audio->samplerate=sh_audio->wf->nSamplesPerSec; | |
3875
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3874
diff
changeset
|
713 sh_audio->i_bps = sh_audio->wf->nBlockAlign * |
3826
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
714 (sh_audio->channels*sh_audio->samplerate) / MS_ADPCM_SAMPLES_PER_BLOCK; |
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
715 break; |
3933
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
716 case AFM_FOX61ADPCM: |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
717 sh_audio->channels=sh_audio->wf->nChannels; |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
718 sh_audio->samplerate=sh_audio->wf->nSamplesPerSec; |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
719 sh_audio->i_bps=FOX61_ADPCM_BLOCK_SIZE* |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
720 (sh_audio->channels*sh_audio->samplerate) / FOX61_ADPCM_SAMPLES_PER_BLOCK; |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
721 break; |
3826
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
722 case AFM_FOX62ADPCM: |
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
723 sh_audio->channels=sh_audio->wf->nChannels; |
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
724 sh_audio->samplerate=sh_audio->wf->nSamplesPerSec; |
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
725 sh_audio->i_bps=FOX62_ADPCM_BLOCK_SIZE* |
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
726 (sh_audio->channels*sh_audio->samplerate) / FOX62_ADPCM_SAMPLES_PER_BLOCK; |
3787 | 727 break; |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
728 case AFM_MPEG: { |
296 | 729 // MPEG Audio: |
1289 | 730 dec_audio_sh=sh_audio; // save sh_audio for the callback: |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
640
diff
changeset
|
731 #ifdef USE_FAKE_MONO |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
640
diff
changeset
|
732 MP3_Init(fakemono); |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
640
diff
changeset
|
733 #else |
296 | 734 MP3_Init(); |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
640
diff
changeset
|
735 #endif |
296 | 736 MP3_samplerate=MP3_channels=0; |
737 sh_audio->a_buffer_len=MP3_DecodeFrame(sh_audio->a_buffer,-1); | |
738 sh_audio->channels=2; // hack | |
739 sh_audio->samplerate=MP3_samplerate; | |
746 | 740 sh_audio->i_bps=MP3_bitrate*(1000/8); |
4151 | 741 MP3_PrintHeader(); |
303 | 742 break; |
743 } | |
1828 | 744 #ifdef HAVE_OGGVORBIS |
745 case AFM_VORBIS: { | |
746 // OggVorbis Audio: | |
747 #if 0 /* just here for reference - atmos */ | |
748 ogg_sync_state oy; /* sync and verify incoming physical bitstream */ | |
749 ogg_stream_state os; /* take physical pages, weld into a logical | |
750 stream of packets */ | |
751 ogg_page og; /* one Ogg bitstream page. Vorbis packets are inside */ | |
752 ogg_packet op; /* one raw packet of data for decode */ | |
753 | |
754 vorbis_info vi; /* struct that stores all the static vorbis bitstream | |
755 settings */ | |
756 vorbis_comment vc; /* struct that stores all the bitstream user comments */ | |
757 vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */ | |
758 vorbis_block vb; /* local working space for packet->PCM decode */ | |
759 #else | |
760 /* nix, nada, rien, nothing, nem, nüx */ | |
761 #endif | |
762 | |
763 uint32_t hdrsizes[3];/* stores vorbis header sizes from AVI audio header, | |
764 maybe use ogg_uint32_t */ | |
765 //int i; | |
766 int ret; | |
767 char *buffer; | |
768 ogg_packet hdr; | |
769 //ov_struct_t *s=&sh_audio->ov; | |
770 sh_audio->ov=malloc(sizeof(ov_struct_t)); | |
771 //s=&sh_audio->ov; | |
772 | |
773 vorbis_info_init(&sh_audio->ov->vi); | |
774 vorbis_comment_init(&sh_audio->ov->vc); | |
775 | |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
776 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"OggVorbis: cbsize: %i\n", sh_audio->wf->cbSize); |
1828 | 777 memcpy(hdrsizes, ((unsigned char*)sh_audio->wf)+2*sizeof(WAVEFORMATEX), 3*sizeof(uint32_t)); |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
778 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"OggVorbis: Read header sizes: initial: %i comment: %i codebook: %i\n", hdrsizes[0], hdrsizes[1], hdrsizes[2]); |
1828 | 779 /*for(i=12; i <= 40; i+=2) { // header bruteforce :) |
780 memcpy(hdrsizes, ((unsigned char*)sh_audio->wf)+i, 3*sizeof(uint32_t)); | |
781 printf("OggVorbis: Read header sizes (%i): %ld %ld %ld\n", i, hdrsizes[0], hdrsizes[1], hdrsizes[2]); | |
782 }*/ | |
783 | |
784 /* read headers */ // FIXME disable sound on errors here, we absolutely need this headers! - atmos | |
785 hdr.packet=NULL; | |
786 hdr.b_o_s = 1; /* beginning of stream for first packet */ | |
787 hdr.bytes = hdrsizes[0]; | |
788 hdr.packet = realloc(hdr.packet,hdr.bytes); | |
789 memcpy(hdr.packet,((unsigned char*)sh_audio->wf)+2*sizeof(WAVEFORMATEX)+3*sizeof(uint32_t),hdr.bytes); | |
790 if(vorbis_synthesis_headerin(&sh_audio->ov->vi,&sh_audio->ov->vc,&hdr)<0) | |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
791 mp_msg(MSGT_DECAUDIO,MSGL_WARN,"OggVorbis: initial (identification) header broken!\n"); |
1828 | 792 hdr.b_o_s = 0; |
793 hdr.bytes = hdrsizes[1]; | |
794 hdr.packet = realloc(hdr.packet,hdr.bytes); | |
795 memcpy(hdr.packet,((unsigned char*)sh_audio->wf)+2*sizeof(WAVEFORMATEX)+3*sizeof(uint32_t)+hdrsizes[0],hdr.bytes); | |
796 if(vorbis_synthesis_headerin(&sh_audio->ov->vi,&sh_audio->ov->vc,&hdr)<0) | |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
797 mp_msg(MSGT_DECAUDIO,MSGL_WARN,"OggVorbis: comment header broken!\n"); |
1828 | 798 hdr.bytes = hdrsizes[2]; |
799 hdr.packet = realloc(hdr.packet,hdr.bytes); | |
800 memcpy(hdr.packet,((unsigned char*)sh_audio->wf)+2*sizeof(WAVEFORMATEX)+3*sizeof(uint32_t)+hdrsizes[0]+hdrsizes[1],hdr.bytes); | |
801 if(vorbis_synthesis_headerin(&sh_audio->ov->vi,&sh_audio->ov->vc,&hdr)<0) | |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
802 mp_msg(MSGT_DECAUDIO,MSGL_WARN,"OggVorbis: codebook header broken!\n"); |
1828 | 803 hdr.bytes=0; |
804 hdr.packet = realloc(hdr.packet,hdr.bytes); /* free */ | |
805 /* done with the headers */ | |
806 | |
807 | |
808 /* Throw the comments plus a few lines about the bitstream we're | |
809 decoding */ | |
810 { | |
811 char **ptr=sh_audio->ov->vc.user_comments; | |
812 while(*ptr){ | |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
813 mp_msg(MSGT_DECAUDIO,MSGL_V,"OggVorbisComment: %s\n",*ptr); |
1828 | 814 ++ptr; |
815 } | |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
816 mp_msg(MSGT_DECAUDIO,MSGL_V,"OggVorbis: Bitstream is %d channel, %ldHz, %ldkbit/s %cBR\n",sh_audio->ov->vi.channels,sh_audio->ov->vi.rate,sh_audio->ov->vi.bitrate_nominal/1000, (sh_audio->ov->vi.bitrate_lower!=sh_audio->ov->vi.bitrate_nominal)||(sh_audio->ov->vi.bitrate_upper!=sh_audio->ov->vi.bitrate_nominal)?'V':'C'); |
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
817 mp_msg(MSGT_DECAUDIO,MSGL_V,"OggVorbis: Encoded by: %s\n",sh_audio->ov->vc.vendor); |
1828 | 818 } |
819 sh_audio->channels=sh_audio->ov->vi.channels; | |
820 sh_audio->samplerate=sh_audio->ov->vi.rate; | |
821 sh_audio->i_bps=sh_audio->ov->vi.bitrate_nominal/8; | |
822 | |
823 // printf("[\n"); | |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
824 // sh_audio->a_buffer_len=sh_audio->audio_out_minsize;///ov->vi.channels; |
1828 | 825 // printf("]\n"); |
826 | |
827 /* OK, got and parsed all three headers. Initialize the Vorbis | |
828 packet->PCM decoder. */ | |
829 vorbis_synthesis_init(&sh_audio->ov->vd,&sh_audio->ov->vi); /* central decode state */ | |
830 vorbis_block_init(&sh_audio->ov->vd,&sh_audio->ov->vb); /* local state for most of the decode | |
831 so multiple block decodes can | |
832 proceed in parallel. We could init | |
833 multiple vorbis_block structures | |
834 for vd here */ | |
835 //printf("OggVorbis: synthesis and block init done.\n"); | |
836 ogg_sync_init(&sh_audio->ov->oy); /* Now we can read pages */ | |
837 | |
838 while((ret = ogg_sync_pageout(&sh_audio->ov->oy,&sh_audio->ov->og))!=1) { | |
839 if(ret == -1) | |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
840 mp_msg(MSGT_DECAUDIO,MSGL_WARN,"OggVorbis: Pageout: not properly synced, had to skip some bytes.\n"); |
1828 | 841 else |
842 if(ret == 0) { | |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
843 mp_msg(MSGT_DECAUDIO,MSGL_V,"OggVorbis: Pageout: need more data to verify page, reading more data.\n"); |
1828 | 844 /* submit a a_buffer_len block to libvorbis' Ogg layer */ |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
845 buffer=ogg_sync_buffer(&sh_audio->ov->oy,256); |
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
846 ogg_sync_wrote(&sh_audio->ov->oy,demux_read_data(sh_audio->ds,buffer,256)); |
1828 | 847 } |
848 } | |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
849 mp_msg(MSGT_DECAUDIO,MSGL_V,"OggVorbis: Pageout: successfull.\n"); |
1834
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
850 ogg_stream_pagein(&sh_audio->ov->os,&sh_audio->ov->og); /* we can ignore any errors here |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
851 as they'll also become apparent |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
852 at packetout */ |
1828 | 853 |
854 /* Get the serial number and set up the rest of decode. */ | |
855 /* serialno first; use it to set up a logical stream */ | |
856 ogg_stream_init(&sh_audio->ov->os,ogg_page_serialno(&sh_audio->ov->og)); | |
857 | |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
858 mp_msg(MSGT_DECAUDIO,MSGL_V,"OggVorbis: Init OK!\n"); |
1828 | 859 |
860 break; | |
861 } | |
862 #endif | |
2415 | 863 |
864 #ifdef USE_LIBMAD | |
865 case AFM_MAD: | |
866 { | |
3871 | 867 printf("%s %s %s (%s)\n", mad_version, mad_copyright, mad_author, mad_build); |
868 | |
2415 | 869 printf(__FILE__ ":%d:mad: initialising\n", __LINE__); |
870 mad_frame_init(&mad_frame); | |
871 mad_stream_init(&mad_stream); | |
872 | |
873 printf(__FILE__ ":%d:mad: preparing buffer\n", __LINE__); | |
874 mad_prepare_buffer(sh_audio, &mad_stream, sh_audio->a_in_buffer_size); | |
875 mad_stream_buffer(&mad_stream, (unsigned char*)(sh_audio->a_in_buffer), sh_audio->a_in_buffer_len); | |
3871 | 876 // mad_stream_sync(&mad_stream); |
877 mad_sync(sh_audio, &mad_stream); | |
2415 | 878 mad_synth_init(&mad_synth); |
879 | |
880 if(mad_frame_decode(&mad_frame, &mad_stream) == 0) | |
881 { | |
882 printf(__FILE__ ":%d:mad: post processing buffer\n", __LINE__); | |
883 mad_postprocess_buffer(sh_audio, &mad_stream); | |
884 } | |
885 else | |
886 { | |
887 printf(__FILE__ ":%d:mad: frame decoding failed\n", __LINE__); | |
3874 | 888 mad_print_error(&mad_stream); |
2415 | 889 } |
890 | |
2434
571538d73e08
audio channels nr is identified from libmad's channel mode
alex
parents:
2432
diff
changeset
|
891 switch (mad_frame.header.mode) |
571538d73e08
audio channels nr is identified from libmad's channel mode
alex
parents:
2432
diff
changeset
|
892 { |
571538d73e08
audio channels nr is identified from libmad's channel mode
alex
parents:
2432
diff
changeset
|
893 case MAD_MODE_SINGLE_CHANNEL: |
571538d73e08
audio channels nr is identified from libmad's channel mode
alex
parents:
2432
diff
changeset
|
894 sh_audio->channels=1; |
571538d73e08
audio channels nr is identified from libmad's channel mode
alex
parents:
2432
diff
changeset
|
895 break; |
571538d73e08
audio channels nr is identified from libmad's channel mode
alex
parents:
2432
diff
changeset
|
896 case MAD_MODE_DUAL_CHANNEL: |
571538d73e08
audio channels nr is identified from libmad's channel mode
alex
parents:
2432
diff
changeset
|
897 case MAD_MODE_JOINT_STEREO: |
571538d73e08
audio channels nr is identified from libmad's channel mode
alex
parents:
2432
diff
changeset
|
898 case MAD_MODE_STEREO: |
571538d73e08
audio channels nr is identified from libmad's channel mode
alex
parents:
2432
diff
changeset
|
899 sh_audio->channels=2; |
571538d73e08
audio channels nr is identified from libmad's channel mode
alex
parents:
2432
diff
changeset
|
900 break; |
571538d73e08
audio channels nr is identified from libmad's channel mode
alex
parents:
2432
diff
changeset
|
901 default: |
571538d73e08
audio channels nr is identified from libmad's channel mode
alex
parents:
2432
diff
changeset
|
902 mp_msg(MSGT_DECAUDIO, MSGL_FATAL, "mad: unknown number of channels\n"); |
571538d73e08
audio channels nr is identified from libmad's channel mode
alex
parents:
2432
diff
changeset
|
903 } |
571538d73e08
audio channels nr is identified from libmad's channel mode
alex
parents:
2432
diff
changeset
|
904 mp_msg(MSGT_DECAUDIO, MSGL_HINT, "mad: channels: %d (mad channel mode: %d)\n", |
571538d73e08
audio channels nr is identified from libmad's channel mode
alex
parents:
2432
diff
changeset
|
905 sh_audio->channels, mad_frame.header.mode); |
2432 | 906 /* var. name changed in 0.13.0 (beta) (libmad/CHANGES) -- alex */ |
907 #if (MAD_VERSION_MAJOR >= 0) && (MAD_VERSION_MINOR >= 13) | |
908 sh_audio->samplerate=mad_frame.header.samplerate; | |
909 #else | |
2415 | 910 sh_audio->samplerate=mad_frame.header.sfreq; |
2432 | 911 #endif |
2415 | 912 sh_audio->i_bps=mad_frame.header.bitrate; |
913 printf(__FILE__ ":%d:mad: continuing\n", __LINE__); | |
914 break; | |
915 } | |
916 #endif | |
296 | 917 } |
918 | |
919 if(!sh_audio->channels || !sh_audio->samplerate){ | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1927
diff
changeset
|
920 mp_msg(MSGT_DECAUDIO,MSGL_WARN,MSGTR_UnknownAudio); |
303 | 921 driver=0; |
296 | 922 } |
923 | |
303 | 924 if(!driver){ |
925 if(sh_audio->a_buffer) free(sh_audio->a_buffer); | |
1313
d797ecb9778f
sh_audio->a_buffer is freed twice (here and in mplayer.c), can result to
jkeil
parents:
1309
diff
changeset
|
926 sh_audio->a_buffer=NULL; |
303 | 927 return 0; |
928 } | |
296 | 929 |
1529 | 930 if(!sh_audio->o_bps) |
303 | 931 sh_audio->o_bps=sh_audio->channels*sh_audio->samplerate*sh_audio->samplesize; |
932 return driver; | |
296 | 933 } |
291 | 934 |
746 | 935 // Audio decoding: |
291 | 936 |
746 | 937 // Decode a single frame (mp3,acm etc) or 'minlen' bytes (pcm/alaw etc) |
938 // buffer length is 'maxlen' bytes, it shouldn't be exceeded... | |
939 | |
940 int decode_audio(sh_audio_t *sh_audio,unsigned char *buf,int minlen,int maxlen){ | |
291 | 941 int len=-1; |
303 | 942 switch(sh_audio->codec->driver){ |
1927 | 943 #ifdef USE_LIBAVCODEC |
944 case AFM_FFMPEG: { | |
945 unsigned char *start=NULL; | |
946 int y; | |
947 while(len<minlen){ | |
948 int len2=0; | |
949 int x=ds_get_packet(sh_audio->ds,&start); | |
950 if(x<=0) break; // error | |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
1973
diff
changeset
|
951 y=avcodec_decode_audio(&lavc_context,(INT16*)buf,&len2,start,x); |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1927
diff
changeset
|
952 if(y<0){ mp_msg(MSGT_DECAUDIO,MSGL_V,"lavc_audio: error\n");break; } |
1927 | 953 if(y<x) sh_audio->ds->buffer_pos+=y-x; // put back data (HACK!) |
954 if(len2>0){ | |
955 //len=len2;break; | |
956 if(len<0) len=len2; else len+=len2; | |
957 buf+=len2; | |
958 } | |
959 mp_dbg(MSGT_DECAUDIO,MSGL_DBG2,"Decoded %d -> %d \n",y,len2); | |
960 } | |
961 } | |
962 break; | |
963 #endif | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
964 case AFM_MPEG: // MPEG layer 2 or 3 |
291 | 965 len=MP3_DecodeFrame(buf,-1); |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
966 // len=MP3_DecodeFrame(buf,3); |
291 | 967 break; |
1830 | 968 #ifdef HAVE_OGGVORBIS |
1828 | 969 case AFM_VORBIS: { // OggVorbis |
970 /* note: good minlen would be 4k or 8k IMHO - atmos */ | |
971 int ret; | |
972 char *buffer; | |
973 int bytes; | |
974 int samples; | |
975 float **pcm; | |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
976 //ogg_int16_t convbuffer[4096]; |
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
977 // int convsize; |
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
978 int readlen=1024; |
1834
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
979 len=0; |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
980 // convsize=minlen/sh_audio->ov->vi.channels; |
1834
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
981 |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
982 while(len < minlen) { /* double loop allows for break in inner loop */ |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
983 while(len < minlen) { /* without aborting the outer loop - atmos */ |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
984 ret=ogg_stream_packetout(&sh_audio->ov->os,&sh_audio->ov->op); |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
985 if(ret==0) { |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
986 int xxx=0; |
1834
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
987 //printf("OggVorbis: Packetout: need more data, paging!\n"); |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
988 while((ret = ogg_sync_pageout(&sh_audio->ov->oy,&sh_audio->ov->og))!=1) { |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
989 if(ret == -1) |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
990 mp_msg(MSGT_DECAUDIO,MSGL_V,"OggVorbis: Pageout: not properly synced, had to skip some bytes.\n"); |
1834
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
991 else |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
992 if(ret == 0) { |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
993 //printf("OggVorbis: Pageout: need more data to verify page, reading more data.\n"); |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
994 /* submit a readlen k block to libvorbis' Ogg layer */ |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
995 buffer=ogg_sync_buffer(&sh_audio->ov->oy,readlen); |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
996 bytes=demux_read_data(sh_audio->ds,buffer,readlen); |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
997 xxx+=bytes; |
1834
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
998 ogg_sync_wrote(&sh_audio->ov->oy,bytes); |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
999 if(bytes==0) |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
1000 mp_msg(MSGT_DECAUDIO,MSGL_V,"OggVorbis: 0Bytes written, possible End of Stream\n"); |
1834
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
1001 } |
1828 | 1002 } |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
1003 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"\n[sync: %d ]\n",xxx); |
1834
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
1004 //printf("OggVorbis: Pageout: successfull, pagin in.\n"); |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
1005 if(ogg_stream_pagein(&sh_audio->ov->os,&sh_audio->ov->og)<0) |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
1006 mp_msg(MSGT_DECAUDIO,MSGL_V,"OggVorbis: Pagein failed!\n"); |
1834
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
1007 break; |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
1008 } else if(ret<0) { |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
1009 mp_msg(MSGT_DECAUDIO,MSGL_V,"OggVorbis: Packetout: missing or corrupt data, skipping packet!\n"); |
1834
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
1010 break; |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
1011 } else { |
1828 | 1012 |
1013 /* we have a packet. Decode it */ | |
1014 | |
1015 if(vorbis_synthesis(&sh_audio->ov->vb,&sh_audio->ov->op)==0) /* test for success! */ | |
1016 vorbis_synthesis_blockin(&sh_audio->ov->vd,&sh_audio->ov->vb); | |
1017 | |
1018 /* **pcm is a multichannel float vector. In stereo, for | |
1019 example, pcm[0] is left, and pcm[1] is right. samples is | |
1020 the size of each channel. Convert the float values | |
1021 (-1.<=range<=1.) to whatever PCM format and write it out */ | |
1022 | |
1023 while((samples=vorbis_synthesis_pcmout(&sh_audio->ov->vd,&pcm))>0){ | |
1024 int i,j; | |
1025 int clipflag=0; | |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
1026 int convsize=(maxlen-len)/(2*sh_audio->ov->vi.channels); // max size! |
1828 | 1027 int bout=(samples<convsize?samples:convsize); |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
1028 |
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
1029 if(bout<=0) break; |
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
1030 |
1828 | 1031 /* convert floats to 16 bit signed ints (host order) and |
1032 interleave */ | |
1033 for(i=0;i<sh_audio->ov->vi.channels;i++){ | |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
1034 ogg_int16_t *convbuffer=(ogg_int16_t *)(&buf[len]); |
1828 | 1035 ogg_int16_t *ptr=convbuffer+i; |
1036 float *mono=pcm[i]; | |
1037 for(j=0;j<bout;j++){ | |
1038 #if 1 | |
1039 int val=mono[j]*32767.f; | |
1040 #else /* optional dither */ | |
1041 int val=mono[j]*32767.f+drand48()-0.5f; | |
1042 #endif | |
1043 /* might as well guard against clipping */ | |
1044 if(val>32767){ | |
1045 val=32767; | |
1046 clipflag=1; | |
1047 } | |
1048 if(val<-32768){ | |
1049 val=-32768; | |
1050 clipflag=1; | |
1051 } | |
1052 *ptr=val; | |
1053 ptr+=sh_audio->ov->vi.channels; | |
1054 } | |
1055 } | |
1056 | |
1057 if(clipflag) | |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
1058 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"Clipping in frame %ld\n",(long)(sh_audio->ov->vd.sequence)); |
1828 | 1059 |
1060 //fwrite(convbuffer,2*sh_audio->ov->vi.channels,bout,stderr); //dump pcm to file for debugging | |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
1061 //memcpy(buf+len,convbuffer,2*sh_audio->ov->vi.channels*bout); |
1834
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
1062 len+=2*sh_audio->ov->vi.channels*bout; |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
1063 |
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
1064 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"\n[decoded: %d / %d ]\n",bout,samples); |
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
1065 |
1828 | 1066 vorbis_synthesis_read(&sh_audio->ov->vd,bout); /* tell libvorbis how |
1067 many samples we | |
1068 actually consumed */ | |
1069 } | |
1834
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
1070 } // from else, packetout ok |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
1071 } // while len |
3f8da9408f04
Now oggvorbis decoding properly works, but a/v sync is bad.
atmos4
parents:
1831
diff
changeset
|
1072 } // outer while len |
1828 | 1073 if(ogg_page_eos(&sh_audio->ov->og)) |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
1074 mp_msg(MSGT_DECAUDIO,MSGL_V,"OggVorbis: End of Stream reached!\n"); // FIXME clearup decoder, notify mplayer - atmos |
1828 | 1075 |
1837
9fd8b5e0b864
ogg/vorbis stuff cleanup, buffering fixes, printf->mp_msg
arpi
parents:
1834
diff
changeset
|
1076 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"\n[len: %d ]\n",len); |
1828 | 1077 |
1078 break; | |
1831 | 1079 } |
1830 | 1080 #endif |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1081 case AFM_PCM: // AVI PCM |
1058 | 1082 len=demux_read_data(sh_audio->ds,buf,minlen); |
401 | 1083 break; |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1084 case AFM_DVDPCM: // DVD PCM |
401 | 1085 { int j; |
746 | 1086 len=demux_read_data(sh_audio->ds,buf,minlen); |
291 | 1087 //if(i&1){ printf("Warning! pcm_audio_size&1 !=0 (%d)\n",i);i&=~1; } |
746 | 1088 // swap endian: |
291 | 1089 for(j=0;j<len;j+=2){ |
1090 char x=buf[j]; | |
1091 buf[j]=buf[j+1]; | |
1092 buf[j+1]=x; | |
1093 } | |
1094 break; | |
1095 } | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1096 case AFM_ALAW: // aLaw decoder |
746 | 1097 { int l=demux_read_data(sh_audio->ds,buf,minlen/2); |
291 | 1098 unsigned short *d=(unsigned short *) buf; |
1099 unsigned char *s=buf; | |
1100 len=2*l; | |
758 | 1101 if(sh_audio->format==6){ |
1102 // aLaw | |
883 | 1103 while(l>0){ --l; d[l]=alaw2short[s[l]]; } |
758 | 1104 } else { |
1105 // uLaw | |
883 | 1106 while(l>0){ --l; d[l]=ulaw2short[s[l]]; } |
291 | 1107 } |
1108 break; | |
1109 } | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1110 case AFM_GSM: // MS-GSM decoder |
2420 | 1111 { unsigned char ibuf[65]; // 65 bytes / frame |
1112 if(demux_read_data(sh_audio->ds,ibuf,65)!=65) break; // EOF | |
1113 XA_MSGSM_Decoder(ibuf,(unsigned short *) buf); // decodes 65 byte -> 320 short | |
746 | 1114 // XA_GSM_Decoder(buf,(unsigned short *) &sh_audio->a_buffer[sh_audio->a_buffer_len]); // decodes 33 byte -> 160 short |
1115 len=2*320; | |
291 | 1116 break; |
1117 } | |
3866 | 1118 #ifdef USE_G72X |
3426 | 1119 case AFM_G72X: // GSM 723 decoder |
1120 { if(demux_read_data(sh_audio->ds,g72x_data.block, g72x_data.blocksize)!=g72x_data.blocksize) break; // EOF | |
1121 g72x_decode_block(&g72x_data); | |
1122 len=2*g72x_data.samplesperblock; | |
1123 memcpy(buf,g72x_data.samples,len); | |
1124 break; | |
1125 } | |
3866 | 1126 #endif |
3787 | 1127 case AFM_IMAADPCM: |
3756 | 1128 { unsigned char ibuf[IMA_ADPCM_BLOCK_SIZE * 2]; // bytes / stereo frame |
1129 if (demux_read_data(sh_audio->ds, ibuf, | |
3787 | 1130 IMA_ADPCM_BLOCK_SIZE * sh_audio->wf->nChannels) != |
3756 | 1131 IMA_ADPCM_BLOCK_SIZE * sh_audio->wf->nChannels) |
1132 break; // EOF | |
1133 len=2*ima_adpcm_decode_block((unsigned short*)buf,ibuf, sh_audio->wf->nChannels); | |
3787 | 1134 break; |
1135 } | |
1136 case AFM_MSADPCM: | |
3875
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3874
diff
changeset
|
1137 { static unsigned char *ibuf = NULL; |
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3874
diff
changeset
|
1138 if (!ibuf) |
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3874
diff
changeset
|
1139 ibuf = (unsigned char *)malloc |
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3874
diff
changeset
|
1140 (sh_audio->wf->nBlockAlign * sh_audio->wf->nChannels); |
3787 | 1141 if (demux_read_data(sh_audio->ds, ibuf, |
3875
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3874
diff
changeset
|
1142 sh_audio->wf->nBlockAlign) != |
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3874
diff
changeset
|
1143 sh_audio->wf->nBlockAlign) |
3787 | 1144 break; // EOF |
3875
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3874
diff
changeset
|
1145 len= 2 * ms_adpcm_decode_block( |
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3874
diff
changeset
|
1146 (unsigned short*)buf,ibuf, sh_audio->wf->nChannels, |
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3874
diff
changeset
|
1147 sh_audio->wf->nBlockAlign); |
2420 | 1148 break; |
1149 } | |
3933
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
1150 case AFM_FOX61ADPCM: |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
1151 { unsigned char ibuf[FOX61_ADPCM_BLOCK_SIZE]; // bytes / stereo frame |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
1152 if (demux_read_data(sh_audio->ds, ibuf, FOX61_ADPCM_BLOCK_SIZE) != |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
1153 FOX61_ADPCM_BLOCK_SIZE) |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
1154 break; // EOF |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
1155 len=2*fox61_adpcm_decode_block((unsigned short*)buf,ibuf); |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
1156 break; |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
1157 } |
3826
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
1158 case AFM_FOX62ADPCM: |
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
1159 { unsigned char ibuf[FOX62_ADPCM_BLOCK_SIZE * 2]; // bytes / stereo frame |
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
1160 if (demux_read_data(sh_audio->ds, ibuf, |
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
1161 FOX62_ADPCM_BLOCK_SIZE * sh_audio->wf->nChannels) != |
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
1162 FOX62_ADPCM_BLOCK_SIZE * sh_audio->wf->nChannels) |
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
1163 break; // EOF |
3933
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3911
diff
changeset
|
1164 len = 2 * fox62_adpcm_decode_block( |
4001 | 1165 (unsigned short*)buf,ibuf); |
3826
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
1166 break; |
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3787
diff
changeset
|
1167 } |
3886 | 1168 #ifdef USE_LIBAC3 |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1169 case AFM_AC3: // AC3 decoder |
291 | 1170 //printf("{1:%d}",avi_header.idx_pos);fflush(stdout); |
1171 if(!sh_audio->ac3_frame) sh_audio->ac3_frame=ac3_decode_frame(); | |
1172 //printf("{2:%d}",avi_header.idx_pos);fflush(stdout); | |
1173 if(sh_audio->ac3_frame){ | |
296 | 1174 len = 256 * 6 *sh_audio->channels*sh_audio->samplesize; |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
1175 memcpy(buf,((ac3_frame_t*)sh_audio->ac3_frame)->audio_data,len); |
291 | 1176 sh_audio->ac3_frame=NULL; |
1177 } | |
1178 //printf("{3:%d}",avi_header.idx_pos);fflush(stdout); | |
1179 break; | |
3886 | 1180 #endif |
3413 | 1181 case AFM_A52: { // AC3 decoder |
3911 | 1182 sample_t level=1, bias=384; |
1183 int flags=a52_flags|A52_ADJUST_LEVEL; | |
3413 | 1184 int i; |
1185 if(!sh_audio->a_in_buffer_len) | |
1186 if(a52_fillbuff(sh_audio)<0) break; // EOF | |
1187 sh_audio->a_in_buffer_len=0; | |
1188 if (a52_frame (&a52_state, sh_audio->a_in_buffer, &flags, &level, bias)){ | |
1189 mp_msg(MSGT_DECAUDIO,MSGL_WARN,"a52: error decoding frame\n"); | |
1190 break; | |
1191 } | |
1192 // a52_dynrng (&state, NULL, NULL); // disable dynamic range compensation | |
1193 | |
1194 // frame decoded, let's resample: | |
3911 | 1195 //a52_resample_init(a52_accel,flags,sh_audio->channels); |
3413 | 1196 len=0; |
1197 for (i = 0; i < 6; i++) { | |
1198 if (a52_block (&a52_state, a52_samples)){ | |
1199 mp_msg(MSGT_DECAUDIO,MSGL_WARN,"a52: error at resampling\n"); | |
1200 break; | |
1201 } | |
1202 len+=2*a52_resample(a52_samples,&buf[len]); | |
1203 } | |
3417 | 1204 // printf("len = %d \n",len); // 6144 on all vobs I tried so far... (5.1 and 2.0) ::atmos |
3413 | 1205 break; |
1206 } | |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1517
diff
changeset
|
1207 case AFM_HWAC3: // AC3 through SPDIF |
3829 | 1208 if(!sh_audio->a_in_buffer_len) |
1209 if((len=a52_fillbuff(sh_audio))<0) break; //EOF | |
1210 sh_audio->a_in_buffer_len=0; | |
1211 len = ac3_iec958_build_burst(len, 0x01, 1, sh_audio->a_in_buffer, buf); | |
1212 // len = 6144 = 4*(6*256) | |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1517
diff
changeset
|
1213 break; |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1485
diff
changeset
|
1214 #ifdef USE_WIN32DLL |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1215 case AFM_ACM: |
758 | 1216 // len=sh_audio->audio_out_minsize; // optimal decoded fragment size |
1217 // if(len<minlen) len=minlen; else | |
1218 // if(len>maxlen) len=maxlen; | |
1219 // len=acm_decode_audio(sh_audio,buf,len); | |
1220 len=acm_decode_audio(sh_audio,buf,minlen,maxlen); | |
291 | 1221 break; |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
1222 #endif |
746 | 1223 |
291 | 1224 #ifdef USE_DIRECTSHOW |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1225 case AFM_DSHOW: // DirectShow |
1327
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1226 { int size_in=0; |
291 | 1227 int size_out=0; |
3442 | 1228 int srcsize=DS_AudioDecoder_GetSrcSize(ds_adec, maxlen); |
1567 | 1229 mp_msg(MSGT_DECAUDIO,MSGL_DBG3,"DShow says: srcsize=%d (buffsize=%d) out_size=%d\n",srcsize,sh_audio->a_in_buffer_size,maxlen); |
291 | 1230 if(srcsize>sh_audio->a_in_buffer_size) srcsize=sh_audio->a_in_buffer_size; // !!!!!! |
1231 if(sh_audio->a_in_buffer_len<srcsize){ | |
1232 sh_audio->a_in_buffer_len+= | |
1233 demux_read_data(sh_audio->ds,&sh_audio->a_in_buffer[sh_audio->a_in_buffer_len], | |
1234 srcsize-sh_audio->a_in_buffer_len); | |
1235 } | |
3442 | 1236 DS_AudioDecoder_Convert(ds_adec, sh_audio->a_in_buffer,sh_audio->a_in_buffer_len, |
291 | 1237 buf,maxlen, &size_in,&size_out); |
1567 | 1238 mp_dbg(MSGT_DECAUDIO,MSGL_DBG2,"DShow: audio %d -> %d converted (in_buf_len=%d of %d) %d\n",size_in,size_out,sh_audio->a_in_buffer_len,sh_audio->a_in_buffer_size,ds_tell_pts(sh_audio->ds)); |
291 | 1239 if(size_in>=sh_audio->a_in_buffer_len){ |
1240 sh_audio->a_in_buffer_len=0; | |
1241 } else { | |
1242 sh_audio->a_in_buffer_len-=size_in; | |
1243 memcpy(sh_audio->a_in_buffer,&sh_audio->a_in_buffer[size_in],sh_audio->a_in_buffer_len); | |
1244 } | |
1245 len=size_out; | |
1246 break; | |
1247 } | |
1248 #endif | |
2415 | 1249 |
1250 #ifdef USE_LIBMAD | |
1251 case AFM_MAD: | |
1252 { | |
1253 mad_prepare_buffer(sh_audio, &mad_stream, sh_audio->a_in_buffer_size); | |
1254 mad_stream_buffer(&mad_stream, sh_audio->a_in_buffer, sh_audio->a_in_buffer_len); | |
3871 | 1255 // mad_stream_sync(&mad_stream); |
1256 mad_sync(sh_audio, &mad_stream); | |
2415 | 1257 if(mad_frame_decode(&mad_frame, &mad_stream) == 0) |
1258 { | |
1259 mad_synth_frame(&mad_synth, &mad_frame); | |
1260 mad_postprocess_buffer(sh_audio, &mad_stream); | |
1261 | |
1262 /* and fill buffer */ | |
1263 | |
1264 { | |
1265 int i; | |
1266 int end_size = mad_synth.pcm.length; | |
1267 signed short* samples = (signed short*)buf; | |
1268 if(end_size > maxlen/4) | |
1269 end_size=maxlen/4; | |
1270 | |
1271 for(i=0; i<mad_synth.pcm.length; ++i) { | |
1272 *samples++ = mad_scale(mad_synth.pcm.samples[0][i]); | |
1273 *samples++ = mad_scale(mad_synth.pcm.samples[0][i]); | |
1274 // *buf++ = mad_scale(mad_synth.pcm.sampAles[1][i]); | |
1275 } | |
1276 len = end_size*4; | |
1277 } | |
1278 } | |
1279 else | |
1280 { | |
3871 | 1281 printf(__FILE__ ":%d:mad: frame decoding failed (error: %d)\n", __LINE__, |
1282 mad_stream.error); | |
3874 | 1283 mad_print_error(&mad_stream); |
2415 | 1284 } |
1285 | |
1286 break; | |
1287 } | |
1288 #endif | |
291 | 1289 } |
1290 return len; | |
1291 } | |
1292 | |
1327
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1293 void resync_audio_stream(sh_audio_t *sh_audio){ |
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1294 switch(sh_audio->codec->driver){ |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1295 case AFM_MPEG: |
1327
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1296 MP3_DecodeFrame(NULL,-2); // resync |
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1297 MP3_DecodeFrame(NULL,-2); // resync |
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1298 MP3_DecodeFrame(NULL,-2); // resync |
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1299 break; |
1849
5f246fcc2971
Resetting stream and sync for seek, no correct test files yet for proper testing but should be ok.
atmos4
parents:
1837
diff
changeset
|
1300 #ifdef HAVE_OGGVORBIS |
5f246fcc2971
Resetting stream and sync for seek, no correct test files yet for proper testing but should be ok.
atmos4
parents:
1837
diff
changeset
|
1301 case AFM_VORBIS: |
5f246fcc2971
Resetting stream and sync for seek, no correct test files yet for proper testing but should be ok.
atmos4
parents:
1837
diff
changeset
|
1302 //printf("OggVorbis: resetting stream.\n"); |
5f246fcc2971
Resetting stream and sync for seek, no correct test files yet for proper testing but should be ok.
atmos4
parents:
1837
diff
changeset
|
1303 ogg_sync_reset(&sh_audio->ov->oy); |
5f246fcc2971
Resetting stream and sync for seek, no correct test files yet for proper testing but should be ok.
atmos4
parents:
1837
diff
changeset
|
1304 ogg_stream_reset(&sh_audio->ov->os); |
5f246fcc2971
Resetting stream and sync for seek, no correct test files yet for proper testing but should be ok.
atmos4
parents:
1837
diff
changeset
|
1305 break; |
5f246fcc2971
Resetting stream and sync for seek, no correct test files yet for proper testing but should be ok.
atmos4
parents:
1837
diff
changeset
|
1306 #endif |
3886 | 1307 #ifdef USE_LIBAC3 |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1308 case AFM_AC3: |
1327
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1309 ac3_bitstream_reset(); // reset AC3 bitstream buffer |
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1310 // if(verbose){ printf("Resyncing AC3 audio...");fflush(stdout);} |
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1311 sh_audio->ac3_frame=ac3_decode_frame(); // resync |
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1312 // if(verbose) printf(" OK!\n"); |
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1313 break; |
3886 | 1314 #endif |
3413 | 1315 case AFM_A52: |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1316 case AFM_ACM: |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1317 case AFM_DSHOW: |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1517
diff
changeset
|
1318 case AFM_HWAC3: |
1327
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1319 sh_audio->a_in_buffer_len=0; // reset ACM/DShow audio buffer |
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1320 break; |
2415 | 1321 |
1322 #ifdef USE_LIBMAD | |
1323 case AFM_MAD: | |
1324 mad_prepare_buffer(sh_audio, &mad_stream, sh_audio->a_in_buffer_size); | |
1325 mad_stream_buffer(&mad_stream, sh_audio->a_in_buffer, sh_audio->a_in_buffer_len); | |
3871 | 1326 // mad_stream_sync(&mad_stream); |
1327 mad_sync(sh_audio, &mad_stream); | |
2415 | 1328 mad_postprocess_buffer(sh_audio, &mad_stream); |
1329 break; | |
2418 | 1330 #endif |
1327
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1331 } |
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1332 } |
291 | 1333 |
1327
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1334 void skip_audio_frame(sh_audio_t *sh_audio){ |
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1335 switch(sh_audio->codec->driver){ |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1336 case AFM_MPEG: MP3_DecodeFrame(NULL,-2);break; // skip MPEG frame |
3886 | 1337 #ifdef USE_LIBAC3 |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1338 case AFM_AC3: sh_audio->ac3_frame=ac3_decode_frame();break; // skip AC3 frame |
3886 | 1339 #endif |
3829 | 1340 case AFM_HWAC3: |
3413 | 1341 case AFM_A52: a52_fillbuff(sh_audio);break; // skip AC3 frame |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1342 case AFM_ACM: |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1343 case AFM_DSHOW: { |
1408 | 1344 int skip=sh_audio->wf->nBlockAlign; |
1345 if(skip<16){ | |
1346 skip=(sh_audio->wf->nAvgBytesPerSec/16)&(~7); | |
1347 if(skip<16) skip=16; | |
1348 } | |
1349 demux_read_data(sh_audio->ds,NULL,skip); | |
1350 break; | |
1351 } | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1352 case AFM_PCM: |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1353 case AFM_DVDPCM: |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1408
diff
changeset
|
1354 case AFM_ALAW: { |
1408 | 1355 int skip=sh_audio->i_bps/16; |
1356 skip=skip&(~3); | |
1357 demux_read_data(sh_audio->ds,NULL,skip); | |
1358 break; | |
1359 } | |
2415 | 1360 #ifdef USE_LIBMAD |
1361 case AFM_MAD: | |
1362 { | |
1363 mad_prepare_buffer(sh_audio, &mad_stream, sh_audio->a_in_buffer_size); | |
1364 mad_stream_buffer(&mad_stream, sh_audio->a_in_buffer, sh_audio->a_in_buffer_len); | |
1365 mad_stream_skip(&mad_stream, 2); | |
3871 | 1366 // mad_stream_sync(&mad_stream); |
1367 mad_sync(sh_audio, &mad_stream); | |
2415 | 1368 mad_postprocess_buffer(sh_audio, &mad_stream); |
1369 break; | |
1370 } | |
1371 #endif | |
1372 | |
1327
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1373 default: ds_fill_buffer(sh_audio->ds); // skip PCM frame |
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1374 } |
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1320
diff
changeset
|
1375 } |