mirror of
https://github.com/mpv-player/mpv
synced 2025-04-01 23:00:41 +00:00
Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3329 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
7af3856b51
commit
6409ef3cc8
@ -77,11 +77,10 @@ static int init(int rate,int channels,int format,int flags)
|
|||||||
printf("AO: [dxr3] Can't set audio device /dev/em8300_ma to AC3 output\n");
|
printf("AO: [dxr3] Can't set audio device /dev/em8300_ma to AC3 output\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("AO: [dxr3] Sample format: %s (requested: %s)\n",
|
printf("AO: [dxr3] Sample format: %s (requested: %s)\n",
|
||||||
audio_out_format_name(ao_data.format), audio_out_format_name(format));
|
audio_out_format_name(ao_data.format), audio_out_format_name(format));
|
||||||
|
|
||||||
if(format != AFMT_AC3)
|
|
||||||
{
|
|
||||||
ao_data.channels=channels-1;
|
ao_data.channels=channels-1;
|
||||||
if( ioctl (fd_audio, SNDCTL_DSP_STEREO, &ao_data.channels) < 0 )
|
if( ioctl (fd_audio, SNDCTL_DSP_STEREO, &ao_data.channels) < 0 )
|
||||||
printf( "AO: [dxr3] Unable to set number of channels\n" );
|
printf( "AO: [dxr3] Unable to set number of channels\n" );
|
||||||
@ -106,8 +105,7 @@ static int init(int rate,int channels,int format,int flags)
|
|||||||
ao_data.samplerate = rate;
|
ao_data.samplerate = rate;
|
||||||
}
|
}
|
||||||
else printf("AO: [dxr3] Using %d Hz samplerate (requested: %d)\n",ao_data.samplerate,rate);
|
else printf("AO: [dxr3] Using %d Hz samplerate (requested: %d)\n",ao_data.samplerate,rate);
|
||||||
}
|
if(format == AFMT_AC3 ) ao_data.bps *= 2;
|
||||||
else ao_data.bps *= 2;
|
|
||||||
|
|
||||||
if( ioctl(fd_audio, SNDCTL_DSP_GETOSPACE, &dxr3_buf_info)==-1 )
|
if( ioctl(fd_audio, SNDCTL_DSP_GETOSPACE, &dxr3_buf_info)==-1 )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user