2018-07-16 01:11:57 +00:00
|
|
|
// Nasty hack to avoid conflict between AVFoundation and
|
|
|
|
// libavutil both defining AVMediaType
|
|
|
|
#define AVMediaType AVMediaType_FFmpeg
|
|
|
|
#include "vt.h"
|
|
|
|
#undef AVMediaType
|
|
|
|
|
|
|
|
#include <SDL_syswm.h>
|
|
|
|
#include <Limelight.h>
|
|
|
|
|
2018-07-18 07:10:22 +00:00
|
|
|
#include <QQueue>
|
|
|
|
|
2018-07-16 01:11:57 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import <VideoToolbox/VideoToolbox.h>
|
|
|
|
#import <AVFoundation/AVFoundation.h>
|
2018-07-18 07:10:22 +00:00
|
|
|
#import <CoreVideo/CoreVideo.h>
|
|
|
|
|
|
|
|
#define FRAME_HISTORY_ENTRIES 8
|
2018-07-16 01:11:57 +00:00
|
|
|
|
2018-07-18 03:00:16 +00:00
|
|
|
class VTRenderer : public IFFmpegRenderer
|
2018-07-16 01:11:57 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
VTRenderer()
|
|
|
|
: m_HwContext(nullptr),
|
|
|
|
m_DisplayLayer(nullptr),
|
|
|
|
m_FormatDesc(nullptr),
|
2018-07-18 07:10:22 +00:00
|
|
|
m_View(nullptr),
|
|
|
|
m_DisplayLink(nullptr),
|
|
|
|
m_FrameQueueLock(0)
|
2018-07-16 01:11:57 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~VTRenderer()
|
|
|
|
{
|
|
|
|
if (m_HwContext != nullptr) {
|
|
|
|
av_buffer_unref(&m_HwContext);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_FormatDesc != nullptr) {
|
|
|
|
CFRelease(m_FormatDesc);
|
|
|
|
}
|
2018-07-18 07:10:22 +00:00
|
|
|
|
|
|
|
if (m_DisplayLink != nullptr) {
|
|
|
|
CVDisplayLinkStop(m_DisplayLink);
|
|
|
|
CVDisplayLinkRelease(m_DisplayLink);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (!m_FrameQueue.isEmpty()) {
|
|
|
|
AVFrame* frame = m_FrameQueue.dequeue();
|
|
|
|
av_frame_free(&frame);
|
|
|
|
}
|
2018-07-21 02:37:54 +00:00
|
|
|
|
|
|
|
if (m_View != nullptr) {
|
|
|
|
[m_View removeFromSuperview];
|
|
|
|
}
|
2018-07-18 07:10:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void drawFrame(uint64_t vsyncTime)
|
|
|
|
{
|
|
|
|
OSStatus status;
|
|
|
|
|
|
|
|
SDL_AtomicLock(&m_FrameQueueLock);
|
|
|
|
|
|
|
|
int frameDropTarget;
|
|
|
|
|
|
|
|
// If the queue length history entries are large, be strict
|
|
|
|
// about dropping excess frames.
|
|
|
|
frameDropTarget = 1;
|
|
|
|
for (int i = 0; i < m_FrameQueueHistory.count(); i++) {
|
|
|
|
if (m_FrameQueueHistory[i] <= 1) {
|
|
|
|
// Be lenient as long as the queue length
|
|
|
|
// resolves before the end of frame history
|
|
|
|
frameDropTarget = 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_FrameQueueHistory.count() == FRAME_HISTORY_ENTRIES) {
|
|
|
|
m_FrameQueueHistory.dequeue();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_FrameQueueHistory.enqueue(m_FrameQueue.count());
|
|
|
|
|
|
|
|
// Catch up if we're several frames ahead
|
|
|
|
while (m_FrameQueue.count() > frameDropTarget) {
|
|
|
|
AVFrame* frame = m_FrameQueue.dequeue();
|
|
|
|
av_frame_free(&frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_FrameQueue.isEmpty()) {
|
|
|
|
SDL_AtomicUnlock(&m_FrameQueueLock);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Grab the first frame
|
|
|
|
AVFrame* frame = m_FrameQueue.dequeue();
|
|
|
|
SDL_AtomicUnlock(&m_FrameQueueLock);
|
|
|
|
|
|
|
|
CVPixelBufferRef pixBuf = reinterpret_cast<CVPixelBufferRef>(frame->data[3]);
|
|
|
|
|
|
|
|
// If the format has changed or doesn't exist yet, construct it with the
|
|
|
|
// pixel buffer data
|
|
|
|
if (!m_FormatDesc || !CMVideoFormatDescriptionMatchesImageBuffer(m_FormatDesc, pixBuf)) {
|
|
|
|
if (m_FormatDesc != nullptr) {
|
|
|
|
CFRelease(m_FormatDesc);
|
|
|
|
}
|
|
|
|
status = CMVideoFormatDescriptionCreateForImageBuffer(kCFAllocatorDefault,
|
|
|
|
pixBuf, &m_FormatDesc);
|
|
|
|
if (status != noErr) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
|
|
|
"CMVideoFormatDescriptionCreateForImageBuffer() failed: %d",
|
|
|
|
status);
|
|
|
|
av_frame_free(&frame);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Queue this sample for the next v-sync
|
|
|
|
CMSampleTimingInfo timingInfo = {
|
|
|
|
.duration = kCMTimeInvalid,
|
|
|
|
.decodeTimeStamp = kCMTimeInvalid,
|
|
|
|
.presentationTimeStamp = CMTimeMake(vsyncTime, 1000 * 1000 * 1000)
|
|
|
|
};
|
|
|
|
|
|
|
|
CMSampleBufferRef sampleBuffer;
|
|
|
|
status = CMSampleBufferCreateReadyWithImageBuffer(kCFAllocatorDefault,
|
|
|
|
pixBuf,
|
|
|
|
m_FormatDesc,
|
|
|
|
&timingInfo,
|
|
|
|
&sampleBuffer);
|
|
|
|
if (status != noErr) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
|
|
|
"CMSampleBufferCreateReadyWithImageBuffer() failed: %d",
|
|
|
|
status);
|
|
|
|
av_frame_free(&frame);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
[m_DisplayLayer enqueueSampleBuffer:sampleBuffer];
|
|
|
|
|
|
|
|
CFRelease(sampleBuffer);
|
|
|
|
av_frame_free(&frame);
|
2018-07-16 01:11:57 +00:00
|
|
|
}
|
|
|
|
|
2018-07-18 07:10:22 +00:00
|
|
|
static
|
|
|
|
CVReturn
|
|
|
|
displayLinkOutputCallback(
|
|
|
|
CVDisplayLinkRef,
|
2018-07-19 05:25:46 +00:00
|
|
|
const CVTimeStamp* now,
|
|
|
|
const CVTimeStamp* /* vsyncTime */,
|
2018-07-18 07:10:22 +00:00
|
|
|
CVOptionFlags,
|
|
|
|
CVOptionFlags*,
|
|
|
|
void *displayLinkContext)
|
|
|
|
{
|
|
|
|
VTRenderer* me = reinterpret_cast<VTRenderer*>(displayLinkContext);
|
|
|
|
|
2018-07-19 05:25:46 +00:00
|
|
|
// In my testing on macOS 10.13, this callback is invoked about 24 ms
|
|
|
|
// prior to the specified v-sync time (now - vsyncTime). Since this is
|
|
|
|
// greater than the standard v-sync interval (16 ms = 60 FPS), we will
|
|
|
|
// draw using the current host time, rather than the actual v-sync target
|
|
|
|
// time. Because the CVDisplayLink is in sync with the actual v-sync
|
|
|
|
// interval, even if many ms prior, we can safely use the current host time
|
|
|
|
// and get a consistent callback for each v-sync. This reduces video latency
|
|
|
|
// by at least 1 frame vs. rendering with the actual vsyncTime.
|
|
|
|
me->drawFrame(now->hostTime);
|
2018-07-18 07:10:22 +00:00
|
|
|
|
|
|
|
return kCVReturnSuccess;
|
|
|
|
}
|
2018-07-16 01:11:57 +00:00
|
|
|
|
|
|
|
virtual bool initialize(SDL_Window* window,
|
|
|
|
int videoFormat,
|
|
|
|
int,
|
|
|
|
int) override
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (videoFormat & VIDEO_FORMAT_MASK_H264) {
|
|
|
|
// Prior to 10.13, we'll just assume everything has
|
|
|
|
// H.264 support and fail open to allow VT decode.
|
|
|
|
#if __MAC_OS_X_VERSION_MAX_ALLOWED >= 101300
|
|
|
|
if (__builtin_available(macOS 10.13, *)) {
|
|
|
|
if (!VTIsHardwareDecodeSupported(kCMVideoCodecType_H264)) {
|
|
|
|
SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION,
|
|
|
|
"No HW accelerated H.264 decode via VT");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION,
|
|
|
|
"Assuming H.264 HW decode on < macOS 10.13");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (videoFormat & VIDEO_FORMAT_MASK_H265) {
|
|
|
|
#if __MAC_OS_X_VERSION_MAX_ALLOWED >= 101300
|
|
|
|
if (__builtin_available(macOS 10.13, *)) {
|
|
|
|
if (!VTIsHardwareDecodeSupported(kCMVideoCodecType_HEVC)) {
|
|
|
|
SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION,
|
|
|
|
"No HW accelerated HEVC decode via VT");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
// Fail closed for HEVC if we're not on 10.13+
|
|
|
|
SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION,
|
|
|
|
"No HEVC support on < macOS 10.13");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_SysWMinfo info;
|
|
|
|
|
|
|
|
SDL_VERSION(&info.version);
|
|
|
|
|
|
|
|
if (!SDL_GetWindowWMInfo(window, &info)) {
|
|
|
|
SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION,
|
|
|
|
"SDL_GetWindowWMInfo() failed: %s",
|
|
|
|
SDL_GetError());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_assert(info.subsystem == SDL_SYSWM_COCOA);
|
|
|
|
|
|
|
|
// SDL adds its own content view to listen for events.
|
|
|
|
// We need to add a subview for our display layer.
|
|
|
|
NSView* contentView = info.info.cocoa.window.contentView;
|
|
|
|
m_View = [[NSView alloc] initWithFrame:contentView.bounds];
|
|
|
|
m_View.wantsLayer = YES;
|
|
|
|
[contentView addSubview: m_View];
|
|
|
|
|
|
|
|
setupDisplayLayer();
|
|
|
|
|
|
|
|
err = av_hwdevice_ctx_create(&m_HwContext,
|
|
|
|
AV_HWDEVICE_TYPE_VIDEOTOOLBOX,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
0);
|
|
|
|
if (err < 0) {
|
|
|
|
SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION,
|
|
|
|
"av_hwdevice_ctx_create() failed for VT decoder: %d",
|
|
|
|
err);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-07-18 07:10:22 +00:00
|
|
|
CVDisplayLinkCreateWithActiveCGDisplays(&m_DisplayLink);
|
|
|
|
CVDisplayLinkSetOutputCallback(m_DisplayLink, displayLinkOutputCallback, this);
|
|
|
|
CVDisplayLinkStart(m_DisplayLink);
|
|
|
|
|
2018-07-16 01:11:57 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool prepareDecoderContext(AVCodecContext* context) override
|
|
|
|
{
|
|
|
|
context->hw_device_ctx = av_buffer_ref(m_HwContext);
|
2018-07-28 23:06:26 +00:00
|
|
|
|
|
|
|
SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION,
|
|
|
|
"Using VideoToolbox accelerated renderer");
|
|
|
|
|
2018-07-16 01:11:57 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void renderFrame(AVFrame* frame) override
|
|
|
|
{
|
|
|
|
if (m_DisplayLayer.status == AVQueuedSampleBufferRenderingStatusFailed) {
|
|
|
|
SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION,
|
|
|
|
"Resetting failed AVSampleBufferDisplay layer");
|
|
|
|
setupDisplayLayer();
|
|
|
|
}
|
|
|
|
|
2018-07-18 07:10:22 +00:00
|
|
|
SDL_AtomicLock(&m_FrameQueueLock);
|
|
|
|
m_FrameQueue.enqueue(frame);
|
|
|
|
SDL_AtomicUnlock(&m_FrameQueueLock);
|
2018-07-16 01:11:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void setupDisplayLayer()
|
|
|
|
{
|
|
|
|
CALayer* oldLayer = m_DisplayLayer;
|
|
|
|
|
|
|
|
m_DisplayLayer = [[AVSampleBufferDisplayLayer alloc] init];
|
|
|
|
m_DisplayLayer.bounds = m_View.bounds;
|
|
|
|
m_DisplayLayer.position = CGPointMake(CGRectGetMidX(m_View.bounds), CGRectGetMidY(m_View.bounds));
|
|
|
|
m_DisplayLayer.videoGravity = AVLayerVideoGravityResizeAspect;
|
|
|
|
|
|
|
|
CALayer* viewLayer = m_View.layer;
|
|
|
|
if (oldLayer != nil) {
|
|
|
|
[viewLayer replaceSublayer:oldLayer with:m_DisplayLayer];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
[viewLayer addSublayer:m_DisplayLayer];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
AVBufferRef* m_HwContext;
|
|
|
|
AVSampleBufferDisplayLayer* m_DisplayLayer;
|
|
|
|
CMVideoFormatDescriptionRef m_FormatDesc;
|
|
|
|
NSView* m_View;
|
2018-07-18 07:10:22 +00:00
|
|
|
CVDisplayLinkRef m_DisplayLink;
|
|
|
|
QQueue<AVFrame*> m_FrameQueue;
|
|
|
|
QQueue<int> m_FrameQueueHistory;
|
|
|
|
SDL_SpinLock m_FrameQueueLock;
|
2018-07-16 01:11:57 +00:00
|
|
|
};
|
|
|
|
|
2018-07-18 03:00:16 +00:00
|
|
|
IFFmpegRenderer* VTRendererFactory::createRenderer() {
|
2018-07-16 01:11:57 +00:00
|
|
|
return new VTRenderer();
|
|
|
|
}
|