int fgdetect_buffer(Buffer_Handle hInBuf,Buffer_Handle hOutBuf)
{
Int8 *inbuf;
//Int8 *outbuf;
it does not work ,how to access the data in the buffer? i want to process the data in the buffer and turn it to the outbuffer
inbuf = Buffer_getUserPtr( hInBuf);
//outbuf = Buffer_getUserPtr( hOntBuf);
Buffer_print(hInBuf);
Buffer_setUserPtr( hOutBuf,inbuf);
return 0;
}