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