public override bool Equals(object obj)
 {
     return(obj is EncoderConfig config &&
            EncoderProps.Equals(config.EncoderProps) &&
            CodecProps.Equals(config.CodecProps));
 }
Пример #2
0
 public override bool Equals(object obj)
 {
     return(obj is DecoderConfig config &&
            CodecProperties.Equals(config.CodecProperties) &&
            DecoderProperties.Equals(config.DecoderProperties));
 }