[FFmpeg-cvslog] libaom: Dont use aom_codec_av1_dx_algo.

Matt Oliver git at videolan.org
Sat Oct 30 05:38:16 EEST 2021


ffmpeg | branch: master | Matt Oliver <protogonoi at gmail.com> | Wed Oct 20 07:02:39 2021 +1100| [d92fdc714496d43234733c315894abe0beeb3529] | committer: Matt Oliver

libaom: Dont use aom_codec_av1_dx_algo.

This fixes linking errors where variables cannot be correctly linked in from an external shared library such as with msvc (requires dllimport which is not used by libaom). Instead just call the function that returns the same variable.

Signed-off-by: Matt Oliver <protogonoi at gmail.com>

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

 libavcodec/libaomdec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/libaomdec.c b/libavcodec/libaomdec.c
index 75ecc08970..d6b822fda2 100644
--- a/libavcodec/libaomdec.c
+++ b/libavcodec/libaomdec.c
@@ -241,7 +241,7 @@ static av_cold int aom_free(AVCodecContext *avctx)
 
 static av_cold int av1_init(AVCodecContext *avctx)
 {
-    return aom_init(avctx, &aom_codec_av1_dx_algo);
+    return aom_init(avctx, aom_codec_av1_dx());
 }
 
 const AVCodec ff_libaom_av1_decoder = {



More information about the ffmpeg-cvslog mailing list