Log in

View Full Version : Writing Plugins again


Si
31st August 2002, 13:28
Is the bitmap presented internally to Avisynth plugins "upsidedown" compared to the one presented internally in VirtualDub.

(or am I getting in a right mess with my code :confused: )

dividee
31st August 2002, 14:30
For RGB bitmaps, the first scanline is at bottom. So the ordering is bottom-up. I think this is also the case in VirtualDub, as it is the standard for Windows RGB bitmaps.
For YUV bitmaps, the first scanline is the top one (top-down).

Si
31st August 2002, 16:43
Thanks for clearing that up for me.
regards
Simon