Navigation
API > API/Plugins > API/Plugins/AVCodecsCore > API/Plugins/AVCodecsCore/TAVCoder_TDomain_void_void
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static bool IsSupported () |
Checks if any coder can be created to match this combination of resource and configuration. | AVCoder.h | |
static bool IsSupported
(
TSharedRef< FAVDevice > const& NewDevice, |
Checks if any coder can be created to match this combination of resource and configuration. | AVCoder.h |
IsSupported()
Description
Checks if any coder can be created to match this combination of resource and configuration. This does NOT check the device or desired configuration, so all potential coders may still reject being created.
| Name | IsSupported |
| Type | function |
| Header File | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVCoder.h |
| Include Path | #include "AVCoder.h" |
template<typename TResource, typename TConfig>
static bool IsSupported()
True if a coder could be created.
Parameters
| Name | Remarks |
|---|---|
| TResource | Type of AVResource the coder will support. |
| TConfig | Type of AVConfig the coder will support. |
IsSupported(TSharedRef< FAVDevice > const &, TSharedRef< FAVInstance > const &)
Description
Checks if any coder can be created to match this combination of resource and configuration.
| Name | IsSupported |
| Type | function |
| Header File | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVCoder.h |
| Include Path | #include "AVCoder.h" |
template<typename TResource, typename TConfig>
static bool IsSupported
(
TSharedRef < FAVDevice > const & NewDevice,
TSharedRef < FAVInstance > const & NewInstance
)
True if a coder could be created.
Parameters
| Name | Remarks |
|---|---|
| TResource | Type of AVResource the coder will support. |
| TConfig | Type of AVConfig the coder will support. |
| NewDevice | Device to filter the coder against, and to open it with. |
| NewInstance | Instance to filter the coder against, and to open it with. |