Browse Source

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

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.4
Michael Niedermayer 8 years ago
parent
commit
56ddb923c6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tools/target_dec_fuzzer.c

+ 1
- 1
tools/target_dec_fuzzer.c View File

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