1 /* GStreamer Intel MSDK plugin
2 * Copyright (c) 2018, Intel Corporation
3 * Copyright (c) 2018, Igalia S.L.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
9 * 1. Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright notice,
13 * this list of conditions and the following disclaimer in the documentation
14 * and/or other materials provided with the distribution.
16 * 3. Neither the name of the copyright holder nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
24 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGDECE
29 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 #include "gstmsdkvideomemory.h"
39 #include "gstmsdkallocator.h"
41 #define GST_MSDK_BUFFER_SURFACE gst_msdk_buffer_surface_quark_get ()
43 gst_msdk_buffer_surface_quark_get (void)
47 if (g_once_init_enter (&g_quark)) {
48 gsize quark = (gsize) g_quark_from_static_string ("GstMsdkBufferSurface");
49 g_once_init_leave (&g_quark, quark);
54 static mfxFrameSurface1 *
55 gst_msdk_video_allocator_get_surface (GstAllocator * allocator)
57 mfxFrameInfo frame_info = { {0,}, 0, };
58 mfxFrameSurface1 *surface;
59 GstMsdkContext *context = NULL;
60 mfxFrameAllocResponse *resp = NULL;
61 GstVideoInfo *vinfo = NULL;
63 if (GST_IS_MSDK_VIDEO_ALLOCATOR (allocator)) {
64 context = GST_MSDK_VIDEO_ALLOCATOR_CAST (allocator)->context;
65 resp = GST_MSDK_VIDEO_ALLOCATOR_CAST (allocator)->alloc_response;
66 vinfo = &GST_MSDK_VIDEO_ALLOCATOR_CAST (allocator)->image_info;
67 } else if (GST_IS_MSDK_DMABUF_ALLOCATOR (allocator)) {
68 context = GST_MSDK_DMABUF_ALLOCATOR_CAST (allocator)->context;
69 resp = GST_MSDK_DMABUF_ALLOCATOR_CAST (allocator)->alloc_response;
70 vinfo = &GST_MSDK_DMABUF_ALLOCATOR_CAST (allocator)->image_info;
75 surface = gst_msdk_context_get_surface_available (context, resp);
77 GST_ERROR ("failed to get surface available");
81 gst_msdk_set_mfx_frame_info_from_video_info (&frame_info, vinfo);
82 surface->Info = frame_info;
88 gst_msdk_video_memory_get_surface_available (GstMemory * mem)
90 GstAllocator *allocator;
91 mfxFrameSurface1 *surface;
93 g_return_val_if_fail (mem, FALSE);
95 allocator = mem->allocator;
96 surface = gst_msdk_video_allocator_get_surface (allocator);
98 if (GST_IS_MSDK_VIDEO_ALLOCATOR (allocator)) {
99 GST_MSDK_VIDEO_MEMORY_CAST (mem)->surface = surface;
100 } else if (GST_IS_MSDK_DMABUF_ALLOCATOR (allocator)) {
101 gst_mini_object_set_qdata (GST_MINI_OBJECT_CAST (mem),
102 GST_MSDK_BUFFER_SURFACE, surface, NULL);
105 return surface ? TRUE : FALSE;
109 * Every time releasing a gst buffer, we need to check the status of surface's lock,
110 * so that we could manage locked surfaces seperatedly in the context.
111 * Otherwise, we put the surface to the available list.
114 gst_msdk_video_memory_release_surface (GstMemory * mem)
116 mfxFrameSurface1 *surface = NULL;
117 GstMsdkContext *context = NULL;
118 mfxFrameAllocResponse *alloc_response = NULL;
120 g_return_if_fail (mem);
122 if (GST_IS_MSDK_VIDEO_ALLOCATOR (mem->allocator)) {
123 surface = GST_MSDK_VIDEO_MEMORY_CAST (mem)->surface;
124 context = GST_MSDK_VIDEO_ALLOCATOR_CAST (mem->allocator)->context;
126 GST_MSDK_VIDEO_ALLOCATOR_CAST (mem->allocator)->alloc_response;
127 } else if (GST_IS_MSDK_DMABUF_ALLOCATOR (mem->allocator)) {
129 gst_mini_object_get_qdata (GST_MINI_OBJECT (mem),
130 GST_MSDK_BUFFER_SURFACE);
131 context = GST_MSDK_DMABUF_ALLOCATOR_CAST (mem->allocator)->context;
133 GST_MSDK_DMABUF_ALLOCATOR_CAST (mem->allocator)->alloc_response;
138 if (surface->Data.Locked > 0)
139 gst_msdk_context_put_surface_locked (context, alloc_response, surface);
141 gst_msdk_context_put_surface_available (context, alloc_response, surface);
143 if (GST_IS_MSDK_VIDEO_ALLOCATOR (mem->allocator))
144 GST_MSDK_VIDEO_MEMORY_CAST (mem)->surface = NULL;
145 else if (GST_IS_MSDK_DMABUF_ALLOCATOR (mem->allocator))
146 gst_mini_object_set_qdata (GST_MINI_OBJECT_CAST (mem),
147 GST_MSDK_BUFFER_SURFACE, NULL, NULL);
153 gst_msdk_video_memory_new (GstAllocator * base_allocator)
155 GstMsdkVideoAllocator *allocator;
157 GstMsdkVideoMemory *mem;
159 g_return_val_if_fail (base_allocator, NULL);
160 g_return_val_if_fail (GST_IS_MSDK_VIDEO_ALLOCATOR (base_allocator), NULL);
162 allocator = GST_MSDK_VIDEO_ALLOCATOR_CAST (base_allocator);
164 mem = g_slice_new0 (GstMsdkVideoMemory);
168 mem->surface = gst_msdk_video_allocator_get_surface (base_allocator);
172 vip = &allocator->image_info;
173 gst_memory_init (&mem->parent_instance, GST_MEMORY_FLAG_NO_SHARE,
174 base_allocator, NULL, GST_VIDEO_INFO_SIZE (vip), 0, 0,
175 GST_VIDEO_INFO_SIZE (vip));
177 return GST_MEMORY_CAST (mem);
181 gst_video_meta_map_msdk_memory (GstVideoMeta * meta, guint plane,
182 GstMapInfo * info, gpointer * data, gint * stride, GstMapFlags flags)
184 gboolean ret = FALSE;
185 GstAllocator *allocator;
186 GstMsdkVideoAllocator *msdk_video_allocator;
187 GstMsdkVideoMemory *mem =
188 GST_MSDK_VIDEO_MEMORY_CAST (gst_buffer_peek_memory (meta->buffer, 0));
189 GstMsdkMemoryID *mem_id;
192 guint plane_id = plane;
194 g_return_val_if_fail (mem, FALSE);
196 allocator = GST_MEMORY_CAST (mem)->allocator;
197 msdk_video_allocator = GST_MSDK_VIDEO_ALLOCATOR_CAST (allocator);
199 if (!GST_IS_MSDK_VIDEO_ALLOCATOR (allocator)) {
200 GST_WARNING ("The allocator is not MSDK video allocator");
205 GST_WARNING ("The surface is not allocated");
209 if ((flags & GST_MAP_WRITE) && mem->surface && mem->surface->Data.Locked) {
210 GST_WARNING ("The surface in memory %p is not still avaliable", mem);
215 gst_msdk_frame_lock (msdk_video_allocator->context,
216 mem->surface->Data.MemId, &mem->surface->Data);
220 mem_id = mem->surface->Data.MemId;
222 /* msdk doesn't support I420 format and we used YV12 internally
223 * So we need to swap U/V planes for mapping */
224 if (meta->format == GST_VIDEO_FORMAT_I420)
225 plane_id = plane ? (plane == 1 ? 2 : 1) : plane;
228 offset = mem_id->image.offsets[plane_id];
229 pitch = mem_id->image.pitches[plane_id];
231 /* TODO: This is just to avoid compile errors on Windows.
232 * Implement handling Windows-specific video-memory.
234 offset = mem_id->offset;
235 pitch = mem_id->pitch;
238 *data = mem->surface->Data.Y + offset;
242 ret = (*data != NULL);
248 gst_video_meta_unmap_msdk_memory (GstVideoMeta * meta, guint plane,
251 GstAllocator *allocator;
252 GstMsdkVideoAllocator *msdk_video_allocator;
253 GstMsdkVideoMemory *mem =
254 GST_MSDK_VIDEO_MEMORY_CAST (gst_buffer_peek_memory (meta->buffer, 0));
256 g_return_val_if_fail (mem, FALSE);
258 allocator = GST_MEMORY_CAST (mem)->allocator;
259 msdk_video_allocator = GST_MSDK_VIDEO_ALLOCATOR_CAST (allocator);
261 if (mem->mapped == 1)
262 gst_msdk_frame_unlock (msdk_video_allocator->context,
263 mem->surface->Data.MemId, &mem->surface->Data);
272 gst_msdk_video_memory_map_full (GstMemory * base_mem, GstMapInfo * info,
275 GstMsdkVideoMemory *const mem = GST_MSDK_VIDEO_MEMORY_CAST (base_mem);
276 GstAllocator *allocator = base_mem->allocator;
277 GstMsdkVideoAllocator *msdk_video_allocator =
278 GST_MSDK_VIDEO_ALLOCATOR_CAST (allocator);
280 g_return_val_if_fail (mem, NULL);
283 GST_WARNING ("The surface is not allocated");
287 if ((info->flags & GST_MAP_WRITE) && mem->surface
288 && mem->surface->Data.Locked) {
289 GST_WARNING ("The surface in memory %p is not still avaliable", mem);
293 gst_msdk_frame_lock (msdk_video_allocator->context, mem->surface->Data.MemId,
294 &mem->surface->Data);
295 return mem->surface->Data.Y;
299 gst_msdk_video_memory_unmap (GstMemory * base_mem)
301 GstMsdkVideoMemory *const mem = GST_MSDK_VIDEO_MEMORY_CAST (base_mem);
302 GstAllocator *allocator = base_mem->allocator;
303 GstMsdkVideoAllocator *msdk_video_allocator =
304 GST_MSDK_VIDEO_ALLOCATOR_CAST (allocator);
306 gst_msdk_frame_unlock (msdk_video_allocator->context,
307 mem->surface->Data.MemId, &mem->surface->Data);
310 /* GstMsdkVideoAllocator */
311 G_DEFINE_TYPE (GstMsdkVideoAllocator, gst_msdk_video_allocator,
315 gst_msdk_video_allocator_alloc (GstAllocator * allocator, gsize size,
316 GstAllocationParams * params)
318 return gst_msdk_video_memory_new (allocator);
322 gst_msdk_video_allocator_finalize (GObject * object)
324 GstMsdkVideoAllocator *allocator = GST_MSDK_VIDEO_ALLOCATOR_CAST (object);
326 gst_object_unref (allocator->context);
327 G_OBJECT_CLASS (gst_msdk_video_allocator_parent_class)->finalize (object);
331 gst_msdk_video_allocator_class_init (GstMsdkVideoAllocatorClass * klass)
333 GObjectClass *const object_class = G_OBJECT_CLASS (klass);
334 GstAllocatorClass *const allocator_class = GST_ALLOCATOR_CLASS (klass);
336 object_class->finalize = gst_msdk_video_allocator_finalize;
338 allocator_class->alloc = gst_msdk_video_allocator_alloc;
342 gst_msdk_video_allocator_init (GstMsdkVideoAllocator * allocator)
344 GstAllocator *const base_allocator = GST_ALLOCATOR_CAST (allocator);
346 base_allocator->mem_type = GST_MSDK_VIDEO_MEMORY_NAME;
347 base_allocator->mem_map_full = gst_msdk_video_memory_map_full;
348 base_allocator->mem_unmap = gst_msdk_video_memory_unmap;
350 GST_OBJECT_FLAG_SET (allocator, GST_ALLOCATOR_FLAG_CUSTOM_ALLOC);
354 gst_msdk_video_allocator_new (GstMsdkContext * context,
355 GstVideoInfo * image_info, mfxFrameAllocResponse * alloc_resp)
357 GstMsdkVideoAllocator *allocator;
359 g_return_val_if_fail (context != NULL, NULL);
360 g_return_val_if_fail (image_info != NULL, NULL);
362 allocator = g_object_new (GST_TYPE_MSDK_VIDEO_ALLOCATOR, NULL);
366 allocator->context = gst_object_ref (context);
367 allocator->image_info = *image_info;
368 allocator->alloc_response = alloc_resp;
370 return GST_ALLOCATOR_CAST (allocator);
373 /* GstMsdkDmaBufMemory */
375 gst_msdk_dmabuf_memory_new (GstAllocator * base_allocator)
378 mfxFrameSurface1 *surface;
380 g_return_val_if_fail (base_allocator, NULL);
381 g_return_val_if_fail (GST_IS_MSDK_DMABUF_ALLOCATOR (base_allocator), NULL);
383 surface = gst_msdk_video_allocator_get_surface (base_allocator);
387 return gst_msdk_dmabuf_memory_new_with_surface (base_allocator, surface);
394 gst_msdk_dmabuf_memory_new_with_surface (GstAllocator * allocator,
395 mfxFrameSurface1 * surface)
399 GstMsdkMemoryID *mem_id;
403 g_return_val_if_fail (allocator, NULL);
404 g_return_val_if_fail (GST_IS_MSDK_DMABUF_ALLOCATOR (allocator), NULL);
406 mem_id = surface->Data.MemId;
407 fd = mem_id->info.handle;
408 size = mem_id->info.mem_size;
410 if (fd < 0 || (fd = dup (fd)) < 0) {
411 GST_ERROR ("Failed to get dmabuf handle");
415 mem = gst_dmabuf_allocator_alloc (allocator, fd, size);
417 GST_ERROR ("failed ! dmabuf fd: %d", fd);
422 gst_mini_object_set_qdata (GST_MINI_OBJECT_CAST (mem),
423 GST_MSDK_BUFFER_SURFACE, surface, NULL);
431 /* GstMsdkDmaBufAllocator */
432 G_DEFINE_TYPE (GstMsdkDmaBufAllocator, gst_msdk_dmabuf_allocator,
433 GST_TYPE_DMABUF_ALLOCATOR);
436 gst_msdk_dmabuf_allocator_finalize (GObject * object)
438 GstMsdkDmaBufAllocator *allocator = GST_MSDK_DMABUF_ALLOCATOR_CAST (object);
440 gst_object_unref (allocator->context);
441 G_OBJECT_CLASS (gst_msdk_dmabuf_allocator_parent_class)->finalize (object);
445 gst_msdk_dmabuf_allocator_class_init (GstMsdkDmaBufAllocatorClass * klass)
447 GObjectClass *const object_class = G_OBJECT_CLASS (klass);
449 object_class->finalize = gst_msdk_dmabuf_allocator_finalize;
453 gst_msdk_dmabuf_allocator_init (GstMsdkDmaBufAllocator * allocator)
455 GstAllocator *const base_allocator = GST_ALLOCATOR_CAST (allocator);
456 base_allocator->mem_type = GST_MSDK_DMABUF_MEMORY_NAME;
460 gst_msdk_dmabuf_allocator_new (GstMsdkContext * context,
461 GstVideoInfo * image_info, mfxFrameAllocResponse * alloc_resp)
463 GstMsdkDmaBufAllocator *allocator;
465 g_return_val_if_fail (context != NULL, NULL);
466 g_return_val_if_fail (image_info != NULL, NULL);
468 allocator = g_object_new (GST_TYPE_MSDK_DMABUF_ALLOCATOR, NULL);
472 allocator->context = gst_object_ref (context);
473 allocator->image_info = *image_info;
474 allocator->alloc_response = alloc_resp;
476 return GST_ALLOCATOR_CAST (allocator);