示例#1
0
 public void UnregisterCodec(Codec codec)
 {
     this._mapCodecs.TryRemove(codec.Type);
 }
示例#2
0
		public void UnregisterCodec( Codec codec )
		{
			this._mapCodecs.TryRemove( codec.Type );
		}
示例#3
0
		public override void EncodeToFile( Stream input, string outFileName, Codec.CodecData data )
		{
			return;
		}
示例#4
0
		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;
		}
示例#5
0
		public override Stream Encode( Stream input, Codec.CodecData data )
		{
			return null;
		}