diff options
author | Carl Eugen Hoyos | 2019-03-20 18:52:38 +0100 |
---|---|---|
committer | Carl Eugen Hoyos | 2019-03-20 18:52:38 +0100 |
commit | 3aa6208db9666c0f1351855262d8c839002d9de1 (patch) | |
tree | e65953de8f56fdb4f063173435599d052926effc /libavformat/avidec.c | |
parent | 9461e4bc694b8d95d4224226b9781f8166d969b1 (diff) |
lavf: Constify AVInputFormat pointer.
Diffstat (limited to 'libavformat/avidec.c')
-rw-r--r-- | libavformat/avidec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avidec.c b/libavformat/avidec.c index 3f074795a7..24aef6bd3b 100644 --- a/libavformat/avidec.c +++ b/libavformat/avidec.c @@ -1068,7 +1068,7 @@ static int read_gab2_sub(AVFormatContext *s, AVStream *st, AVPacket *pkt) uint8_t desc[256]; int score = AVPROBE_SCORE_EXTENSION, ret; AVIStream *ast = st->priv_data; - AVInputFormat *sub_demuxer; + ff_const59 AVInputFormat *sub_demuxer; AVRational time_base; int size; AVIOContext *pb = avio_alloc_context(pkt->data + 7, |