Hello, i'm working in an application in symbian and a 6630 nokia phone. I want to stream video from mobile phone to pc, i achieve to send video from mobile to pc with de function CVideoRecorderUtility::OpenFileL(), opening a file a sending it after it is recorded.
TFileName filePath;
iUtility->OpenFileL(iFilePath, aCameraHandle, iControllerUid, iFormatUid);
Now i want to stream the video and i want to use CVideoRecorderUtility::OpenDesL(), but the function doesn`t work and i don't now why.
I put an extract of my code:
TBuf8<1000000> iBuffer;
CVideoRecorderUtility* iUtility;
iBuffer.FillZ();
iBuffer.Zero();
iUtility->OpenDesL(iBuffer, aCameraHandle, iControllerUid, iFormatUid);
the function MvruoOpenComplete(TInt aError) returns error -5 (KErrNotSupported)
the parameters are the same in both functions, the only change is that i want to open a descriptor instead of opening a file.
any help? thx.
Cesar

Reply With Quote

