modules/misc/dummy/decoder.c: Dummily decode subtitle tracks as well.

And just crash
parent 414f55ee
......@@ -107,6 +107,8 @@ int E_(OpenDecoder) ( vlc_object_t *p_this )
DecodeBlock;
p_dec->pf_decode_audio = (aout_buffer_t *(*)(decoder_t *, block_t **))
DecodeBlock;
p_dec->pf_decode_sub = (subpicture_t *(*)(decoder_t *, block_t **))
DecodeBlock;
return VLC_SUCCESS;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment