NewMovieFromDataRef crashes when QT movie URL is not found
NewMovieFromDataRef crashes when QT movie URL is not found
- Subject: NewMovieFromDataRef crashes when QT movie URL is not found
- From: varaha murthy <email@hidden>
- Date: Tue, 27 Apr 2010 17:42:32 +0530
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@hidden)
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:
This email sent to email@hidden