I have an IP Camera, which gives images in jpeg format and this is the function for obtaining the image.
Int32 GetImage(byte[] data, ref uint size);
The image is stored in “data”(byte array).
So I need to know
1. How this can be rendered as video using DirectShow?
2. I have to render this to multiple monitor also, so I have to use any particular filter for acheiving this?
consider me as a beginner.
Thanks in advance
Int32 GetImage(byte[] data, ref uint size);
The image is stored in “data”(byte array).
So I need to know
1. How this can be rendered as video using DirectShow?
2. I have to render this to multiple monitor also, so I have to use any particular filter for acheiving this?
consider me as a beginner.
Thanks in advance
Comment