So, I am attempting to process every frame of a movie using QTMovie and have a loop that looks like this:
while (QTTimeCompare([myMovie currentTime], [myMovie duration]) != NSOrderedSame)
{
// I do some stuff with some things
[myMovie stepForward];
}
And it works just fine, but...