You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02: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:
@@ -66,7 +66,7 @@ static AVCodec *c = NULL;
|
|||||||
static AVCodec *AVCodecInitialize(enum AVCodecID codec_id)
|
static AVCodec *AVCodecInitialize(enum AVCodecID codec_id)
|
||||||
{
|
{
|
||||||
AVCodec *res;
|
AVCodec *res;
|
||||||
av_register_all();
|
avcodec_register_all();
|
||||||
av_log_set_level(AV_LOG_PANIC);
|
av_log_set_level(AV_LOG_PANIC);
|
||||||
res = avcodec_find_decoder(codec_id);
|
res = avcodec_find_decoder(codec_id);
|
||||||
if (!res)
|
if (!res)
|
||||||
|
Reference in New Issue
Block a user