Hi,
I have developed an image and video capturing application for my N95, by using the Camera Application Engine API example given at :
http://wiki.forum.nokia.com/index.ph...ion_Engine_API
I have given camera index as :
The camera index is 0 for primary (back) camera and 1 for the secondary (front) camera.Code:void CCamEngine::ConstructL(TInt aCameraIndex) { iCaeEngine=CCaeEngine::NewL(aCameraIndex); iCaeEngine->SetCamAppEngineObserver(*this); iCaeEngine->InitL(); }
It works for :
1. Video Capturing from primary camera
2. Video Capturing from secondary camera
3. Image Capturing from primary camera
But it does not work for :
4. Image Capturing from secondary camera
I have changed nothing else. My N95 default camera application can capture image from secondary camera. But my application stucks when I call :
I don't know what else do I need to do.Code:iCaeEngine=CCaeEngine::NewL(1);
Any idea please?
Thanks.
Regards.

Reply With Quote

