Re: XCode Compile Problem - HELP!!!
Re: XCode Compile Problem - HELP!!!
- Subject: Re: XCode Compile Problem - HELP!!!
- From: Horst Hösel <email@hidden>
- Date: Thu, 15 Feb 2007 18:19:41 +0100
Some more information. I have the following lines in my C file. The
first group works ok, the second causes a compile error, but XCode
does not show the error. Probably since it's buried deep inside
some .h files.
#if 1
crsUtilSetDictionaryNumberValue(myPixelBufferOptions,
0,thePixelFormat);
crsUtilSetDictionaryNumberValue(myPixelBufferOptions,
0,theBoundingRectPtr->size.width);
crsUtilSetDictionaryNumberValue(myPixelBufferOptions,
0,theBoundingRectPtr->size.height);
crsUtilSetDictionaryNumberValue(myPixelBufferOptions,0,16);
#else
crsUtilSetDictionaryNumberValue
(myPixelBufferOptions,kCVPixelBufferPixelFormatTypeKey,thePixelFormat)
;
crsUtilSetDictionaryNumberValue
(myPixelBufferOptions,kCVPixelBufferWidthKey,theBoundingRectPtr-
>size.width);
crsUtilSetDictionaryNumberValue
(myPixelBufferOptions,kCVPixelBufferHeightKey,theBoundingRectPtr-
>size.height);
crsUtilSetDictionaryNumberValue
(myPixelBufferOptions,kCVPixelBufferBytesPerRowAlignmentKey,16);
#endif
Just a wild guess: Look for where your
kCVPixelBufferPixelFormatTypeKey and friends come from.
HTH,
Horst
Attachment:
smime.p7s
Description: S/MIME cryptographic signature
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden