diff --git a/modules/codec/avcodec/subtitle.c b/modules/codec/avcodec/subtitle.c index 1e8047b1a98e318e3e9f01e8ec3278b9964ea275..7574e8a61211fe47d67268aa91f458cc654bf04f 100644 --- a/modules/codec/avcodec/subtitle.c +++ b/modules/codec/avcodec/subtitle.c @@ -69,6 +69,9 @@ int InitSubtitleDec(decoder_t *dec, AVCodecContext *context, if (!sys) return VLC_ENOMEM; + codec->type = CODEC_TYPE_SUBTITLE; + context->codec_type = CODEC_TYPE_SUBTITLE; + context->codec_id = codec_id; sys->p_context = context; sys->p_codec = codec; sys->i_codec_id = codec_id;