aboutsummaryrefslogtreecommitdiff
path: root/Src/replicant/nsmp3dec/mp3quant.h
diff options
context:
space:
mode:
authorJean-Francois Mauguit <jfmauguit@mac.com>2024-09-24 09:03:25 -0400
committerGitHub <noreply@github.com>2024-09-24 09:03:25 -0400
commitbab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch)
tree12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/replicant/nsmp3dec/mp3quant.h
parent4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff)
parent20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff)
downloadwinamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz
Merge pull request #5 from WinampDesktop/community
Merge to main
Diffstat (limited to 'Src/replicant/nsmp3dec/mp3quant.h')
-rw-r--r--Src/replicant/nsmp3dec/mp3quant.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/Src/replicant/nsmp3dec/mp3quant.h b/Src/replicant/nsmp3dec/mp3quant.h
new file mode 100644
index 00000000..6304fd59
--- /dev/null
+++ b/Src/replicant/nsmp3dec/mp3quant.h
@@ -0,0 +1,43 @@
+/***************************************************************************\
+ *
+* MPEG Layer3-Audio Decoder
+* © 1997-2006 by Fraunhofer IIS
+ * All Rights Reserved
+ *
+ * filename: mp_quant.h
+ * project : ISO/MPEG-Decoder
+ * author : Markus Werner, addings: Martin Sieler
+ * date : 1995-07-07
+ * contents/description: HEADER - sample-dequantization
+ *
+ *
+\***************************************************************************/
+
+/*
+ * $Date: 2010/11/17 20:46:04 $
+ * $Id: mp3quant.h,v 1.1 2010/11/17 20:46:04 audiodsp Exp $
+ */
+
+/*-------------------------------------------------------------------------*/
+
+#ifndef __MP3QUANT_H__
+#define __MP3QUANT_H__
+
+/* ------------------------ includes --------------------------------------*/
+
+#include "mpeg.h"
+
+/* ------------------------------------------------------------------------*/
+
+void mp3DequantizeSpectrum
+ (
+ int *pIData,
+ float *pFData,
+ const MP3SI_GRCH &SiGrCh,
+ const MP3SCF &ScaleFac,
+ const MPEG_INFO &Info
+ );
+
+/*-------------------------------------------------------------------------*/
+
+#endif