summaryrefslogtreecommitdiffstats
path: root/src/gsttools
diff options
context:
space:
mode:
Diffstat (limited to 'src/gsttools')
-rw-r--r--src/gsttools/qvideosurfacegstsink.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/gsttools/qvideosurfacegstsink.cpp b/src/gsttools/qvideosurfacegstsink.cpp
index 6347582a3..7f61a68e8 100644
--- a/src/gsttools/qvideosurfacegstsink.cpp
+++ b/src/gsttools/qvideosurfacegstsink.cpp
@@ -176,6 +176,13 @@ bool QVideoSurfaceGstDelegate::isActive()
return !m_surface.isNull() && m_surface->isActive();
}
+void QVideoSurfaceGstDelegate::clearPoolBuffers()
+{
+ QMutexLocker locker(&m_poolMutex);
+ if (m_pool)
+ m_pool->clear();
+}
+
GstFlowReturn QVideoSurfaceGstDelegate::render(GstBuffer *buffer)
{
if (!m_surface) {
@@ -840,7 +847,8 @@ gboolean QVideoSurfaceGstSink::start(GstBaseSink *base)
gboolean QVideoSurfaceGstSink::stop(GstBaseSink *base)
{
- Q_UNUSED(base);
+ VO_SINK(base);
+ sink->delegate->clearPoolBuffers();
return TRUE;
}