parent
8501724bcd
commit
b48a105c58
@ -0,0 +1,108 @@
|
||||
From 7acc78ca13968a49e7420b0b609c8190053196e2 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= <caolanm@redhat.com>
|
||||
Date: Thu, 17 Mar 2016 12:21:16 +0000
|
||||
Subject: [PATCH] Resolves: tdf#96989 videos playback at maximum possible
|
||||
volume
|
||||
|
||||
On systems with flat-volumes then setting the volume directly on the playbin to
|
||||
100% results in resetting the global volume to the maximum possible volume.
|
||||
|
||||
We expect to set as % of the current system volume. Putting an intermediate
|
||||
volume object into the pipeline does the more expected thing.
|
||||
|
||||
Change-Id: I911d6fffba0983e4fd7b455e820959a96115de34
|
||||
(cherry picked from commit d4b48e0de7f817c0d4607382724778acf191f9f8)
|
||||
---
|
||||
avmedia/source/gstreamer/gstplayer.cxx | 28 ++++++++++++++++++++++------
|
||||
avmedia/source/gstreamer/gstplayer.hxx | 1 +
|
||||
2 files changed, 23 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/avmedia/source/gstreamer/gstplayer.cxx b/avmedia/source/gstreamer/gstplayer.cxx
|
||||
index 310cf9b..8631e6a 100644
|
||||
--- a/avmedia/source/gstreamer/gstplayer.cxx
|
||||
+++ b/avmedia/source/gstreamer/gstplayer.cxx
|
||||
@@ -282,6 +282,7 @@ Player::Player( const uno::Reference< lang::XMultiServiceFactory >& rxMgr ) :
|
||||
GstPlayer_BASE( m_aMutex ),
|
||||
mxMgr( rxMgr ),
|
||||
mpPlaybin( nullptr ),
|
||||
+ mpVolumeControl( nullptr ),
|
||||
#if defined(ENABLE_GTKSINK)
|
||||
mpGtkWidget( nullptr ),
|
||||
#endif
|
||||
@@ -355,6 +356,7 @@ void SAL_CALL Player::disposing()
|
||||
g_object_unref( G_OBJECT( mpPlaybin ) );
|
||||
|
||||
mpPlaybin = nullptr;
|
||||
+ mpVolumeControl = nullptr;
|
||||
}
|
||||
|
||||
if( mpXOverlay ) {
|
||||
@@ -597,6 +599,20 @@ void Player::preparePlaybin( const OUString& rURL, GstElement *pSink )
|
||||
}
|
||||
|
||||
mpPlaybin = gst_element_factory_make( "playbin", nullptr );
|
||||
+
|
||||
+ //tdf#96989 on systems with flat-volumes setting the volume directly on the
|
||||
+ //playbin to 100% results in setting the global volums to 100% of the
|
||||
+ //maximum. We expect to set as % of the current volume.
|
||||
+ mpVolumeControl = gst_element_factory_make( "volume", nullptr );
|
||||
+ GstElement *pAudioSink = gst_element_factory_make( "autoaudiosink", nullptr );
|
||||
+ GstElement* pAudioOutput = gst_bin_new("audio-output-bin");
|
||||
+ gst_bin_add_many(GST_BIN(pAudioOutput), mpVolumeControl, pAudioSink, nullptr);
|
||||
+ gst_element_link(mpVolumeControl, pAudioSink);
|
||||
+ GstPad *pPad = gst_element_get_static_pad(mpVolumeControl, "sink");
|
||||
+ gst_element_add_pad(GST_ELEMENT(pAudioOutput), gst_ghost_pad_new("sink", pPad));
|
||||
+ gst_object_unref(GST_OBJECT(pPad));
|
||||
+ g_object_set(G_OBJECT(mpPlaybin), "audio-sink", pAudioOutput, nullptr);
|
||||
+
|
||||
if( pSink != nullptr ) // used for getting preferred size etc.
|
||||
{
|
||||
g_object_set( G_OBJECT( mpPlaybin ), "video-sink", pSink, nullptr );
|
||||
@@ -796,7 +812,7 @@ void SAL_CALL Player::setMute( sal_Bool bSet )
|
||||
nVolume = 0.0;
|
||||
}
|
||||
|
||||
- g_object_set( G_OBJECT( mpPlaybin ), "volume", nVolume, nullptr );
|
||||
+ g_object_set( G_OBJECT( mpVolumeControl ), "volume", nVolume, nullptr );
|
||||
|
||||
mbMuted = bSet;
|
||||
}
|
||||
@@ -824,10 +840,10 @@ void SAL_CALL Player::setVolumeDB( sal_Int16 nVolumeDB )
|
||||
SAL_INFO( "avmedia.gstreamer", AVVERSION "set volume: " << nVolumeDB << " gst volume: " << mnUnmutedVolume );
|
||||
|
||||
// change volume
|
||||
- if( !mbMuted && mpPlaybin )
|
||||
- {
|
||||
- g_object_set( G_OBJECT( mpPlaybin ), "volume", (gdouble) mnUnmutedVolume, nullptr );
|
||||
- }
|
||||
+ if( !mbMuted && mpPlaybin )
|
||||
+ {
|
||||
+ g_object_set( G_OBJECT( mpVolumeControl ), "volume", mnUnmutedVolume, nullptr );
|
||||
+ }
|
||||
}
|
||||
|
||||
|
||||
@@ -842,7 +858,7 @@ sal_Int16 SAL_CALL Player::getVolumeDB()
|
||||
if( mpPlaybin ) {
|
||||
double nGstVolume = 0.0;
|
||||
|
||||
- g_object_get( G_OBJECT( mpPlaybin ), "volume", &nGstVolume, nullptr );
|
||||
+ g_object_get( G_OBJECT( mpVolumeControl ), "volume", &nGstVolume, nullptr );
|
||||
|
||||
nVolumeDB = (sal_Int16) ( 20.0*log10 ( nGstVolume ) );
|
||||
}
|
||||
diff --git a/avmedia/source/gstreamer/gstplayer.hxx b/avmedia/source/gstreamer/gstplayer.hxx
|
||||
index ffc5133..9c8b3e6 100644
|
||||
--- a/avmedia/source/gstreamer/gstplayer.hxx
|
||||
+++ b/avmedia/source/gstreamer/gstplayer.hxx
|
||||
@@ -87,6 +87,7 @@ protected:
|
||||
|
||||
// Add elements and pipeline here
|
||||
GstElement* mpPlaybin; // the playbin is also a pipeline
|
||||
+ GstElement* mpVolumeControl; // the playbin is also a pipeline
|
||||
#if defined(ENABLE_GTKSINK)
|
||||
GtkWidget* mpGtkWidget;
|
||||
#endif
|
||||
--
|
||||
2.7.1
|
||||
|
Loading…
Reference in new issue