Here's the problem, I am working on a little project on the iPhone with OpenGL ES. I started with Brad Larson's ColorTracking App (Big thanks to Brad for providing it) and tuned it to my needs.
Everything is working fine, however, when I use the kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange for the kCVPixelBufferPixelFormatTypeKey in my AVCaptureVideoDataOutput, since I'll be working on greyscale images and don't need any colors anyway, the resulted image on the screen is translated along the y-axis, and the part which goes off-screen is rendered on the top:
Here is a a screenshot:

Of course you need to change the data type in the glTexImage2D call from GL_RGBA to GL_LUMINANCE for this to work.
This behavior doesn't occur using the GL_RGBA texture from a kCVPixelFormatType_32BGRA capture session.
Does anyone know why this happens, and how to fix this? Any help is much appreciated.