diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-02-20 19:47:32 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-02-20 19:47:32 +0100 |
commit | 9b9d996b34aef80dc50b9c60a81e55c979d69a8e (patch) | |
tree | 74de492e872dde652b75bb8d5f2f6cd45e21603a /libavfilter | |
parent | 22b06103f0195a46a30ed1ac8dfe967296f5bad3 (diff) | |
download | ffmpeg-9b9d996b34aef80dc50b9c60a81e55c979d69a8e.tar.gz |
lavfi/subtitles: fix recently introduced warning about discarded const qualifier.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_subtitles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_subtitles.c b/libavfilter/vf_subtitles.c index 4f4fbf7311..7513e2402c 100644 --- a/libavfilter/vf_subtitles.c +++ b/libavfilter/vf_subtitles.c @@ -267,7 +267,7 @@ static av_cold int init_subtitles(AVFilterContext *ctx, const char *args) AVFormatContext *fmt = NULL; AVCodecContext *dec_ctx = NULL; AVCodec *dec = NULL; - AVCodecDescriptor *dec_desc; + const AVCodecDescriptor *dec_desc; AVStream *st; AVPacket pkt; AssContext *ass = ctx->priv; |