<html><head></head><body><div style="font-family: Verdana;font-size: 12.0px;"><div>I have found a solution.</div>

<div>From the aforementioned commit, after some tries, I have found that replacing the module/qt4 source files with the ones from the current testing version fixes everything.</div>

<div> </div>

<div>Here a few command lines for doing it, creating new vlc packages for a standard Jessie installation in your architecture.</div>

<div><br/>
sudo apt-get install -y build-essential devscripts debhelper dpkg-dev<br/>
mkdir "vlc-stable-fixed"<br/>
cd "vlc-stable-fixed"<br/>
wget -O vlc_2.2.1.orig.tar.xz http://http.debian.net/debian/pool/main/v/vlc/vlc_2.2.1.orig.tar.xz<br/>
tar xf vlc_2.2.1.orig.tar.xz<br/>
apt-get source vlc<br/>
sudo apt-get build-dep vlc<br/>
cp -R vlc-2.2.1/modules/gui/qt4/* vlc-2.2.0~rc2/modules/gui/qt4/<br/>
cd vlc-2.2.0~rc2<br/>
EDITOR=/bin/true dpkg-source -q --commit . vlcqt4patch<br/>
debuild -us -uc<br/>
cd ..<br/>
sudo dpkg -i *.deb<br/>
echo vlc hold | sudo dpkg --set-selections<br/>
echo vlc-data hold | sudo dpkg --set-selections<br/>
echo vlc-dbg hold | sudo dpkg --set-selections<br/>
echo vlc-nox hold | sudo dpkg --set-selections<br/>
echo vlc-plugin-pulse hold | sudo dpkg --set-selections<br/>
rm -Rfr !(*.deb)<br/>
cd ..<br/>
 </div>

<div> </div>

<div>It still would be nice to fix this in stable permanently, I imaging uploanding those *.deb in jessie-backports.</div></div></body></html>