mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-13 23:22:54 +00:00
msdk: Remove the func gst_msdk_is_msdk_buffer
Since we use va/d3d11 pool to allocate memory, the old msdk bufferpool stuffs are not used anymore, so we don't need to check if an input buffer is msdk buffer using gst_msdk_is_msdk_buffer. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4276>
This commit is contained in:
parent
0fa3c5c561
commit
ef1397cbe3
4 changed files with 27 additions and 68 deletions
|
@ -1771,11 +1771,6 @@ gst_msdkenc_get_surface_from_frame (GstMsdkEnc * thiz,
|
|||
GstBuffer *inbuf;
|
||||
|
||||
inbuf = frame->input_buffer;
|
||||
if (gst_msdk_is_msdk_buffer (inbuf)) {
|
||||
msdk_surface = g_slice_new0 (GstMsdkSurface);
|
||||
msdk_surface->surface = gst_msdk_get_surface_from_buffer (inbuf);
|
||||
return msdk_surface;
|
||||
}
|
||||
|
||||
msdk_surface = gst_msdk_import_to_msdk_surface (inbuf, thiz->context,
|
||||
&thiz->input_state->info, GST_MAP_READ);
|
||||
|
|
|
@ -875,13 +875,6 @@ get_msdk_surface_from_input_buffer (GstMsdkVPP * thiz, GstBuffer * inbuf)
|
|||
{
|
||||
GstMsdkSurface *msdk_surface = NULL;
|
||||
|
||||
if (gst_msdk_is_msdk_buffer (inbuf)) {
|
||||
msdk_surface = g_slice_new0 (GstMsdkSurface);
|
||||
msdk_surface->surface = gst_msdk_get_surface_from_buffer (inbuf);
|
||||
msdk_surface->buf = gst_buffer_ref (inbuf);
|
||||
return msdk_surface;
|
||||
}
|
||||
|
||||
msdk_surface = gst_msdk_import_to_msdk_surface (inbuf, thiz->context,
|
||||
&thiz->sinkpad_info, GST_MAP_READ);
|
||||
if (msdk_surface) {
|
||||
|
@ -934,23 +927,19 @@ gst_msdkvpp_transform (GstBaseTransform * trans, GstBuffer * inbuf,
|
|||
in_surface->surface->Data.TimeStamp =
|
||||
gst_util_uint64_scale_round (inbuf->pts, 90000, GST_SECOND);
|
||||
|
||||
if (gst_msdk_is_msdk_buffer (outbuf)) {
|
||||
out_surface = g_slice_new0 (GstMsdkSurface);
|
||||
out_surface->surface = gst_msdk_get_surface_from_buffer (outbuf);
|
||||
out_surface = gst_msdk_import_to_msdk_surface (outbuf, thiz->context,
|
||||
&thiz->srcpad_info, GST_MAP_WRITE);
|
||||
|
||||
if (!thiz->use_video_memory)
|
||||
out_surface =
|
||||
gst_msdk_import_sys_mem_to_msdk_surface (outbuf, &thiz->srcpad_info);
|
||||
|
||||
if (out_surface) {
|
||||
out_surface->buf = gst_buffer_ref (outbuf);
|
||||
} else {
|
||||
out_surface = gst_msdk_import_to_msdk_surface (outbuf, thiz->context,
|
||||
&thiz->srcpad_info, GST_MAP_WRITE);
|
||||
if (!thiz->use_video_memory) {
|
||||
out_surface =
|
||||
gst_msdk_import_sys_mem_to_msdk_surface (outbuf, &thiz->srcpad_info);
|
||||
}
|
||||
if (out_surface)
|
||||
out_surface->buf = gst_buffer_ref (outbuf);
|
||||
else {
|
||||
GST_ERROR_OBJECT (thiz, "Failed to get msdk outsurface!");
|
||||
free_msdk_surface (in_surface);
|
||||
return GST_FLOW_ERROR;
|
||||
}
|
||||
GST_ERROR_OBJECT (thiz, "Failed to get msdk outsurface!");
|
||||
free_msdk_surface (in_surface);
|
||||
return GST_FLOW_ERROR;
|
||||
}
|
||||
|
||||
/* update surface crop info (NOTE: msdk min frame size is 2x2) */
|
||||
|
@ -1023,29 +1012,23 @@ gst_msdkvpp_transform (GstBaseTransform * trans, GstBuffer * inbuf,
|
|||
GST_BUFFER_TIMESTAMP (outbuf_new) = timestamp;
|
||||
GST_BUFFER_DURATION (outbuf_new) = thiz->buffer_duration;
|
||||
|
||||
if (gst_msdk_is_msdk_buffer (outbuf_new)) {
|
||||
release_out_surface (thiz, out_surface);
|
||||
out_surface = g_slice_new0 (GstMsdkSurface);
|
||||
out_surface->surface = gst_msdk_get_surface_from_buffer (outbuf_new);
|
||||
release_out_surface (thiz, out_surface);
|
||||
out_surface =
|
||||
gst_msdk_import_to_msdk_surface (outbuf_new, thiz->context,
|
||||
&thiz->srcpad_buffer_pool_info, GST_MAP_WRITE);
|
||||
|
||||
if (!thiz->use_video_memory)
|
||||
out_surface =
|
||||
gst_msdk_import_sys_mem_to_msdk_surface (outbuf_new,
|
||||
&thiz->srcpad_buffer_pool_info);
|
||||
|
||||
if (out_surface) {
|
||||
out_surface->buf = gst_buffer_ref (outbuf_new);
|
||||
create_new_surface = TRUE;
|
||||
} else {
|
||||
release_out_surface (thiz, out_surface);
|
||||
out_surface =
|
||||
gst_msdk_import_to_msdk_surface (outbuf_new, thiz->context,
|
||||
&thiz->srcpad_buffer_pool_info, GST_MAP_WRITE);
|
||||
if (!thiz->use_video_memory) {
|
||||
out_surface =
|
||||
gst_msdk_import_sys_mem_to_msdk_surface (outbuf_new,
|
||||
&thiz->srcpad_buffer_pool_info);
|
||||
}
|
||||
if (out_surface) {
|
||||
out_surface->buf = gst_buffer_ref (outbuf_new);
|
||||
create_new_surface = TRUE;
|
||||
} else {
|
||||
GST_ERROR_OBJECT (thiz, "Failed to get msdk outsurface!");
|
||||
release_in_surface (thiz, in_surface, locked_by_others);
|
||||
return GST_FLOW_ERROR;
|
||||
}
|
||||
GST_ERROR_OBJECT (thiz, "Failed to get msdk outsurface!");
|
||||
release_in_surface (thiz, in_surface, locked_by_others);
|
||||
return GST_FLOW_ERROR;
|
||||
}
|
||||
} else {
|
||||
GST_BUFFER_TIMESTAMP (outbuf) = timestamp;
|
||||
|
|
|
@ -537,22 +537,6 @@ gst_msdk_set_mfx_frame_info_from_video_info (mfxFrameInfo * mfx_info,
|
|||
return;
|
||||
}
|
||||
|
||||
gboolean
|
||||
gst_msdk_is_msdk_buffer (GstBuffer * buf)
|
||||
{
|
||||
GstAllocator *allocator;
|
||||
GstMemory *mem = gst_buffer_peek_memory (buf, 0);
|
||||
|
||||
allocator = GST_MEMORY_CAST (mem)->allocator;
|
||||
|
||||
if (allocator && (GST_IS_MSDK_VIDEO_ALLOCATOR (allocator) ||
|
||||
GST_IS_MSDK_SYSTEM_ALLOCATOR (allocator) ||
|
||||
GST_IS_MSDK_DMABUF_ALLOCATOR (allocator)))
|
||||
return TRUE;
|
||||
else
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
gboolean
|
||||
gst_msdk_is_va_mem (GstMemory * mem)
|
||||
{
|
||||
|
|
|
@ -132,9 +132,6 @@ gint gst_msdk_get_mfx_fourcc_from_format (GstVideoFormat format);
|
|||
void gst_msdk_set_mfx_frame_info_from_video_info (mfxFrameInfo * mfx_info,
|
||||
const GstVideoInfo * info);
|
||||
|
||||
gboolean
|
||||
gst_msdk_is_msdk_buffer (GstBuffer * buf);
|
||||
|
||||
gboolean
|
||||
gst_msdk_is_va_mem (GstMemory * mem);
|
||||
|
||||
|
|
Loading…
Reference in a new issue