All the above mentioned functions are returning null when I debug the programs. The file paths are correct. This happened after I reinstalled VS2010.
I used this code to check ...
int main() {
CvCapture *capture;
//capture = cvCaptureFromAVI("Cricketc1.avi"); //does not work
capture = cvCaptureFromFile("drawingroom.flv"); //does not work
//capture = cvCaptureFromCAM(0); //works
IplImage *image = NULL;
cvNamedWindow("video", 0);
//while (1)
while (cvQueryFrame(capture)) {
image = cvQueryFrame(capture);
if (image)
cvShowImage("video", image);
cvWaitKey(40);
}
return 0;
}
The window "video" closes as soon as the control enters the while loop ...
Even cvLoadImage() is not working.
How should I correct it ??

D:\\something.avi. – cyriel Dec 24 '12 at 23:50