mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 21:48:55 +00:00
memory: fix documentation to display in html
Commit e9c99c05
added a deprecation message, but this message is not
displayed in the html page since the format was not correct.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/648>
This commit is contained in:
parent
bbca6b1ddf
commit
b81808de0e
1 changed files with 7 additions and 5 deletions
|
@ -48,13 +48,15 @@ typedef struct _GstAllocator GstAllocator;
|
||||||
* memory with #GST_MAP_WRITE.
|
* memory with #GST_MAP_WRITE.
|
||||||
* @GST_MEMORY_FLAG_NO_SHARE: memory must not be shared. Copies will have to be
|
* @GST_MEMORY_FLAG_NO_SHARE: memory must not be shared. Copies will have to be
|
||||||
* made when this memory needs to be shared between buffers. (DEPRECATED:
|
* 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
|
* 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
|
* memory pooling instead of relying on the GstBuffer they were originally
|
||||||
* attached to.)
|
* attached to.)
|
||||||
* @GST_MEMORY_FLAG_ZERO_PREFIXED: the memory prefix is filled with 0 bytes
|
* @GST_MEMORY_FLAG_ZERO_PREFIXED: the memory prefix is filled with 0 bytes
|
||||||
* @GST_MEMORY_FLAG_ZERO_PADDED: the memory padding is filled with 0 bytes
|
* @GST_MEMORY_FLAG_ZERO_PADDED: the memory padding is filled with 0 bytes
|
||||||
* @GST_MEMORY_FLAG_PHYSICALLY_CONTIGUOUS: the memory is physically contiguous. (Since: 1.2)
|
* @GST_MEMORY_FLAG_PHYSICALLY_CONTIGUOUS: the memory is physically
|
||||||
* @GST_MEMORY_FLAG_NOT_MAPPABLE: the memory can't be mapped via gst_memory_map() without any preconditions. (Since: 1.2)
|
* contiguous. (Since: 1.2)
|
||||||
|
* @GST_MEMORY_FLAG_NOT_MAPPABLE: the memory can't be mapped via
|
||||||
|
* gst_memory_map() without any preconditions. (Since: 1.2)
|
||||||
* @GST_MEMORY_FLAG_LAST: first flag that can be used for custom purposes
|
* @GST_MEMORY_FLAG_LAST: first flag that can be used for custom purposes
|
||||||
*
|
*
|
||||||
* Flags for wrapped memory.
|
* Flags for wrapped memory.
|
||||||
|
|
Loading…
Reference in a new issue