Home
last modified time | relevance | path

Searched refs:allocator_class (Results 1 – 25 of 28) sorted by relevance

12

/third_party/gstreamer/gstreamer/tests/examples/memory/
Dmy-memory.c132 GstAllocatorClass *allocator_class; in my_memory_allocator_class_init() local
134 allocator_class = (GstAllocatorClass *) klass; in my_memory_allocator_class_init()
136 allocator_class->alloc = _my_alloc; in my_memory_allocator_class_init()
137 allocator_class->free = _my_free; in my_memory_allocator_class_init()
Dmy-vidmem.c127 GstAllocatorClass *allocator_class; in my_vidmem_allocator_class_init() local
129 allocator_class = (GstAllocatorClass *) klass; in my_vidmem_allocator_class_init()
131 allocator_class->alloc = _my_alloc; in my_vidmem_allocator_class_init()
132 allocator_class->free = _my_free; in my_vidmem_allocator_class_init()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/allocators/
Dgstfdmemory.c209 GstAllocatorClass *allocator_class; in gst_fd_allocator_class_init() local
211 allocator_class = (GstAllocatorClass *) klass; in gst_fd_allocator_class_init()
213 allocator_class->alloc = NULL; in gst_fd_allocator_class_init()
214 allocator_class->free = gst_fd_mem_free; in gst_fd_allocator_class_init()
/third_party/gstreamer/gstplugins_bad/sys/vdpau/
Dgstvdpvideomemory.c251 GstAllocatorClass *allocator_class; in gst_vdp_video_allocator_class_init() local
253 allocator_class = (GstAllocatorClass *) klass; in gst_vdp_video_allocator_class_init()
255 allocator_class->alloc = _vdp_video_mem_alloc; in gst_vdp_video_allocator_class_init()
256 allocator_class->free = _vdp_video_mem_free; in gst_vdp_video_allocator_class_init()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/egl/
Dgstglmemoryegl.c220 GstAllocatorClass *allocator_class; in gst_gl_memory_egl_allocator_class_init() local
224 allocator_class = (GstAllocatorClass *) klass; in gst_gl_memory_egl_allocator_class_init()
231 allocator_class->alloc = _gl_mem_alloc; in gst_gl_memory_egl_allocator_class_init()
/third_party/gstreamer/gstplugins_bad/sys/applemedia/
Dcorevideomemory.c442 GstAllocatorClass *allocator_class; in gst_apple_core_video_allocator_class_init() local
444 allocator_class = (GstAllocatorClass *) klass; in gst_apple_core_video_allocator_class_init()
447 allocator_class->alloc = NULL; in gst_apple_core_video_allocator_class_init()
448 allocator_class->free = gst_apple_core_video_mem_free; in gst_apple_core_video_allocator_class_init()
Diosglmemory.c86 GstAllocatorClass *allocator_class = (GstAllocatorClass *) klass; in gst_ios_gl_memory_allocator_class_init() local
90 allocator_class->alloc = _mem_alloc; in gst_ios_gl_memory_allocator_class_init()
Diosurfacememory.c118 GstAllocatorClass *allocator_class = (GstAllocatorClass *) klass; in gst_io_surface_memory_allocator_class_init() local
122 allocator_class->alloc = _mem_alloc; in gst_io_surface_memory_allocator_class_init()
/third_party/gstreamer/gstplugins_bad/sys/msdk/
Dgstmsdksystemmemory.c251 GstAllocatorClass *const allocator_class = GST_ALLOCATOR_CLASS (klass); in gst_msdk_system_allocator_class_init() local
253 allocator_class->alloc = gst_msdk_system_allocator_alloc; in gst_msdk_system_allocator_class_init()
254 allocator_class->free = gst_msdk_system_allocator_free; in gst_msdk_system_allocator_class_init()
Dgstmsdkvideomemory.c338 GstAllocatorClass *const allocator_class = GST_ALLOCATOR_CLASS (klass); in gst_msdk_video_allocator_class_init() local
342 allocator_class->alloc = gst_msdk_video_allocator_alloc; in gst_msdk_video_allocator_class_init()
/third_party/gstreamer/gstplugins_bad/ext/vulkan/
Dvkmemory.c305 GstAllocatorClass *allocator_class = (GstAllocatorClass *) klass; in gst_vulkan_memory_allocator_class_init() local
307 allocator_class->alloc = _vk_mem_alloc; in gst_vulkan_memory_allocator_class_init()
308 allocator_class->free = _vk_mem_free; in gst_vulkan_memory_allocator_class_init()
Dvkbuffermemory.c376 GstAllocatorClass *allocator_class = (GstAllocatorClass *) klass; in gst_vulkan_buffer_memory_allocator_class_init() local
378 allocator_class->alloc = _vk_buffer_mem_alloc; in gst_vulkan_buffer_memory_allocator_class_init()
379 allocator_class->free = _vk_buffer_mem_free; in gst_vulkan_buffer_memory_allocator_class_init()
Dvkimagememory.c516 GstAllocatorClass *allocator_class = (GstAllocatorClass *) klass; in gst_vulkan_image_memory_allocator_class_init() local
518 allocator_class->alloc = _vk_image_mem_alloc; in gst_vulkan_image_memory_allocator_class_init()
519 allocator_class->free = _vk_image_mem_free; in gst_vulkan_image_memory_allocator_class_init()
/third_party/gstreamer/gstreamer/gst/
Dgstallocator.c549 GstAllocatorClass *allocator_class; in gst_allocator_sysmem_class_init() local
552 allocator_class = (GstAllocatorClass *) klass; in gst_allocator_sysmem_class_init()
556 allocator_class->alloc = default_alloc; in gst_allocator_sysmem_class_init()
557 allocator_class->free = default_free; in gst_allocator_sysmem_class_init()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/
Dgstglrenderbuffer.c211 GstAllocatorClass *allocator_class; in gst_gl_renderbuffer_allocator_class_init() local
214 allocator_class = (GstAllocatorClass *) klass; in gst_gl_renderbuffer_allocator_class_init()
221 allocator_class->alloc = _gl_rbo_alloc; in gst_gl_renderbuffer_allocator_class_init()
Dgstglbasememory.c516 GstAllocatorClass *allocator_class = (GstAllocatorClass *) klass; in gst_gl_base_memory_allocator_class_init() local
518 allocator_class->alloc = _mem_alloc; in gst_gl_base_memory_allocator_class_init()
519 allocator_class->free = _mem_free; in gst_gl_base_memory_allocator_class_init()
Dgstglbuffer.c421 GstAllocatorClass *allocator_class = (GstAllocatorClass *) klass; in gst_gl_buffer_allocator_class_init() local
434 allocator_class->alloc = _gl_buffer_alloc; in gst_gl_buffer_allocator_class_init()
Dgstglmemorypbo.c667 GstAllocatorClass *allocator_class; in gst_gl_memory_pbo_allocator_class_init() local
671 allocator_class = (GstAllocatorClass *) klass; in gst_gl_memory_pbo_allocator_class_init()
680 allocator_class->alloc = _gl_mem_alloc; in gst_gl_memory_pbo_allocator_class_init()
/third_party/gstreamer/gstplugins_good/tests/check/elements/
Drtph265.c118 GstAllocatorClass allocator_class; member
147 GstAllocatorClass *allocator_class = (GstAllocatorClass *) klass; in custom_sysmem_allocator_class_init() local
149 allocator_class->alloc = custom_sysmem_allocator_alloc; in custom_sysmem_allocator_class_init()
150 allocator_class->free = custom_sysmem_allocator_free; in custom_sysmem_allocator_class_init()
Drtph264.c116 GstAllocatorClass allocator_class; member
145 GstAllocatorClass *allocator_class = (GstAllocatorClass *) klass; in custom_sysmem_allocator_class_init() local
147 allocator_class->alloc = custom_sysmem_allocator_alloc; in custom_sysmem_allocator_class_init()
148 allocator_class->free = custom_sysmem_allocator_free; in custom_sysmem_allocator_class_init()
/third_party/gstreamer/gstplugins_base/sys/ximage/
Dximagepool.c187 GstAllocatorClass *allocator_class; in ximage_memory_allocator_class_init() local
189 allocator_class = (GstAllocatorClass *) klass; in ximage_memory_allocator_class_init()
191 allocator_class->alloc = gst_ximage_memory_alloc; in ximage_memory_allocator_class_init()
192 allocator_class->free = gst_ximage_memory_free; in ximage_memory_allocator_class_init()
/third_party/gstreamer/gstplugins_base/sys/xvimage/
Dxvimageallocator.c281 GstAllocatorClass *allocator_class; in gst_xvimage_allocator_class_init() local
284 allocator_class = (GstAllocatorClass *) klass; in gst_xvimage_allocator_class_init()
288 allocator_class->alloc = gst_xvimage_allocator_dummy_alloc; in gst_xvimage_allocator_class_init()
289 allocator_class->free = gst_xvimage_allocator_free; in gst_xvimage_allocator_class_init()
/third_party/gstreamer/gstreamer/tests/check/gst/
Dgstmemory.c648 GstAllocatorClass *allocator_class; in my_opaque_memory_allocator_class_init() local
650 allocator_class = (GstAllocatorClass *) klass; in my_opaque_memory_allocator_class_init()
652 allocator_class->alloc = _my_opaque_alloc; in my_opaque_memory_allocator_class_init()
653 allocator_class->free = _my_opaque_free; in my_opaque_memory_allocator_class_init()
/third_party/gstreamer/gstplugins_bad/sys/kms/
Dgstkmsallocator.c324 GstAllocatorClass *allocator_class; in gst_kms_allocator_class_init() local
326 allocator_class = GST_ALLOCATOR_CLASS (klass); in gst_kms_allocator_class_init()
329 allocator_class->free = gst_kms_allocator_free; in gst_kms_allocator_class_init()
/third_party/gstreamer/gstplugins_bad/sys/shm/
Dgstshmsink.c325 GstAllocatorClass *allocator_class = GST_ALLOCATOR_CLASS (klass); in gst_shm_sink_allocator_class_init() local
328 allocator_class->alloc = gst_shm_sink_allocator_alloc; in gst_shm_sink_allocator_class_init()
329 allocator_class->free = gst_shm_sink_allocator_free; in gst_shm_sink_allocator_class_init()

12