Data Types and Structures

Rectangle Plane

The following structure is defined in Intel IPP to represent a rectangle:

	typedef structure _IppiRect {
		int 	x;
		int 	y;
		int 	width;
		int 	height;	
} 

Block Type

The following enumeration indicates the block type:

enum {
    IPPVC_BLOCK_LUMA,
    IPPVC_BLOCK_CHROMA
};

Sprite Type

The following enumeration indicates the sprite type:

enum {
    IPPVC_SPRITE_STATIC = 1,
    IPPVC_SPRITE_GMC = 2
};

Submit feedback on this help topic

Copyright © 2000 - 2010, Intel Corporation. All rights reserved.