On a sample program; arrayOP_DM648.pjt, in VIPC Signal Processing Ligrary,
I changed WIDHT,HEIGHT,BLOCK_WIDTH, BLOCK_HEIGHT as following.
/* Local defines for the test file */#define BLOCK_WIDTH 50#if defined(_DM365) || defined(_DM355)
#define BLOCK_HEIGHT 16 /* DM3xx platforms have half VICP internal memory than DM64xx */
#else
#define BLOCK_HEIGHT 10
#endif#define WIDTH (BLOCK_WIDTH*1)
#define HEIGHT (BLOCK_HEIGHT*5)
The result was shown "Mismatch component #0, offset 1400 Verification failed !"
I suppose these setting values are less than the maximum data size.
Are there any limitations for the value?