now i create 16 dec D1 ch,then i delete ch0 and create cho with resolution 1080P,the app run normally
but when i exit and run the app again it will have the error following,so why?and fix it
[m3vpss ] 66044: Assertion @ Line: 1429 in utils/src/tile_alg_binpack.c: tileAllocCfg->initDone : failed !!!
in my dec create link i set the following parameters:
tilerEnable = FALSE;
if (tilerEnable == FALSE)
{
/* Disable tiler allocator for this usecase
* for that tiler memory can be reused for
* non-tiled allocation
*/
SystemTiler_disableAllocator();
}
else
{
SystemTiler_BucketGeometry_t bucketRes;
bucketRes.bucketWidth = SYSTEM_TILER_ALLOCATOR_BUCKET_WIDTH_DEFAULT;
bucketRes.bucketHeight = SYSTEM_TILER_ALLOCATOR_BUCKET_HEIGHT_DEFAULT;
bucketRes.minResolution = SYSTEM_TILER_RESOLUTION_CIF;
bucketRes.setSingleBucketGeometry = FALSE;
SystemTiler_setBucketGeometry(&bucketRes);
}