[pulseaudio-commits] src/mainwindow.cc src/minimalstreamwidget.cc src/minimalstreamwidget.h
GitLab Mirror
gitlab-mirror at kemper.freedesktop.org
Sun Aug 15 14:47:22 UTC 2021
src/mainwindow.cc | 1 +
src/minimalstreamwidget.cc | 8 ++++++++
src/minimalstreamwidget.h | 1 +
3 files changed, 10 insertions(+)
New commits:
commit 4bc93d9d9c1d7f5d195076b514c6ac2391a7017f
Author: Igor V. Kovalenko <igor.v.kovalenko at gmail.com>
Date: Sat Aug 14 19:41:27 2021 +0300
Disconnect and unreference all peak indicator stream objects
Most of sink input peak indicator streams are still connected alive at the time
their widgets are destroyed. Disconnect and unreference each one to stop memory
leak.
When sink input peak indicator stream is recreated, previous stream is only
disconnected but not unreferenced. Unreference it to stop memory leak.
Part-of: <https://gitlab.freedesktop.org/pulseaudio/pavucontrol/-/merge_requests/62>
diff --git a/src/mainwindow.cc b/src/mainwindow.cc
index bae4c7a..2e1c58b 100644
--- a/src/mainwindow.cc
+++ b/src/mainwindow.cc
@@ -703,6 +703,7 @@ void MainWindow::createMonitorStreamForSinkInput(SinkInputWidget* w, uint32_t si
if (w->peak) {
pa_stream_disconnect(w->peak);
+ pa_stream_unref(w->peak);
w->peak = NULL;
}
diff --git a/src/minimalstreamwidget.cc b/src/minimalstreamwidget.cc
index 017b2ed..b6c60e8 100644
--- a/src/minimalstreamwidget.cc
+++ b/src/minimalstreamwidget.cc
@@ -39,6 +39,14 @@ MinimalStreamWidget::MinimalStreamWidget(BaseObjectType* cobject) :
volumeMeterVisible(true) {
}
+MinimalStreamWidget::~MinimalStreamWidget() {
+ if (peak) {
+ pa_stream_disconnect(peak);
+ pa_stream_unref(peak);
+ peak = NULL;
+ }
+}
+
void MinimalStreamWidget::init() {
/* Set up the peak meter. This is not done in the constructor, because
* channelsVBox is initialized by the subclasses, so it's not yet available
diff --git a/src/minimalstreamwidget.h b/src/minimalstreamwidget.h
index e5d774c..fbf6a99 100644
--- a/src/minimalstreamwidget.h
+++ b/src/minimalstreamwidget.h
@@ -26,6 +26,7 @@
class MinimalStreamWidget : public Gtk::VBox {
public:
MinimalStreamWidget(BaseObjectType* cobject);
+ virtual ~MinimalStreamWidget();
/* Subclass constructors are expected to initialize these variables.
* MinimalStreamWidget can't initialize these, because the glade object
More information about the pulseaudio-commits
mailing list