/third_party/gstreamer/gstplugins_bad/sys/applemedia/ |
D | avsamplevideosink.m | 499 _unmap_planar_frame (GstVideoFrame * v_frame, const void * data, gsize dataSize, 502 GST_TRACE ("freeing video frame %p", v_frame); 504 gst_video_frame_unmap (v_frame); 505 g_free (v_frame); 509 _unmap_frame (GstVideoFrame * v_frame, const void * data) 511 GST_TRACE ("freeing video frame %p", v_frame); 513 gst_video_frame_unmap (v_frame); 514 g_free (v_frame); 523 GstVideoFrame *v_frame; 536 v_frame = g_new0 (GstVideoFrame, 1); [all …]
|
/third_party/gstreamer/gstplugins_base/tests/examples/gl/sdl/ |
D | sdlshare2.c | 72 DrawGLScene (GstVideoFrame * v_frame) in DrawGLScene() argument 84 texture = *(guint *) v_frame->data[0]; in DrawGLScene() 197 GstVideoFrame v_frame; in on_client_draw() local 203 if (!gst_video_frame_map (&v_frame, &v_info, buf, GST_MAP_READ | GST_MAP_GL)) { in on_client_draw() 211 g_idle_add_full (G_PRIORITY_HIGH, executeCallback, &v_frame, NULL); in on_client_draw() 218 gst_video_frame_unmap (&v_frame); in on_client_draw()
|
/third_party/gstreamer/gstplugins_base/tests/examples/gl/qt/qglwtextureshare/ |
D | qglrenderer.cpp | 162 GstVideoFrame v_frame; in paintGL() local 177 gst_video_frame_map (&v_frame, &v_info, this->frame, in paintGL() 180 tex_id = *(guint *) v_frame.data[0]; in paintGL() 273 gst_video_frame_unmap (&v_frame); in paintGL()
|
/third_party/gstreamer/gstplugins_base/tests/examples/gl/generic/cube/ |
D | main.cpp | 86 GstVideoFrame v_frame; in drawCallback() local 94 if (!gst_video_frame_map (&v_frame, &v_info, buf, (GstMapFlags) (GST_MAP_READ | GST_MAP_GL))) { in drawCallback() 99 texture = *(guint *) v_frame.data[0]; in drawCallback() 165 gst_video_frame_unmap (&v_frame); in drawCallback()
|
/third_party/gstreamer/gstplugins_good/ext/qt/ |
D | gstqsgtexture.cc | 135 if (!gst_video_frame_map (&this->v_frame, &this->v_info, this->buffer_, in bind() 154 tex_id = *(guint *) this->v_frame.data[0]; in bind() 159 gst_video_frame_unmap (&this->v_frame); in bind()
|
D | gstqsgtexture.h | 58 GstVideoFrame v_frame; variable
|
/third_party/gstreamer/gstplugins_base/tests/examples/gl/generic/cubeyuv/ |
D | main.cpp | 107 GstVideoFrame v_frame; in drawCallback() local 115 if (!gst_video_frame_map (&v_frame, &v_info, buf, (GstMapFlags) (GST_MAP_READ | GST_MAP_GL))) { in drawCallback() 120 texture = *(guint *) v_frame.data[0]; in drawCallback() 188 gst_video_frame_unmap (&v_frame); in drawCallback()
|
/third_party/gstreamer/gstplugins_base/tests/examples/gl/qt/qglwidgetvideooverlay/ |
D | pipeline.cpp | 168 GstVideoFrame v_frame; in drawCallback() local 176 if (!gst_video_frame_map (&v_frame, &v_info, buf, (GstMapFlags) (GST_MAP_READ | GST_MAP_GL))) { in drawCallback() 181 texture = *(guint *) v_frame.data[0]; in drawCallback() 250 gst_video_frame_unmap (&v_frame); in drawCallback()
|
/third_party/gstreamer/gstplugins_base/tests/examples/gl/qt/mousevideooverlay/ |
D | pipeline.cpp | 183 GstVideoFrame v_frame; in drawCallback() local 191 if (!gst_video_frame_map (&v_frame, &v_info, buf, (GstMapFlags) (GST_MAP_READ | GST_MAP_GL))) { in drawCallback() 196 texture = *(guint *) v_frame.data[0]; in drawCallback() 265 gst_video_frame_unmap (&v_frame); in drawCallback()
|
/third_party/gstreamer/gstplugins_base/tests/examples/gl/generic/doublecube/ |
D | main.cpp | 109 GstVideoFrame v_frame; in drawCallback() local 117 if (!gst_video_frame_map (&v_frame, &v_info, buf, (GstMapFlags) (GST_MAP_READ | GST_MAP_GL))) { in drawCallback() 122 texture = *(guint *) v_frame.data[0]; in drawCallback() 187 gst_video_frame_unmap (&v_frame); in drawCallback()
|
/third_party/gstreamer/gstplugins_bad/ext/vulkan/ |
D | vkupload.c | 273 GstVideoFrame v_frame; in _raw_to_buffer_perform() local 298 if (!gst_video_frame_map (&v_frame, &raw->in_info, inbuf, GST_MAP_READ)) { in _raw_to_buffer_perform() 323 memcpy (map_info.data, v_frame.data[i], plane_size); in _raw_to_buffer_perform() 328 gst_video_frame_unmap (&v_frame); in _raw_to_buffer_perform()
|