public CodecInfoWithAttributes(CodecInfo info) : this()
 {
     this.Info = info;
 }
Exemple #2
0
 public bool Equals(CodecInfo other) =>
 (Equals(this.type, other.type) && (this.optional == other.optional)) && (this.varied == other.varied);