Navigation
API > API/Plugins > API/Plugins/AVCodecsCore > API/Plugins/AVCodecsCore/FAVExtension
Description
Transform one configuration type into another. Naive implementation is provided that uses the assignment operator, but it can be explicitly specialized.
| Name | TransformConfig |
| Type | function |
| Header File | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVExtension.h |
| Include Path | #include "AVExtension.h" |
template<typename OutputType, typename InputType>
static FAVResult TransformConfig
(
OutputType & OutConfig,
InputType const & InConfig
)
Result of the operation,
Parameters
| Name | Remarks |
|---|---|
| OutputType | Config type to convert to. |
| InputType | Config type to convert from. |
| OutConfig | The config to write to. |
| InConfig | The config to read from. |