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:
@@ -589,7 +589,7 @@ static struct tag *aacTagDup(const char *file)
|
||||
static const char *aac_suffixes[] = { "aac", NULL };
|
||||
static const char *aac_mimeTypes[] = { "audio/aac", "audio/aacp", NULL };
|
||||
|
||||
struct decoder_plugin aacPlugin = {
|
||||
const struct decoder_plugin aacPlugin = {
|
||||
.name = "aac",
|
||||
.stream_decode = aac_stream_decode,
|
||||
.file_decode = aac_decode,
|
||||
|
||||
Reference in New Issue
Block a user