mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
buffer: make idx argument to gst_buffer_take_memory() signed
Since -1 is acceptable, it should be signed.
This commit is contained in:
parent
c87375a813
commit
75c81c2120
2 changed files with 8 additions and 7 deletions
|
@ -583,19 +583,20 @@ gst_buffer_n_memory (GstBuffer * buffer)
|
|||
/**
|
||||
* gst_buffer_take_memory:
|
||||
* @buffer: a #GstBuffer.
|
||||
* @idx: the index to add the memory
|
||||
* @mem: a #GstMemory.
|
||||
* @idx: the index to add the memory at, or -1 to append it to the end
|
||||
* @mem: (transfer: full): a #GstMemory.
|
||||
*
|
||||
* Add the memory block @mem to @buffer at @idx. This function takes ownership of @mem
|
||||
* and thus doesn't increase its refcount.
|
||||
* Add the memory block @mem to @buffer at @idx. This function takes ownership
|
||||
* of @mem and thus doesn't increase its refcount.
|
||||
*/
|
||||
void
|
||||
gst_buffer_take_memory (GstBuffer * buffer, guint idx, GstMemory * mem)
|
||||
gst_buffer_take_memory (GstBuffer * buffer, gint idx, GstMemory * mem)
|
||||
{
|
||||
g_return_if_fail (GST_IS_BUFFER (buffer));
|
||||
g_return_if_fail (gst_buffer_is_writable (buffer));
|
||||
g_return_if_fail (mem != NULL);
|
||||
g_return_if_fail (idx == -1 || idx <= GST_BUFFER_MEM_LEN (buffer));
|
||||
g_return_if_fail (idx == -1 ||
|
||||
(idx >= 0 && idx <= GST_BUFFER_MEM_LEN (buffer)));
|
||||
|
||||
_memory_add (buffer, idx, mem);
|
||||
}
|
||||
|
|
|
@ -230,7 +230,7 @@ GstBuffer * gst_buffer_new_allocate (const GstAllocator * allocator, gsiz
|
|||
|
||||
/* memory blocks */
|
||||
guint gst_buffer_n_memory (GstBuffer *buffer);
|
||||
void gst_buffer_take_memory (GstBuffer *buffer, guint idx, GstMemory *mem);
|
||||
void gst_buffer_take_memory (GstBuffer *buffer, gint idx, GstMemory *mem);
|
||||
GstMemory * gst_buffer_peek_memory (GstBuffer *buffer, guint idx, GstMapFlags flags);
|
||||
void gst_buffer_remove_memory_range (GstBuffer *buffer, guint idx, guint length);
|
||||
|
||||
|
|
Loading…
Reference in a new issue