summaryrefslogtreecommitdiff
path: root/libavformat/rtpenc_chain.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2019-03-20 18:38:48 +0100
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2019-03-20 18:38:48 +0100
commit9461e4bc694b8d95d4224226b9781f8166d969b1 (patch)
tree0afbbbdc360ff96343978dd63f615b146b7d5c65 /libavformat/rtpenc_chain.c
parent4602456c4f18d111131d4d6a1d0a150474c74d58 (diff)
lavf: Constify AVOutputFormat pointer.
Diffstat (limited to 'libavformat/rtpenc_chain.c')
-rw-r--r--libavformat/rtpenc_chain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpenc_chain.c b/libavformat/rtpenc_chain.c
index e7a4dffaba..e6b603db70 100644
--- a/libavformat/rtpenc_chain.c
+++ b/libavformat/rtpenc_chain.c
@@ -31,7 +31,7 @@ int ff_rtp_chain_mux_open(AVFormatContext **out, AVFormatContext *s,
{
AVFormatContext *rtpctx = NULL;
int ret;
- AVOutputFormat *rtp_format = av_guess_format("rtp", NULL, NULL);
+ ff_const59 AVOutputFormat *rtp_format = av_guess_format("rtp", NULL, NULL);
uint8_t *rtpflags;
AVDictionary *opts = NULL;