[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 04/17] hw/audio/cs4231a: Const'ify global tables
|
From: |
Gerd Hoffmann |
|
Subject: |
[PULL 04/17] hw/audio/cs4231a: Const'ify global tables |
|
Date: |
Fri, 10 Jun 2022 11:20:30 +0200 |
From: Bernhard Beschow <shentey@gmail.com>
The tables contain spcifically crafted constants for algorithms, so make
them immutable.
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20220520180109.8224-3-shentey@gmail.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
hw/audio/cs4231a.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/hw/audio/cs4231a.c b/hw/audio/cs4231a.c
index 0723e3943044..7f17a72a9cb7 100644
--- a/hw/audio/cs4231a.c
+++ b/hw/audio/cs4231a.c
@@ -84,7 +84,7 @@ struct CSState {
int transferred;
int aci_counter;
SWVoiceOut *voice;
- int16_t *tab;
+ const int16_t *tab;
};
#define MODE2 (1 << 6)
@@ -142,13 +142,13 @@ enum {
Capture_Lower_Base_Count
};
-static int freqs[2][8] = {
+static const int freqs[2][8] = {
{ 8000, 16000, 27420, 32000, -1, -1, 48000, 9000 },
{ 5510, 11025, 18900, 22050, 37800, 44100, 33075, 6620 }
};
/* Tables courtesy http://hazelware.luggle.com/tutorials/mulawcompression.html
*/
-static int16_t MuLawDecompressTable[256] =
+static const int16_t MuLawDecompressTable[256] =
{
-32124,-31100,-30076,-29052,-28028,-27004,-25980,-24956,
-23932,-22908,-21884,-20860,-19836,-18812,-17788,-16764,
@@ -184,7 +184,7 @@ static int16_t MuLawDecompressTable[256] =
56, 48, 40, 32, 24, 16, 8, 0
};
-static int16_t ALawDecompressTable[256] =
+static const int16_t ALawDecompressTable[256] =
{
-5504, -5248, -6016, -5760, -4480, -4224, -4992, -4736,
-7552, -7296, -8064, -7808, -6528, -6272, -7040, -6784,
--
2.36.1
- [PULL 00/17] Kraxel 20220610 patches, Gerd Hoffmann, 2022/06/10
- [PULL 01/17] ui/gtk-gl-area: implement GL context destruction, Gerd Hoffmann, 2022/06/10
- [PULL 07/17] meson: Add CanoKey, Gerd Hoffmann, 2022/06/10
- [PULL 04/17] hw/audio/cs4231a: Const'ify global tables,
Gerd Hoffmann <=
- [PULL 03/17] ui/cocoa: Fix poweroff request code, Gerd Hoffmann, 2022/06/10
- [PULL 06/17] hw/usb/canokey: Add trace events, Gerd Hoffmann, 2022/06/10
- [PULL 05/17] hw/usb: Add CanoKey Implementation, Gerd Hoffmann, 2022/06/10
- [PULL 02/17] ui/gtk-gl-area: create the requested GL context version, Gerd Hoffmann, 2022/06/10
- [PULL 09/17] docs/system/devices/usb: Add CanoKey to USB devices examples, Gerd Hoffmann, 2022/06/10
- [PULL 10/17] MAINTAINERS: add myself as CanoKey maintainer, Gerd Hoffmann, 2022/06/10
- [PULL 13/17] virtio-gpu: update done only on the scanout associated with rect, Gerd Hoffmann, 2022/06/10
- [PULL 11/17] hw/usb/hcd-ehci: fix writeback order, Gerd Hoffmann, 2022/06/10
- [PULL 08/17] docs: Add CanoKey documentation, Gerd Hoffmann, 2022/06/10
- [PULL 12/17] usbredir: avoid queuing hello packet on snapshot restore, Gerd Hoffmann, 2022/06/10