Browse Source

lavfi/subtitles: fix recently introduced warning about discarded const qualifier.

tags/n1.2
Clément Bœsch 12 years ago
parent
commit
9b9d996b34
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_subtitles.c

+ 1
- 1
libavfilter/vf_subtitles.c View File

@@ -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;


Loading…
Cancel
Save