mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 18:19:01 +08:00
5d7ad6b5ae
* Update ffmpeg to 4.4.3 - Backport fix for h.264 hardware decoding on M1 macs - ffmpeg links against built-in atomic, not a findable lib * add missing extension for new patch * version! Co-authored-by: Martijn Otto <martijn@resolume.com> Co-authored-by: Javier Matos Denizac <javier.matosd@gmail.com>
14 lines
419 B
Diff
14 lines
419 B
Diff
diff --git a/libavcodec/libaomdec.c b/libavcodec/libaomdec.c
|
|
index 1fc0a00..06b2ff0 100644
|
|
--- a/libavcodec/libaomdec.c
|
|
+++ b/libavcodec/libaomdec.c
|
|
@@ -224,7 +224,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());
|
|
}
|
|
|
|
AVCodec ff_libaom_av1_decoder = {
|