Package ch.bailu.gtk.gst
Schnittstelle MemoryFlags
public interface MemoryFlags
-
Feldübersicht
FelderModifizierer und TypFeldBeschreibungstatic final int
first flag that can be used for custom purposesstatic final int
memory must not be shared.static final int
the memory can't be mapped via
gst_memory_map() without any preconditions.static final int
the memory is physically
contiguous.static final int
memory is readonly.static final int
the memory padding is filled with 0 bytesstatic final int
the memory prefix is filled with 0 bytes
-
Felddetails
-
READONLY
static final int READONLYmemory is readonly. It is not allowed to map the
memory with #GST_MAP_WRITE.- Siehe auch:
-
NO_SHARE
static final int NO_SHAREmemory must not be shared. Copies will have to be
made when this memory needs to be shared between buffers. (DEPRECATED:
do not use in new code, instead you should create a custom GstAllocator for
memory pooling instead of relying on the GstBuffer they were originally
attached to.)- Siehe auch:
-
ZERO_PREFIXED
static final int ZERO_PREFIXEDthe memory prefix is filled with 0 bytes- Siehe auch:
-
ZERO_PADDED
static final int ZERO_PADDEDthe memory padding is filled with 0 bytes- Siehe auch:
-
PHYSICALLY_CONTIGUOUS
static final int PHYSICALLY_CONTIGUOUSthe memory is physically
contiguous. (Since: 1.2)- Siehe auch:
-
NOT_MAPPABLE
static final int NOT_MAPPABLEthe memory can't be mapped via
gst_memory_map() without any preconditions. (Since: 1.2)- Siehe auch:
-
LAST
static final int LASTfirst flag that can be used for custom purposes- Siehe auch:
-