public void UnregisterCodec(Codec codec) { this._mapCodecs.TryRemove(codec.Type); }
public void UnregisterCodec( Codec codec ) { this._mapCodecs.TryRemove( codec.Type ); }
public override void EncodeToFile( Stream input, string outFileName, Codec.CodecData data ) { return; }
public void RegisterCodec( Codec codec ) { if ( this._mapCodecs.ContainsKey( codec.Type ) ) { throw new AxiomException( "{0} already has a registered codec.", codec.Type ); } this._mapCodecs[ codec.Type ] = codec; }
public override Stream Encode( Stream input, Codec.CodecData data ) { return null; }