Home
last modified time | relevance | path

Searched refs:MppBufferInfo (Results 1 – 19 of 19) sorted by relevance

/OK3568_Linux_fs/external/mpp/osal/inc/
H A Dmpp_allocator.h35 MPP_RET (*alloc)(MppAllocator allocator, MppBufferInfo *data);
36 MPP_RET (*free)(MppAllocator allocator, MppBufferInfo *data);
37 MPP_RET (*import)(MppAllocator allocator, MppBufferInfo *data);
38 MPP_RET (*release)(MppAllocator allocator, MppBufferInfo *data);
39 MPP_RET (*mmap)(MppAllocator allocator, MppBufferInfo *data);
/OK3568_Linux_fs/external/mpp/osal/allocator/
H A Dallocator_std.c44 static MPP_RET allocator_std_alloc(void *ctx, MppBufferInfo *info) in allocator_std_alloc()
57 static MPP_RET allocator_std_free(void *ctx, MppBufferInfo *info) in allocator_std_free()
65 static MPP_RET allocator_std_import(void *ctx, MppBufferInfo *info) in allocator_std_import()
76 static MPP_RET allocator_std_release(void *ctx, MppBufferInfo *info) in allocator_std_release()
88 static MPP_RET allocator_std_mmap(void *ctx, MppBufferInfo *info) in allocator_std_mmap()
H A Dallocator_ext_dma.c51 static MPP_RET allocator_ext_dma_alloc(void *ctx, MppBufferInfo *info) in allocator_ext_dma_alloc()
61 static MPP_RET allocator_ext_dma_free(void *ctx, MppBufferInfo *info) in allocator_ext_dma_free()
71 static MPP_RET allocator_ext_dma_import(void *ctx, MppBufferInfo *info) in allocator_ext_dma_import()
85 static MPP_RET allocator_ext_dma_mmap(void *ctx, MppBufferInfo *info) in allocator_ext_dma_mmap()
110 static MPP_RET allocator_ext_dma_release(void *ctx, MppBufferInfo *info) in allocator_ext_dma_release()
H A Dallocator_dma_heap.c204 static MPP_RET os_allocator_dma_heap_alloc(void *ctx, MppBufferInfo *info) in os_allocator_dma_heap_alloc()
229 static MPP_RET os_allocator_dma_heap_import(void *ctx, MppBufferInfo *data) in os_allocator_dma_heap_import()
247 static MPP_RET os_allocator_dma_heap_free(void *ctx, MppBufferInfo *data) in os_allocator_dma_heap_free()
292 static MPP_RET os_allocator_dma_heap_mmap(void *ctx, MppBufferInfo *data) in os_allocator_dma_heap_mmap()
H A Dallocator_drm.c176 static MPP_RET os_allocator_drm_alloc(void *ctx, MppBufferInfo *info) in os_allocator_drm_alloc()
217 static MPP_RET os_allocator_drm_import(void *ctx, MppBufferInfo *data) in os_allocator_drm_import()
240 static MPP_RET os_allocator_drm_free(void *ctx, MppBufferInfo *data) in os_allocator_drm_free()
290 static MPP_RET os_allocator_drm_mmap(void *ctx, MppBufferInfo *data) in os_allocator_drm_mmap()
H A Dallocator_ion.c354 static MPP_RET allocator_ion_alloc(void *ctx, MppBufferInfo *info) in allocator_ion_alloc()
387 static MPP_RET allocator_ion_import(void *ctx, MppBufferInfo *data) in allocator_ion_import()
411 static MPP_RET allocator_ion_mmap(void *ctx, MppBufferInfo *data) in allocator_ion_mmap()
430 static MPP_RET allocator_ion_free(void *ctx, MppBufferInfo *data) in allocator_ion_free()
/OK3568_Linux_fs/external/mpp/osal/
H A Dmpp_allocator.cpp42 MppBufferInfo *info, in mpp_allocator_api_wrapper()
85 static MPP_RET mpp_allocator_alloc(MppAllocator allocator, MppBufferInfo *info) in mpp_allocator_alloc()
90 static MPP_RET mpp_allocator_free(MppAllocator allocator, MppBufferInfo *info) in mpp_allocator_free()
95 static MPP_RET mpp_allocator_import(MppAllocator allocator, MppBufferInfo *info) in mpp_allocator_import()
101 MppBufferInfo *info) in mpp_allocator_release()
106 static MPP_RET mpp_allocator_mmap(MppAllocator allocator, MppBufferInfo *info) in mpp_allocator_mmap()
H A Dos_allocator.h22 typedef MPP_RET (*OsAllocatorFunc)(void *ctx, MppBufferInfo *info);
/OK3568_Linux_fs/external/mpp/inc/
H A Dmpp_buffer.h188 } MppBufferInfo; typedef
287 MPP_RET mpp_buffer_import_with_tag(MppBufferGroup group, MppBufferInfo *info, MppBuffer *buffer,
294 MPP_RET mpp_buffer_info_get_with_caller(MppBuffer buffer, MppBufferInfo *info, const char *caller);
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/mpp/include/rockchip/
H A Dmpp_buffer.h188 } MppBufferInfo; typedef
287 MPP_RET mpp_buffer_import_with_tag(MppBufferGroup group, MppBufferInfo *info, MppBuffer *buffer,
294 MPP_RET mpp_buffer_info_get_with_caller(MppBuffer buffer, MppBufferInfo *info, const char *caller);
/OK3568_Linux_fs/external/mpp/mpp/base/inc/
H A Dmpp_buffer_impl.h95 MppBufferInfo info;
194 …reate(const char *tag, const char *caller, MppBufferGroupImpl *group, MppBufferInfo *info, MppBuff…
/OK3568_Linux_fs/external/mpp/mpp/base/
H A Dmpp_buffer.cpp25 MPP_RET mpp_buffer_import_with_tag(MppBufferGroup group, MppBufferInfo *info, MppBuffer *buffer, in mpp_buffer_import_with_tag()
82 MppBufferInfo info = { in mpp_buffer_get_with_tag()
261 MPP_RET mpp_buffer_info_get_with_caller(MppBuffer buffer, MppBufferInfo *info, const char *caller) in mpp_buffer_info_get_with_caller()
H A Dmpp_buffer_impl.cpp36 typedef MPP_RET (*BufferOp)(MppAllocator allocator, MppBufferInfo *data);
343 MppBufferGroupImpl *group, MppBufferInfo *info, in mpp_buffer_create()
/OK3568_Linux_fs/external/mpp/mpp/legacy/
H A Dvpu_mem_legacy.c39 MppBufferInfo info; in commit_memory_handle()
43 memset(&info, 0, sizeof(MppBufferInfo)); in commit_memory_handle()
H A Dvpu_api_legacy.cpp697 MppBufferInfo inputCommit; in decode()
729 MppBufferInfo outputCommit; in decode()
1095 MppBufferInfo inputCommit; in encode()
1128 MppBufferInfo outputCommit; in encode()
1361 MppBufferInfo inputCommit; in encoder_sendframe()
/OK3568_Linux_fs/external/mpp/utils/
H A Dcamera_source.c252 MppBufferInfo info; in camera_source_init()
253 memset(&info, 0, sizeof(MppBufferInfo)); in camera_source_init()
/OK3568_Linux_fs/external/mpp/mpp/base/test/
H A Dmpp_buffer_test.c40 MppBufferInfo commit; in main()
/OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_demo/utils/
H A Dmpp_encoder.cpp733 MppBufferInfo info; in ImportBuffer()
734 memset(&info, 0, sizeof(MppBufferInfo)); in ImportBuffer()
/OK3568_Linux_fs/external/gstreamer-rockchip/gst/rockchipmpp/
H A Dgstmppallocator.c132 MppBufferInfo info = { 0, }; in gst_mpp_allocator_import_dmafd()