// $RCSfile: hifi_pool.h,v $Revision: 1.2 $Date: 2005/03/11 15:08:57 #ifndef __HIFI_POOL_H__ #define __HIFI_POOL_H__ //-- Interface functions -------------------------------------------- extern int hifi_pool_get_block(int pool_id); extern void hifi_pool_free_block(int pool_id, int block_nr); extern int * hifi_pool_get_pointer(int pool_id, int block_no); extern void hifi_pool_init( void ); //--HRS_FRAME_POOL -------------------------------------------------- #define HRS_FRAME_POOL 0 #define HRS_FRAME_POOL_BLOCK_NR 6 #define HRS_FRAME_POOL_BLOCK_DIM 4160 //--WBS_FRAME_POOL -------------------------------------------------- #define WBS_FRAME_POOL 1 #define WBS_FRAME_POOL_BLOCK_NR 6 #define WBS_FRAME_POOL_BLOCK_DIM 8210 #endif // __HIFI_POOL_H__