decoder: make all decoder_plugin structs const

All decoder_plugin structs are initialized at compile time, and must
never change.
This commit is contained in:
Max Kellermann
2008-11-01 14:54:09 +01:00
parent 1a4a3e1f1f
commit 0b614fbaae
12 changed files with 23 additions and 23 deletions

View File

@@ -135,7 +135,7 @@ static struct tag *audiofileTagDup(const char *file)
static const char *audiofileSuffixes[] = { "wav", "au", "aiff", "aif", NULL };
struct decoder_plugin audiofilePlugin = {
const struct decoder_plugin audiofilePlugin = {
.name = "audiofile",
.file_decode = audiofile_decode,
.tag_dup = audiofileTagDup,