Index: /libmpc/branches/r2d/libmpcdec/mpc_demux.c
===================================================================
--- /libmpc/branches/r2d/libmpcdec/mpc_demux.c	(revision 284)
+++ /libmpc/branches/r2d/libmpcdec/mpc_demux.c	(revision 285)
@@ -503,10 +503,10 @@
 		peak = 1.;
 	else
-		peak = (1 << 15) / powf(10, peak / (20 * 256));
+		peak = (1 << 15) / pow(10, peak / (20 * 256));
 
 	if(!gain)
 		gain = 1.;
 	else
-		gain = powf(10, (level - gain / 256) / 20);
+		gain = pow(10, (level - gain / 256) / 20);
 
 	if(clip_prevention && (peak < gain || !use_gain))
