Closed rjhowell44 closed 2 months ago
All Encode Sinks are to be updated to support software Encoding (#1273 ), and with this change the symbolic constants below:
#define DSL_CODEC_H264 0 #define DSL_CODEC_H265 1
will be replaced with the following Encoder constants
#define DSL_ENCODER_HW_H264 0 #define DSL_ENCODER_HW_H265 1 #define DSL_ENCODER_SW_H264 2 #define DSL_ENCODER_SW_H265 3 #define DSL_ENCODER_SW_MPEG4 4
The parameter name to set the encoder type is currently called codec which is not accurate and should be updated to encoder
codec
encoder
All Encode Sinks are to be updated to support software Encoding (#1273 ), and with this change the symbolic constants below:
will be replaced with the following Encoder constants
The parameter name to set the encoder type is currently called
codec
which is not accurate and should be updated toencoder