mirror of
https://github.com/mpv-player/mpv
synced 2025-01-01 04:36:24 +01:00
tremor uses integer types
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16184 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
9e603521e5
commit
baae459020
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user