summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec_asf.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2019-03-20 18:52:38 +0100
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2019-03-20 18:52:38 +0100
commit3aa6208db9666c0f1351855262d8c839002d9de1 (patch)
treee65953de8f56fdb4f063173435599d052926effc /libavformat/rtpdec_asf.c
parent9461e4bc694b8d95d4224226b9781f8166d969b1 (diff)
lavf: Constify AVInputFormat pointer.
Diffstat (limited to 'libavformat/rtpdec_asf.c')
-rw-r--r--libavformat/rtpdec_asf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec_asf.c b/libavformat/rtpdec_asf.c
index 54ffef6876..e58f0260f3 100644
--- a/libavformat/rtpdec_asf.c
+++ b/libavformat/rtpdec_asf.c
@@ -106,7 +106,7 @@ int ff_wms_parse_sdp_a_line(AVFormatContext *s, const char *p)
AVDictionary *opts = NULL;
int len = strlen(p) * 6 / 8;
char *buf = av_mallocz(len);
- AVInputFormat *iformat;
+ ff_const59 AVInputFormat *iformat;
if (!buf)
return AVERROR(ENOMEM);