Gst.AllocationParams¶
Fields¶
Name |
Type |
Access |
Description |
---|---|---|---|
align |
r/w |
the desired alignment of the memory |
|
flags |
r/w |
flags to control allocation |
|
padding |
r/w |
the desired padding |
|
prefix |
r/w |
the desired prefix |
Methods¶
class |
|
|
|
|
|
|
Details¶
- class Gst.AllocationParams¶
Parameters to control the allocation of memory
- classmethod new()[source]¶
- Returns:
a new
Gst.AllocationParams
- Return type:
Create a new
Gst.AllocationParams
on the heap. This function is for use in GStreamer language bindings. In your own code, you can just declare aGst.AllocationParams
on the stack or in a struct, and callGst.AllocationParams.init
() to initialize it.You do not need to call
Gst.AllocationParams.init
() on the instance returned by this function.New in version 1.20.
- copy()[source]¶
- Returns:
a new
Gst.AllocationParams
.- Return type:
Create a copy of self.