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

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
pull/202/merge
Michael Niedermayer 8 years ago
parent f4c133c708
commit 56ddb923c6
  1. 2
      tools/target_dec_fuzzer.c

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

Loading…
Cancel
Save