summaryrefslogtreecommitdiffstats
path: root/demux/demux_playlist.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-06-10 23:56:05 +0200
committerwm4 <wm4@nowhere>2014-06-11 00:39:14 +0200
commit99f5fef0ea5671d41fb7b737fbc3e4236542a757 (patch)
treec01912d00e64a7783cb7109b3d1e2dc2390b3a7d /demux/demux_playlist.c
parentad4b7a8c967f9d13ceeaffff25d156d848b68445 (diff)
downloadmpv-99f5fef0ea5671d41fb7b737fbc3e4236542a757.tar.bz2
mpv-99f5fef0ea5671d41fb7b737fbc3e4236542a757.tar.xz
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.
Diffstat (limited to 'demux/demux_playlist.c')
-rw-r--r--demux/demux_playlist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/demux/demux_playlist.c b/demux/demux_playlist.c
index af24d4906f..b2344b5583 100644
--- a/demux/demux_playlist.c
+++ b/demux/demux_playlist.c
@@ -154,11 +154,11 @@ static int parse_txt(struct pl_parser *p)
struct pl_format {
const char *name;
int (*parse)(struct pl_parser *p);
- const char **mime_types;
+ const char *const *mime_types;
};
#define MIME_TYPES(...) \
- .mime_types = (const char*[]){__VA_ARGS__, NULL}
+ .mime_types = (const char*const[]){__VA_ARGS__, NULL}
static const struct pl_format formats[] = {
{"m3u", parse_m3u,
@@ -170,7 +170,7 @@ static const struct pl_format formats[] = {
{"txt", parse_txt},
};
-static bool check_mimetype(struct stream *s, const char **list)
+static bool check_mimetype(struct stream *s, const char *const *list)
{
if (s->mime_type) {
for (int n = 0; list && list[n]; n++) {