Commit 56ddb923 authored by Michael Niedermayer's avatar Michael Niedermayer

tools/target_dec_fuzzer: Use avcodec_register_all() instead of register_all()

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent f4c133c7
......@@ -66,7 +66,7 @@ static AVCodec *c = NULL;
static AVCodec *AVCodecInitialize(enum AVCodecID codec_id)
{
AVCodec *res;
av_register_all();
avcodec_register_all();
av_log_set_level(AV_LOG_PANIC);
res = avcodec_find_decoder(codec_id);
if (!res)
......
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