summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2016-06-25 13:38:53 +0200
committerClément Bœsch <u@pkh.me>2016-06-25 13:38:53 +0200
commit8ca78d0fefa02e44657ad57adab151b7b71b27d3 (patch)
tree7d854490f45764b2e670a2ee1baab4642d040fb0 /libavformat
parent11ee8a4504992965fb0db9cb0f513e93601d68bf (diff)
lavf/utils: fix const warning at a find_decoder() call
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index a3c6705353..1d73b25bc4 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -3610,7 +3610,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
st = ic->streams[stream_index];
avctx = st->internal->avctx;
if (!has_codec_parameters(st, NULL)) {
- AVCodec *codec = find_decoder(ic, st, st->codecpar->codec_id);
+ const AVCodec *codec = find_decoder(ic, st, st->codecpar->codec_id);
if (codec && !avctx->codec) {
if (avcodec_open2(avctx, codec, (options && stream_index < orig_nb_streams) ? &options[stream_index] : NULL) < 0)
av_log(ic, AV_LOG_WARNING,