From 99f5fef0ea5671d41fb7b737fbc3e4236542a757 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 10 Jun 2014 23:56:05 +0200 Subject: Add more const While I'm not very fond of "const", it's important for declarations (it decides whether a symbol is emitted in a read-only or read/write section). Fix all these cases, so we have writeable global data only when we really need. --- demux/demux_lavf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'demux/demux_lavf.c') diff --git a/demux/demux_lavf.c b/demux/demux_lavf.c index 23a89386b7..4fb1ee3cb3 100644 --- a/demux/demux_lavf.c +++ b/demux/demux_lavf.c @@ -111,7 +111,7 @@ static const struct format_hack format_hacks[] = { {0} }; -static const char *format_blacklist[] = { +static const char *const format_blacklist[] = { "tty", // Useless non-sense, sometimes breaks MLP2 subreader.c fallback 0 }; @@ -184,7 +184,7 @@ static void list_formats(struct demuxer *demuxer) MP_INFO(demuxer, "%15s : %s\n", fmt->name, fmt->long_name); } -static char *remove_prefix(char *s, const char **prefixes) +static char *remove_prefix(char *s, const char *const *prefixes) { for (int n = 0; prefixes[n]; n++) { int len = strlen(prefixes[n]); @@ -194,7 +194,7 @@ static char *remove_prefix(char *s, const char **prefixes) return s; } -static const char *prefixes[] = +static const char *const prefixes[] = {"ffmpeg://", "lavf://", "avdevice://", "av://", NULL}; static int lavf_check_file(demuxer_t *demuxer, enum demux_check check) -- cgit v1.2.3