mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
tools/target_dec_fuzzer: Use avcodec_register_all() instead of register_all()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
f4c133c708
commit
56ddb923c6
@ -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…
Reference in New Issue
Block a user