mirror of https://github.com/mpv-player/mpv
set up ss_div/ss_mul properly, accept 'alaw' fourcc too
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7754 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
3cfed8bdb5
commit
6d80c0060e
|
@ -31,6 +31,8 @@ static int init(sh_audio_t *sh_audio)
|
||||||
static int preinit(sh_audio_t *sh)
|
static int preinit(sh_audio_t *sh)
|
||||||
{
|
{
|
||||||
sh->audio_out_minsize=2048;
|
sh->audio_out_minsize=2048;
|
||||||
|
sh->ds->ss_div = 1; // 1 samples/packet
|
||||||
|
sh->ds->ss_mul = 1; // 1 bytes/packet
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,7 +63,7 @@ static int decode_audio(sh_audio_t *sh_audio,unsigned char *buf,int minlen,int m
|
||||||
unsigned short *d=(unsigned short *) buf;
|
unsigned short *d=(unsigned short *) buf;
|
||||||
unsigned char *s=buf;
|
unsigned char *s=buf;
|
||||||
len=2*l;
|
len=2*l;
|
||||||
if(sh_audio->format==6){
|
if(sh_audio->format==6 || sh_audio->format==0x77616C61){
|
||||||
/* aLaw */
|
/* aLaw */
|
||||||
while(l>0){ --l; d[l]=alaw2short[s[l]]; }
|
while(l>0){ --l; d[l]=alaw2short[s[l]]; }
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue