1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

lavc/videotoolbox: call VTRegisterSupplementalVideoDecoderIfAvailable

This is required for VP9 to work.
This commit is contained in:
rcombs
2021-11-13 02:33:08 -06:00
parent 530c4a7ea9
commit e3c6cc96cf

View File

@@ -32,6 +32,7 @@
#include "h264dec.h" #include "h264dec.h"
#include "hevcdec.h" #include "hevcdec.h"
#include "mpegvideo.h" #include "mpegvideo.h"
#include <Availability.h>
#include <TargetConditionals.h> #include <TargetConditionals.h>
#ifndef kVTVideoDecoderSpecification_RequireHardwareAcceleratedVideoDecoder #ifndef kVTVideoDecoderSpecification_RequireHardwareAcceleratedVideoDecoder
@@ -866,6 +867,12 @@ static int videotoolbox_start(AVCodecContext *avctx)
break; break;
} }
#ifdef __MAC_10_11
if (__builtin_available(macOS 10.11, *)) {
VTRegisterSupplementalVideoDecoderIfAvailable(videotoolbox->cm_codec_type);
}
#endif
decoder_spec = videotoolbox_decoder_config_create(videotoolbox->cm_codec_type, avctx); decoder_spec = videotoolbox_decoder_config_create(videotoolbox->cm_codec_type, avctx);
if (!decoder_spec) { if (!decoder_spec) {