Navigation
API > API/Plugins > API/Plugins/AVCodecsCore > API/Plugins/AVCodecsCore/FAVExtension
Description
Transform one resource type into another. Implementation is deleted, so it must be explicitly specialized to exist.
| Name | TransformResource |
| Type | function |
| Header File | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVExtension.h |
| Include Path | #include "AVExtension.h" |
template<typename TOutput, typename TInput>
static FAVResult TransformResource
(
TSharedPtr < TOutput > & OutResource,
TSharedPtr < TInput > const & InResource
)
Result of the operation,
Parameters
| Name | Remarks |
|---|---|
| TOutput | Resource type to convert to. |
| TInput | Resource type to convert from. |
| OutResource | The resource to write to. |
| InResource | The resource to read from. |