Hi,
I am trying to open a movie using the NewMovieFromDataRef api. But if the
movie URL is not found, I get a crash.
This is happening on OSX10.6.3. QT version 7.6.3. Following is the test app
that I tried. Is there any way/ api to get around this crash ?.
#include <stdio.h>
#include <QuickTime/QuickTime.h>
#include <QuickTime/Movies.h>
int main (int argc, const char * argv[]) {
Movie m = NULL;
Handle h = NULL;
short id = 0;
OSType outType;
short flags = newMovieActive;
EnterMovies();
OSErr err = QTNewDataReferenceFromURLCFString(CFSTR("
http://10.192.18.142/test.mov"),0,&h,&outType);
NewMovieFromDataRef(&m,flags,&id,h,outType) ;
ExitMovies();
return 0;
}
_______________________________________________
Cocoa-dev mailing list ([email protected])
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com
This email sent to [email protected]