diff Plugins/Input/mpg123/mpg123.c @ 970:0f294f2b0a9b trunk

[svn] - integer-mode decoding accuracy improvements
author nenolod
date Wed, 26 Apr 2006 10:54:58 -0700
parents 971bd2b03ff5
children fa6a2ad65e71
line wrap: on
line diff
--- a/Plugins/Input/mpg123/mpg123.c	Mon Apr 24 21:41:50 2006 -0700
+++ b/Plugins/Input/mpg123/mpg123.c	Wed Apr 26 10:54:58 2006 -0700
@@ -109,9 +109,9 @@
 static void
 set_synth_functions(struct frame *fr)
 {
-    typedef int (*func) (real *, int, unsigned char *, int *);
-    typedef int (*func_mono) (real *, unsigned char *, int *);
-    typedef void (*func_dct36) (real *, real *, real *, real *, real *);
+    typedef int (*func) (mpgdec_real *, int, unsigned char *, int *);
+    typedef int (*func_mono) (mpgdec_real *, unsigned char *, int *);
+    typedef void (*func_dct36) (mpgdec_real *, mpgdec_real *, mpgdec_real *, mpgdec_real *, mpgdec_real *);
 
     int ds = fr->down_sample;
     int p8 = 0;