Navigation
API > API/Plugins > API/Plugins/AVCodecsCore > API/Plugins/AVCodecsCore/FAVExtension > API/Plugins/AVCodecsCore/FAVExtension/TransformConfig
References
| Module | AVCodecsCore |
| Header | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVExtension.h |
| Include | #include "AVExtension.h" |
template<typename TOutput, typename TInput, typename TEnableIf< TOr< TIsSameHack< TInput, TOutput >, TNot< TIsDerivedFrom< TOutput, TInput >>>::Value, int >::type>
static FAVResult TransformConfig
&40;
TOutput & OutConfig,
TInput const & InConfig
&41;
Remarks
Transform one configuration type into another. Naive implementation is provided that uses the assignment operator, but it can be explicitly specialized. Result of the operation,
Parameters
| Name | Description |
|---|---|
| TOutput | Config type to convert to. |
| TInput | Config type to convert from. |
| OutConfig | The config to write to. |
| InConfig | The config to read from. |