mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-01 15:26:09 +00:00
12 lines
211 B
C++
12 lines
211 B
C++
#pragma once
|
|
|
|
#include "decoder.h"
|
|
|
|
// A factory is required to avoid pulling in
|
|
// incompatible Objective-C headers.
|
|
class AVFoundationDecoderFactory {
|
|
public:
|
|
static
|
|
IVideoDecoder* createDecoder();
|
|
};
|