From 36159c2bd4e35e838054a72363929e7033647a95 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Thu, 7 Jan 2021 19:00:57 +0100 Subject: [PATCH] Add comment for deprecated avcodec_register_all Apparently this is now done automatically and doesn't even need to be called at all --- rpcs3/Emu/Cell/Modules/cellVdec.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rpcs3/Emu/Cell/Modules/cellVdec.cpp b/rpcs3/Emu/Cell/Modules/cellVdec.cpp index 93045fbd0b..e92f206aac 100644 --- a/rpcs3/Emu/Cell/Modules/cellVdec.cpp +++ b/rpcs3/Emu/Cell/Modules/cellVdec.cpp @@ -139,6 +139,8 @@ struct vdec_context final #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated-declarations" #endif + // TODO: This function should be removed at some point, since ffmpeg does it automatically now. + // We'll keep it for compatibility for now until more system ffmpeg libs are up to date. avcodec_register_all(); #ifdef _MSC_VER #pragma warning(pop)