| Copyright | Will Thompson, Iñaki García Etxebarria and Jonas Platte |
|---|---|
| License | LGPL-2.1 |
| Maintainer | Iñaki García Etxebarria (garetxe@gmail.com) |
| Safe Haskell | None |
| Language | Haskell2010 |
GI.Gst.Structs.Memory
Contents
Description
GstMemory is a lightweight refcounted object that wraps a region of memory. They are typically used to manage the data of a #GstBuffer.
A GstMemory object has an allocated region of memory of maxsize. The maximum size does not change during the lifetime of the memory object. The memory also has an offset and size property that specifies the valid range of memory in the allocated region.
Memory is usually created by allocators with a gst_allocator_alloc() method call. When %NULL is used as the allocator, the default allocator will be used.
New allocators can be registered with gst_allocator_register(). Allocators are identified by name and can be retrieved with gst_allocator_find(). gst_allocator_set_default() can be used to change the default allocator.
New memory can be created with gst_memory_new_wrapped() that wraps the memory allocated elsewhere.
Refcounting of the memory block is performed with gst_memory_ref() and gst_memory_unref().
The size of the memory can be retrieved and changed with gst_memory_get_sizes() and gst_memory_resize() respectively.
Getting access to the data of the memory is performed with gst_memory_map(). The call will return a pointer to offset bytes into the region of memory. After the memory access is completed, gst_memory_unmap() should be called.
Memory can be copied with gst_memory_copy(), which will return a writable copy. gst_memory_share() will create a new memory block that shares the memory with an existing memory block at a custom offset and with a custom size.
Memory can be efficiently merged when gst_memory_is_span() returns %TRUE.
- newtype Memory = Memory (ManagedPtr Memory)
- newZeroMemory :: MonadIO m => m Memory
- noMemory :: Maybe Memory
- data MemoryCopyMethodInfo
- memoryCopy :: MonadIO m => Memory -> Int64 -> Int64 -> m Memory
- data MemoryGetSizesMethodInfo
- memoryGetSizes :: MonadIO m => Memory -> Word64 -> Word64 -> m Word64
- data MemoryIsSpanMethodInfo
- memoryIsSpan :: MonadIO m => Memory -> Memory -> Word64 -> m Bool
- data MemoryIsTypeMethodInfo
- memoryIsType :: MonadIO m => Memory -> Text -> m Bool
- data MemoryMakeMappedMethodInfo
- memoryMakeMapped :: MonadIO m => Memory -> [MapFlags] -> m (Maybe Memory, MapInfo)
- data MemoryMapMethodInfo
- memoryMap :: MonadIO m => Memory -> [MapFlags] -> m (Bool, MapInfo)
- memoryNewWrapped :: MonadIO m => [MemoryFlags] -> ByteString -> Word64 -> Word64 -> Maybe DestroyNotify -> m Memory
- data MemoryResizeMethodInfo
- memoryResize :: MonadIO m => Memory -> Int64 -> Word64 -> m ()
- data MemoryShareMethodInfo
- memoryShare :: MonadIO m => Memory -> Int64 -> Int64 -> m Memory
- data MemoryUnmapMethodInfo
- memoryUnmap :: MonadIO m => Memory -> MapInfo -> m ()
- getMemoryAlign :: MonadIO m => Memory -> m Word64
- memory_align :: AttrLabelProxy "align"
- setMemoryAlign :: MonadIO m => Memory -> Word64 -> m ()
- clearMemoryAllocator :: MonadIO m => Memory -> m ()
- getMemoryAllocator :: MonadIO m => Memory -> m (Maybe Allocator)
- memory_allocator :: AttrLabelProxy "allocator"
- setMemoryAllocator :: MonadIO m => Memory -> Ptr Allocator -> m ()
- getMemoryMaxsize :: MonadIO m => Memory -> m Word64
- memory_maxsize :: AttrLabelProxy "maxsize"
- setMemoryMaxsize :: MonadIO m => Memory -> Word64 -> m ()
- getMemoryMiniObject :: MonadIO m => Memory -> m MiniObject
- memory_miniObject :: AttrLabelProxy "miniObject"
- getMemoryOffset :: MonadIO m => Memory -> m Word64
- memory_offset :: AttrLabelProxy "offset"
- setMemoryOffset :: MonadIO m => Memory -> Word64 -> m ()
- clearMemoryParent :: MonadIO m => Memory -> m ()
- getMemoryParent :: MonadIO m => Memory -> m (Maybe Memory)
- memory_parent :: AttrLabelProxy "parent"
- setMemoryParent :: MonadIO m => Memory -> Ptr Memory -> m ()
- getMemorySize :: MonadIO m => Memory -> m Word64
- memory_size :: AttrLabelProxy "size"
- setMemorySize :: MonadIO m => Memory -> Word64 -> m ()
Exported types
Instances
| BoxedObject Memory Source # | |
| (~) AttrOpTag tag AttrSet => Constructible Memory tag Source # | |
| ((~) * info (ResolveMemoryMethod t Memory), MethodInfo * info Memory p) => IsLabel t (Memory -> p) Source # | |
| ((~) * info (ResolveMemoryMethod t Memory), MethodInfo * info Memory p) => IsLabelProxy t (Memory -> p) Source # | |
| HasAttributeList * Memory Source # | |
| ((~) * signature (MapInfo -> m ()), MonadIO m) => MethodInfo * MemoryUnmapMethodInfo Memory signature Source # | |
| ((~) * signature (Int64 -> Int64 -> m Memory), MonadIO m) => MethodInfo * MemoryShareMethodInfo Memory signature Source # | |
| ((~) * signature (Int64 -> Word64 -> m ()), MonadIO m) => MethodInfo * MemoryResizeMethodInfo Memory signature Source # | |
| ((~) * signature ([MapFlags] -> m (Bool, MapInfo)), MonadIO m) => MethodInfo * MemoryMapMethodInfo Memory signature Source # | |
| ((~) * signature ([MapFlags] -> m (Maybe Memory, MapInfo)), MonadIO m) => MethodInfo * MemoryMakeMappedMethodInfo Memory signature Source # | |
| ((~) * signature (Text -> m Bool), MonadIO m) => MethodInfo * MemoryIsTypeMethodInfo Memory signature Source # | |
| ((~) * signature (Memory -> Word64 -> m Bool), MonadIO m) => MethodInfo * MemoryIsSpanMethodInfo Memory signature Source # | |
| ((~) * signature (Word64 -> Word64 -> m Word64), MonadIO m) => MethodInfo * MemoryGetSizesMethodInfo Memory signature Source # | |
| ((~) * signature (Int64 -> Int64 -> m Memory), MonadIO m) => MethodInfo * MemoryCopyMethodInfo Memory signature Source # | |
| type AttributeList Memory Source # | |
Methods
copy
data MemoryCopyMethodInfo Source #
getSizes
isSpan
isType
makeMapped
map
data MemoryMapMethodInfo Source #
newWrapped
memoryNewWrapped :: MonadIO m => [MemoryFlags] -> ByteString -> Word64 -> Word64 -> Maybe DestroyNotify -> m Memory Source #
resize
share
data MemoryShareMethodInfo Source #
unmap
data MemoryUnmapMethodInfo Source #
Properties
align
memory_align :: AttrLabelProxy "align" Source #
allocator
clearMemoryAllocator :: MonadIO m => Memory -> m () Source #
memory_allocator :: AttrLabelProxy "allocator" Source #
maxsize
memory_maxsize :: AttrLabelProxy "maxsize" Source #
miniObject
getMemoryMiniObject :: MonadIO m => Memory -> m MiniObject Source #
memory_miniObject :: AttrLabelProxy "miniObject" Source #
offset
memory_offset :: AttrLabelProxy "offset" Source #
parent
clearMemoryParent :: MonadIO m => Memory -> m () Source #
memory_parent :: AttrLabelProxy "parent" Source #
size
memory_size :: AttrLabelProxy "size" Source #