Example #1
0
 public FrameContentCodecGeneric(
     IList <CodecItem> codecItems,
     TextCodecSet textCodecSet,
     Version[] supportedVersions,
     FrameDescription.FrameType type)
 {
     this.codecItems         = codecItems;
     this.state.TextCodecSet = textCodecSet;
     this.supportedVersions  = supportedVersions;
     this.type = type;
 }
Example #2
0
 public CodecDescription(Version[] versions, FrameDescription.FrameType type)
 {
     this.supportedVersions = versions;
     this.type         = type;
     this.textCodecSet = new TextCodecSet(versions);
 }