mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-07 01:52:46 +08:00
[vpu_api]: integrate vpu_mem interface to vpu_api.h
git-svn-id: https://10.10.10.66:8443/svn/MediaProcessPlatform/trunk/mpp@85 6e48237b-75ef-9749-8fc9-41990f28c85a
This commit is contained in:
@@ -240,3 +240,59 @@ RK_S32 vpu_close_context(VpuCodecContext **ctx)
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
RK_S32 VPUMallocLinear(VPUMemLinear_t *p, RK_U32 size)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
RK_S32 VPUFreeLinear(VPUMemLinear_t *p)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
RK_S32 VPUMemDuplicate(VPUMemLinear_t *dst, VPUMemLinear_t *src)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
RK_S32 VPUMemLink(VPUMemLinear_t *p)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
RK_S32 VPUMemFlush(VPUMemLinear_t *p)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
RK_S32 VPUMemClean(VPUMemLinear_t *p)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
RK_S32 VPUMemInvalidate(VPUMemLinear_t *p)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
vpu_display_mem_pool* open_vpu_memory_pool()
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void close_vpu_memory_pool(vpu_display_mem_pool *p)
|
||||
{
|
||||
}
|
||||
|
||||
int create_vpu_memory_pool_allocator(vpu_display_mem_pool **ipool, int num, int size)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void release_vpu_memory_pool_allocator(vpu_display_mem_pool *ipool)
|
||||
{
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user