Mercurial > mplayer.hg
changeset 16183:8c342c68f665
tremor uses integer types
author | rathann |
---|---|
date | Sat, 06 Aug 2005 15:43:54 +0000 |
parents | 99988abe7afb |
children | 04dd5945fab8 |
files | libmpcodecs/ad_libvorbis.c |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpcodecs/ad_libvorbis.c Sat Aug 06 15:43:08 2005 +0000 +++ b/libmpcodecs/ad_libvorbis.c Sat Aug 06 15:43:54 2005 +0000 @@ -218,7 +218,11 @@ { 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) {