[FFmpeg-cvslog] tools/target_dec_fuzzer: Use avcodec_register_all() instead of register_all()

Michael Niedermayer git at videolan.org
Tue May 2 01:56:28 EEST 2017


ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Tue May  2 00:28:39 2017 +0200| [56ddb923c63f1aa2ca2c9f503cdd214a0cd6445f] | committer: Michael Niedermayer

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

Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=56ddb923c63f1aa2ca2c9f503cdd214a0cd6445f
---

 tools/target_dec_fuzzer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/target_dec_fuzzer.c b/tools/target_dec_fuzzer.c
index ce58fe5eaf..65e79ebfe0 100644
--- a/tools/target_dec_fuzzer.c
+++ b/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)



More information about the ffmpeg-cvslog mailing list