tremor uses integer types

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16184 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
rathann 2005-08-06 15:43:54 +00:00
parent 9e603521e5
commit baae459020
1 changed files with 4 additions and 0 deletions

View File

@ -218,7 +218,11 @@ static int decode_audio(sh_audio_t *sh,unsigned char *buf,int minlen,int maxlen)
{
int len = 0;
int samples;
#ifdef TREMOR
ogg_int32_t **pcm;
#else
float **pcm;
#endif
float scale;
struct ov_struct_st *ov = sh->context;
while(len < minlen) {