diff options
author | Clément Bœsch <u@pkh.me> | 2016-06-21 22:09:35 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2016-06-21 22:09:35 +0200 |
commit | 8df1dbd7980a6b09c0b6f43299a49e56d19bd1ca (patch) | |
tree | c19d08d53e0243fec0e083c1522bfee93f969fda /libavformat/hls.c | |
parent | ea80e90e134c8325add9e11eb07a52b0af815deb (diff) | |
parent | 5afb94c817abffad030c6b94d7003dca8aace3d5 (diff) | |
download | ffmpeg-8df1dbd7980a6b09c0b6f43299a49e56d19bd1ca.tar.gz |
Merge commit '5afb94c817abffad030c6b94d7003dca8aace3d5'
* commit '5afb94c817abffad030c6b94d7003dca8aace3d5':
Mark read-only tables as static
Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavformat/hls.c')
-rw-r--r-- | libavformat/hls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/hls.c b/libavformat/hls.c index 7953e825bb..b962d67abc 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -1475,7 +1475,7 @@ static int select_cur_seq_no(HLSContext *c, struct playlist *pls) static int save_avio_options(AVFormatContext *s) { HLSContext *c = s->priv_data; - const char *opts[] = { + static const char *opts[] = { "headers", "http_proxy", "user_agent", "user-agent", "cookies", NULL }; const char **opt = opts; uint8_t *buf; |