aboutsummaryrefslogtreecommitdiff
path: root/src/decoder/flac_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-01 14:54:09 +0100
committerMax Kellermann <max@duempel.org>2008-11-01 14:54:09 +0100
commit0b614fbaae9089d6d1ce981735a51f2a5b3cbf65 (patch)
treebc1f7fc067f7f794b34dfed31083fd9eb13dcd19 /src/decoder/flac_plugin.c
parent1a4a3e1f1f09ade38095757952bbf732ec275fe8 (diff)
decoder: make all decoder_plugin structs const
All decoder_plugin structs are initialized at compile time, and must never change.
Diffstat (limited to 'src/decoder/flac_plugin.c')
-rw-r--r--src/decoder/flac_plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder/flac_plugin.c b/src/decoder/flac_plugin.c
index 0c486942..8b49ec3e 100644
--- a/src/decoder/flac_plugin.c
+++ b/src/decoder/flac_plugin.c
@@ -435,7 +435,7 @@ static const char *oggflac_mime_types[] = { "audio/x-flac+ogg",
"application/x-ogg",
NULL };
-struct decoder_plugin oggflacPlugin = {
+const struct decoder_plugin oggflacPlugin = {
.name = "oggflac",
.try_decode = oggflac_try_decode,
.stream_decode = oggflac_decode,
@@ -452,7 +452,7 @@ static const char *flac_mime_types[] = { "audio/x-flac",
"application/x-flac",
NULL };
-struct decoder_plugin flacPlugin = {
+const struct decoder_plugin flacPlugin = {
.name = "flac",
.stream_decode = flac_decode,
.tag_dup = flacTagDup,