Putting stream into a decoder filter across network
I have a Camera -> VFW Encoder -> NULL Renderer on the client side.. my VFW encoder would also send the encoded stream to a network client and is thus my network source.
Now at the client side.. I need to somehow insert this stream to the VFW Decoder
this can be done as
== Push Source -> Decoder -> Renderer
or
== Decoder -> Renderer
How do I achieve the part of inserting the stream into the push source or the decoder. and Can i somehow insert it in the decoder directly?

