diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2019-03-20 18:38:48 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2019-03-20 18:38:48 +0100 |
commit | 9461e4bc694b8d95d4224226b9781f8166d969b1 (patch) | |
tree | 0afbbbdc360ff96343978dd63f615b146b7d5c65 /libavformat/hdsenc.c | |
parent | 4602456c4f18d111131d4d6a1d0a150474c74d58 (diff) | |
download | ffmpeg-9461e4bc694b8d95d4224226b9781f8166d969b1.tar.gz |
lavf: Constify AVOutputFormat pointer.
Diffstat (limited to 'libavformat/hdsenc.c')
-rw-r--r-- | libavformat/hdsenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/hdsenc.c b/libavformat/hdsenc.c index d82aee17b9..026530ac36 100644 --- a/libavformat/hdsenc.c +++ b/libavformat/hdsenc.c @@ -315,7 +315,7 @@ static int hds_write_header(AVFormatContext *s) { HDSContext *c = s->priv_data; int ret = 0, i; - AVOutputFormat *oformat; + ff_const59 AVOutputFormat *oformat; if (mkdir(s->url, 0777) == -1 && errno != EEXIST) { ret = AVERROR(errno); |