ParseAIFFHeader broken in 10.3 ?
ParseAIFFHeader broken in 10.3 ?
- Subject: ParseAIFFHeader broken in 10.3 ?
- From: Les Producteurs <email@hidden>
- Date: Mon, 3 Nov 2003 10:58:11 +0100
Hi all,
Does anybody have troubles with ParseAIFFHeader function in 10.3 ?
It's seems not working for me any more (spinning wheel for long time
and woes)
here is a short excerpt of the code (works fine in 10.2)
Notice: i' m using this code in a Cocoa Application with Carbon
framework.
....
OSErr err;
SoundComponentData info;
unsigned long numFrames;
unsigned long dataOffset;
short fileRef;
err = FSpOpenDF( &spec, fsRdPerm, &fileRef );
if (err == noErr) {
err = ParseAIFFHeader( fileRef, &info, &numFrames, &dataOffset);
FSClose( fileRef );
if (err== noErr) {
.....
}
}
Thanks for help...
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.