1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-19 21:31:52 +00:00

I think libfaad2 changed recently. The functions faacDecInit() and

faacDecInit2() now return the number of channels through a pointer to char
(was: pointer to long).
patch by Uwe.Reder@3SOFT.de


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7649 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-10-07 10:18:46 +00:00
parent a0d58842ad
commit 1b19920692

View File

@ -45,7 +45,8 @@ static int preinit(sh_audio_t *sh)
static int init(sh_audio_t *sh)
{
unsigned long faac_samplerate, faac_channels;
unsigned long faac_samplerate;
unsigned char faac_channels;
int faac_init;
faac_hdec = faacDecOpen();