Package ch.bailu.gtk.gst
Schnittstelle MemoryFlags
public interface MemoryFlags
-
Feldübersicht
FelderModifizierer und TypFeldBeschreibungstatic final intfirst flag that can be used for custom purposesstatic final intmemory must not be shared.static final intthe memory can't be mapped via
gst_memory_map() without any preconditions.static final intthe memory is physically
contiguous.static final intmemory is readonly.static final intthe memory padding is filled with 0 bytesstatic final intthe 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:
-