summaryrefslogtreecommitdiff
path: root/gst/mpegpsmux
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2015-01-21 10:17:04 +0100
committerSebastian Dröge <sebastian@centricular.com>2015-01-21 10:18:50 +0100
commit80e02cbdf9d4645d3daeccf4b233d65b4ff8a19c (patch)
treea4c53d3aa84367082b22c9381c22991e38ff5bee /gst/mpegpsmux
parent8941fcacecea043952a87909d48d4d239c5c13e9 (diff)
downloadgstreamer-plugins-bad-80e02cbdf9d4645d3daeccf4b233d65b4ff8a19c.tar.gz
Constify some static arrays everywhere
Diffstat (limited to 'gst/mpegpsmux')
-rw-r--r--gst/mpegpsmux/crc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/mpegpsmux/crc.h b/gst/mpegpsmux/crc.h
index 35fb3e2ed..532b79751 100644
--- a/gst/mpegpsmux/crc.h
+++ b/gst/mpegpsmux/crc.h
@@ -40,7 +40,7 @@
* SOFTWARE.
*/
-static guint32 crc_tab[256] = {
+static const guint32 crc_tab[256] = {
0x00000000, 0x04c11db7, 0x09823b6e, 0x0d4326d9, 0x130476dc, 0x17c56b6b,
0x1a864db2, 0x1e475005, 0x2608edb8, 0x22c9f00f, 0x2f8ad6d6, 0x2b4bcb61,
0x350c9b64, 0x31cd86d3, 0x3c8ea00a, 0x384fbdbd, 0x4c11db70, 0x48d0c6c7,