design: memory: add _full() variants to _GstAllocator code block

Additionally: adjust padding to match.
This commit is contained in:
Reynaldo H. Verdejo Pinochet 2017-02-03 15:40:54 -08:00
parent b4e0ffdfd7
commit 57e102e303

View file

@ -57,6 +57,9 @@ struct _GstAllocator {
GstMemoryCopyFunction mem_copy;
GstMemoryShareFunction mem_share;
GstMemoryIsSpanFunction mem_is_span;
GstMemoryMapFullFunction mem_map_full;
GstMemoryUnmapFullFunction mem_unmap_full;
};
```