As hes mentioning in his article he wrote this code in haste and it may be kinda buggy therefore. It's not said to work everywhere at all.
Im assuming your using exactly this code to run this thing:
CameraSource cs = new SocketCamera("192.168.0.100", 9889, 320, 240, true);
if (!cs.open()) { /* deal with failure to obtain camera */ }
while(/*some condition*/) {
cs.capture(canvas) //capture the frame onto the canvas
}
cs.close();
What is, by the way, the main purpose of doing such things?
All camera aligned things should tested exhaustively on a real device, because it can cause loads of problems which does not occur at an emulator. The camera implementation of the camera is for debug/testing purposes, only!
I would strongly recommend to not spend to much time into getting this running, it won't lead you very far. It still has not been tested on a real device, though, which would be the very most important.
I hope I didn't disappoint you too much with this answer :/