Home
last modified time | relevance | path

Searched refs:v_frame (Results 1 – 11 of 11) sorted by relevance

/third_party/gstreamer/gstplugins_bad/sys/applemedia/
Davsamplevideosink.m499 _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/
Dsdlshare2.c72 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/
Dqglrenderer.cpp162 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/
Dmain.cpp86 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/
Dgstqsgtexture.cc135 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()
Dgstqsgtexture.h58 GstVideoFrame v_frame; variable
/third_party/gstreamer/gstplugins_base/tests/examples/gl/generic/cubeyuv/
Dmain.cpp107 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/
Dpipeline.cpp168 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/
Dpipeline.cpp183 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/
Dmain.cpp109 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/
Dvkupload.c273 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()