Bug 335866 - crash when setting equalizer
Summary: crash when setting equalizer
Status: RESOLVED WORKSFORME
Alias: None
Product: phonon-backend-gstreamer
Classification: Unmaintained
Component: general (other bugs)
Version First Reported In: 4.8.1
Platform: Ubuntu Linux
: NOR crash
Target Milestone: ---
Assignee: Daniel Vrátil
URL:
Keywords: investigated, triaged
Depends on:
Blocks:
 
Reported: 2014-06-06 08:38 UTC by chris
Modified: 2018-09-19 14:26 UTC (History)
8 users (show)

See Also:
Latest Commit:
Version Fixed/Implemented In:
Sentry Crash Report:


Attachments
backtrace in gdb (2.63 KB, text/plain)
2014-06-28 14:12 UTC, crepi22
Details
crash report from terminal in debug mode (11.90 KB, text/plain)
2015-02-24 17:49 UTC, Beo Enduser
Details
attachment-1728-0.html (1.39 KB, text/html)
2015-02-24 22:24 UTC, Beo Enduser
Details
attachment-27670-0.html (116 bytes, text/html)
2015-02-25 22:32 UTC, Beo Enduser
Details
Backtrace 1 (45.03 KB, text/plain)
2015-02-26 22:05 UTC, Beo Enduser
Details
2nd backtrace (39.71 KB, text/plain)
2015-02-26 22:06 UTC, Beo Enduser
Details

Note You need to log in before you can comment on or make changes to this bug.
Description chris 2014-06-06 08:38:25 UTC
whenever I try to adjust the equalizer, this causes a crash, the ticking the box active, resets the current song, every attempt to move a cursor causes crash.

Reproducible: Always

Steps to Reproduce:
1.Tools menu> equalizer
2.active check box
3.move any cuseur
Actual Results:  
systematic crash

Expected Results:  
adjust the musical frequencies
Comment 1 chris 2014-06-06 08:42:54 UTC
clicking cancel the equalizer window, the song restarts at the beginning
Comment 2 Myriam Schweingruber 2014-06-06 17:25:24 UTC
We need a backtrace for the crash. Please make sure to install all necessary debugging symbols for Amarok and its dependencies, and reproduce the crash. For more information, please check here:  https://community.kde.org/Amarok/Development/DebuggingHowTo#Getting_a_Backtrace
Comment 3 crepi22 2014-06-28 14:12:38 UTC
Created attachment 87448 [details]
backtrace in gdb

The first message (Attempting to add QLayout) is displayed when the equalizer is enabled (and the song is reset to the begining). The crash occurs when a cursor is moved.
Comment 4 Myriam Schweingruber 2014-06-28 17:35:12 UTC
Don't you get a backtrace with Dr.Konqi? Your gdb backtrace is sadly quite useless, I don't see any relation to Amarok, and it appears way too short short for a proper backtrace...
Comment 5 Myriam Schweingruber 2014-08-10 19:32:33 UTC
Closing for lack of feedback. Please feel free to reopen this report if you can provide the requested information.
Comment 6 Beo Enduser 2015-02-24 17:49:10 UTC
Created attachment 91274 [details]
crash report from terminal in debug mode

This is from starting Amarok in debug mode.
Comment 7 Myriam Schweingruber 2015-02-24 18:17:39 UTC
(In reply to gymnart from comment #6)
> Created attachment 91274 [details]
> crash report from terminal in debug mode
> 
> This is from starting Amarok in debug mode.

That is not a backtrace, please see comment #2 on how to get a backtrace. Also please paste the resulting backtrace in line, else it is not searchable.
Comment 8 Myriam Schweingruber 2015-02-24 18:18:10 UTC
Setting status correctly, waiting for backtrace.
Comment 9 Beo Enduser 2015-02-24 18:38:42 UTC
I'm sorry, I can't get the backtrace to work. I do have the packages listed, I've even tried this command as listed on the page you gave:
gdb `which amarok` -p `pidof amarok`
but it is just giving me syntax error messages. I can't get this to work.
Please be assured though, that the bug does exist.

I'm running Kubuntu 14.04
with:
Qt: 4.8.6
KDE Development Platform: 4.13.3
Amarok: 2.8.0
Comment 10 Myriam Schweingruber 2015-02-24 18:54:45 UTC
What exact syntax errors do you get?
Comment 11 Beo Enduser 2015-02-24 19:18:42 UTC
This (pasted right from that page from comment #2):
gdb `which amarok` -p `pidof amarok`
gdb: option '--p' requires an argument
Use `gdb --help' for a complete list of options.
$  (gdb) thread apply all bt
bash: syntax error near unexpected token `thread'

and this when trying to get it to run:
(gdb) run
Starting program:  
No executable file specified.
Use the "file" or "exec-file" command.

The only command it seems to understand is quit.
Comment 12 Myriam Schweingruber 2015-02-24 21:24:47 UTC
Right, that is indeed a problem :) 
I will adapt the wiki to make this more clear, the entry 'pidof amarok' needs to be replaced by the PID number of the amarok process. You can see the PID number for example by running the command "top".

There is a simpler way, try the following lines, one after the other:

gdb amarok
run -d --nofork

This will start amarok in a much slower way, but you can then proceed to do the steps to provoke the crash. Once the crash happens, in the same console window, enter this:

thread apply all bt

We need the part that is printed after this command.
Comment 13 Beo Enduser 2015-02-24 22:24:38 UTC
Created attachment 91278 [details]
attachment-1728-0.html

Thank you very much, Myriam!
I will try that next time I am on my linux box.
On Feb 24, 2015 4:24 PM, "Myriam Schweingruber" <myriam@kde.org> wrote:

> https://bugs.kde.org/show_bug.cgi?id=335866
>
> --- Comment #12 from Myriam Schweingruber <myriam@kde.org> ---
> Right, that is indeed a problem :)
> I will adapt the wiki to make this more clear, the entry 'pidof amarok'
> needs
> to be replaced by the PID number of the amarok process. You can see the PID
> number for example by running the command "top".
>
> There is a simpler way, try the following lines, one after the other:
>
> gdb amarok
> run -d --nofork
>
> This will start amarok in a much slower way, but you can then proceed to
> do the
> steps to provoke the crash. Once the crash happens, in the same console
> window,
> enter this:
>
> thread apply all bt
>
> We need the part that is printed after this command.
>
> --
> You are receiving this mail because:
> You are on the CC list for the bug.
>
Comment 14 Beo Enduser 2015-02-25 19:01:23 UTC
ok, here is what happened (I hope this is clear)
Still no backtrace ability, sadly....

1st time when I typed gdb amarok, it gave me this:

GNU gdb (Ubuntu 7.7.1-0ubuntu5~14.04.2) 7.7.1
Copyright (C) 2014 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "i686-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from amarok...Reading symbols from /usr/lib/debug/.build-id/7c/6140a447298f012cd0ca023b1ba25a87c9e5a7.debug...done.
done.

1st attempt: gdb was running, then I started Amarok normally because run -d –nofork didn't do anything the first time I tried it. 

This is the part, as far as I can figure that refers to the time of the crash:

amarok: BEGIN: void EngineController::slotMetaDataChanged() 
amarok:   [EngineController] slotMetaDataChanged() triggered by phonon, but we've already seen exactly the same metadata recently. Ignoring for now. 
amarok: END__: void EngineController::slotMetaDataChanged() [Took: 0s] 
Calling appendChild() on a null node does nothing.
amarok: BEGIN: static void EqualizerDialog::showOnce(QWidget*) 
amarok:   BEGIN: EqualizerDialog::EqualizerDialog(QWidget*) 
QLayout: Attempting to add QLayout "" to EqualizerDialog "EqualizerDialog", which already has a layout
amarok:     BEGIN: void EqualizerDialog::updateEngine() 
amarok:     END__: void EqualizerDialog::updateEngine() [Took: 0s] 
amarok:     BEGIN: void EqualizerDialog::updateEngine() 
amarok:     END__: void EqualizerDialog::updateEngine() [Took: 0s] 
amarok:   END__: EqualizerDialog::EqualizerDialog(QWidget*) [Took: 0.003s] 
amarok: END__: static void EqualizerDialog::showOnce(QWidget*) [Took: 0.01s] 
amarok(2566)/kdeui (kdelibs) KDialogPrivate::queuedLayoutUpdate: EqualizerDialog created with a layout; don't do that, KDialog takes care of it, use mainWidget or setMainWidget instead 
amarok: BEGIN: void EqualizerDialog::updateEngine() 
amarok: END__: void EqualizerDialog::updateEngine() [Took: 0.019s] 
amarok: [EngineController] slotStateChanged from 2 to 4 
amarok: MPRIS2: Queueing up a PropertiesChanged signal 
amarok: [EngineController] slotTrackLengthChanged( -1 ) 
amarok: BEGIN: void ProgressWidget::redrawBookmarks(const QString*) 
amarok:   found  0  timecodes on this track 
amarok: END__: void ProgressWidget::redrawBookmarks(const QString*) [Took: 0s] 
amarok: MPRIS2: Album image location is KUrl("") 
amarok: [EngineController] slotStateChanged from 4 to 1 
amarok: [EngineController] slotTrackLengthChanged( -1 ) 
amarok: BEGIN: void ProgressWidget::redrawBookmarks(const QString*) 
amarok:   found  0  timecodes on this track 
amarok: END__: void ProgressWidget::redrawBookmarks(const QString*) [Took: 0s] 
amarok: MPRIS2: Album image location is KUrl("") 
amarok: MPRIS2: Queueing up a PropertiesChanged signal 
amarok: BEGIN: void EngineController::slotMetaDataChanged() 
amarok:   [EngineController] slotMetaDataChanged() triggered by phonon, but we've already seen exactly the same metadata recently. Ignoring for now. 
amarok: END__: void EngineController::slotMetaDataChanged() [Took: 0s] 
amarok: BEGIN: void EngineController::slotNewTrackPlaying(const Phonon::MediaSource&) 
amarok:   [EngineController] Using gain of -1 with relative peak of -1 
amarok:   BEGIN: void Playlist::Actions::slotTrackPlaying(Meta::TrackPtr) 
amarok:     [WARNING] [Playlist::Actions] engineNewTrackPlaying: "Centipede" does not match what the playlist controller thought it should be 
amarok:   END__: void Playlist::Actions::slotTrackPlaying(Meta::TrackPtr) [Took: 0s] 
amarok:   BEGIN: void ProgressWidget::redrawBookmarks(const QString*) 
amarok:     found  0  timecodes on this track 
amarok:   END__: void ProgressWidget::redrawBookmarks(const QString*) [Took: 0s] 
amarok:   BEGIN: void CurrentEngine::trackPlaying(Meta::TrackPtr) 
amarok:   END__: void CurrentEngine::trackPlaying(Meta::TrackPtr) [Took: 0s] 
amarok:   BEGIN: void OSDWidget::show(const QString&, const QImage&) 
amarok:   END__: void OSDWidget::show(const QString&, const QImage&) [Took: 0s] 
amarok: END__: void EngineController::slotNewTrackPlaying(const Phonon::MediaSource&) [Took: 0.004s] 
amarok: BEGIN: void ScriptManager::notifyFetchLyrics(const QString&, const QString&) 
amarok:   SCRIPT "LyricWiki" :  "request URL: http://lyrics.wikia.com/api.php?action=query&prop=revisions&rvprop=content&format=xml&titles=L'AMOUR:Centipede" 
amarok:   BEGIN: static QScriptValue Downloader::init(QScriptContext*, QScriptEngine*, bool) 
amarok:   END__: static QScriptValue Downloader::init(QScriptContext*, QScriptEngine*, bool) [Took: 0s] 
amarok: END__: void ScriptManager::notifyFetchLyrics(const QString&, const QString&) [Took: 0s] 
amarok: MPRIS2: Queueing up a PropertiesChanged signal 
amarok: MPRIS2: Album image location is KUrl("") 
amarok: BEGIN: static QScriptValue Downloader::init(QScriptContext*, QScriptEngine*, bool) 
amarok: END__: static QScriptValue Downloader::init(QScriptContext*, QScriptEngine*, bool) [Took: 0s] 
amarok: BEGIN: void AmarokScript::AmarokLyricsScript::showLyricsNotFound(const QString&) const 
amarok:   BEGIN: void LyricsManager::lyricsNotFound(const QString&) 
amarok:     BEGIN: bool LyricsManager::showCached() 
amarok:     END__: bool LyricsManager::showCached() [Took: 0s] 
amarok:     BEGIN: void LyricsSubject::sendLyricsMessage(const QString&, const QString&) 
amarok:       BEGIN: virtual void LyricsEngine::lyricsMessage(const QString&, const QString&) 
amarok:       END__: virtual void LyricsEngine::lyricsMessage(const QString&, const QString&) [Took: 0s] 
amarok:     END__: void LyricsSubject::sendLyricsMessage(const QString&, const QString&) [Took: 0s] 
amarok:   END__: void LyricsManager::lyricsNotFound(const QString&) [Took: 0s] 
amarok: END__: void AmarokScript::AmarokLyricsScript::showLyricsNotFound(const QString&) const [Took: 0s] 
amarok: [EngineController] slotStateChanged from 1 to 4 
amarok: MPRIS2: Queueing up a PropertiesChanged signal 
amarok: [EngineController] slotTrackLengthChanged( 194873 ) 
amarok: BEGIN: void ProgressWidget::redrawBookmarks(const QString*) 
amarok:   found  0  timecodes on this track 
amarok: END__: void ProgressWidget::redrawBookmarks(const QString*) [Took: 0.003s] 
amarok: MPRIS2: Album image location is KUrl("") 
amarok: [EngineController] slotStateChanged from 4 to 2 
amarok: BEGIN: void EngineController::slotMetaDataChanged() 
amarok:   [EngineController] slotMetaDataChanged() triggered by phonon, but we've already seen exactly the same metadata recently. Ignoring for now. 
amarok: END__: void EngineController::slotMetaDataChanged() [Took: 0s] 
amarok: BEGIN: void EngineController::slotMetaDataChanged() 
amarok:   [EngineController] slotMetaDataChanged() triggered by phonon, but we've already seen exactly the same metadata recently. Ignoring for now. 
amarok: END__: void EngineController::slotMetaDataChanged() [Took: 0s] 
amarok: BEGIN: void EqualizerDialog::updateEngine() 
amarok: END__: void EqualizerDialog::updateEngine() [Took: 0s] 

(amarok:2566): GStreamer-CRITICAL **: write map requested on non-writable buffer
QSocketNotifier: Invalid socket 45940830 and type '', disabling...
QSocketNotifier: Invalid socket 45940830 and type '', disabling...
QSocketNotifier: Invalid socket 45940830 and type '', disabling...
QSocketNotifier: Invalid socket 45940830 and type '', disabling...
QSocketNotifier: Invalid socket 45940830 and type '', disabling...
QSocketNotifier: Invalid socket 45940830 and type '', disabling...
QSocketNotifier: Invalid socket 45940830 and type '', disabling...
QSocketNotifier: Invalid socket 45940830 and type '', disabling...

2nd time I tried it, (the run -d --nofork command worked this time!) this is the last bit:

(amarok:3018): GStreamer-CRITICAL **: write map requested on non-writable buffer
QCoreApplication: Object event filter cannot be in a different thread.
GLib (gthread-posix.c): Unexpected error from C library during 'pthread_mutex_lock': Invalid argument.  Aborting.
Unable to start Dr. Konqi
Unable to start Dr. Konqi
Re-raising signal for Apport handling.

Then I typed:
threat apply all bt
it gave me:
Undefined command: "threat".  Try "help".
Comment 15 Myriam Schweingruber 2015-02-25 19:43:10 UTC
you mistyped, the command is

thread apply all bt  (thread, not threat)
Comment 16 Beo Enduser 2015-02-25 22:32:03 UTC
Created attachment 91297 [details]
attachment-27670-0.html

Arrgh! my crappy typing strikes again. Thanks for catching that.
I'll try again soon.
Comment 17 Beo Enduser 2015-02-26 22:05:27 UTC
Created attachment 91307 [details]
Backtrace 1

1st backtrace -- started my song, opened the equalizer, activated it then moved a slider, Amarok froze.
Comment 18 Beo Enduser 2015-02-26 22:06:24 UTC
Created attachment 91308 [details]
2nd backtrace

2nd test -- this time I tried using one of the presets.
Comment 19 Beo Enduser 2015-02-26 22:09:44 UTC
Ok, I finally have 2 backtraces for you. Both times, Amarok just froze, it's window didn't close as it had when I first reported it to you.
 
Test 1: I tried to move the equalizer slider.
2nd test: I tried to use a preset.

Let me know if this is good.
Comment 20 Myriam Schweingruber 2015-02-27 12:05:23 UTC
Could you please paste the backtraces inline next time? Searching strings in attachments is not possible in the search options of bugzilla. See also my comment #7...

2nd backtrace:

2nd test (tried to use a preset)

amarok: BEGIN: void EqualizerDialog::updateEngine() 
amarok: END__: void EqualizerDialog::updateEngine() [Took: 0s] 

(amarok:3131): GStreamer-CRITICAL **: write map requested on non-writable buffer

Program received signal SIGSEGV, Segmentation fault.
QDesktopWidget::screen (this=0x81abe40, screen=screen@entry=0)
    at kernel/qdesktopwidget_x11.cpp:263
263     kernel/qdesktopwidget_x11.cpp: No such file or directory.
(gdb) thread apply all bt

Thread 37 (Thread 0x8436ab40 (LWP 3196)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad4b in pthread_cond_wait@@GLIBC_2.3.2 ()
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c56ec in __pthread_cond_wait (cond=0x839a5d0, mutex=0x839a578)
    at forward.c:149
#3  0xb4fa64a0 in g_cond_wait ()
   from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xa3860021 in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#5  0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#6  0xb1d25b52 in gst_proxy_pad_chain_default ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#7  0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#8  0xb1d25b52 in gst_proxy_pad_chain_default ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#9  0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#10 0xb1e1a127 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#11 0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#12 0xb1e1a127 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#13 0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#14 0xb1d25b52 in gst_proxy_pad_chain_default ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#15 0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#16 0xa385e975 in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#17 0xb1d66498 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#18 0xb1d6744f in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
---Type <return> to continue, or q <return> to quit---
#19 0xb4f88405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#20 0xb4f879aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#21 0xb51c6f70 in start_thread (arg=0x8436ab40) at pthread_create.c:312
#22 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 36 (Thread 0xa829eb40 (LWP 3195)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb61a95ab in poll () at ../sysdeps/unix/syscall-template.S:81
#2  0xb4ab9bbd in ?? () from /usr/lib/i386-linux-gnu/libpulse.so.0
#3  0xb4aa84ee in pa_mainloop_poll ()
   from /usr/lib/i386-linux-gnu/libpulse.so.0
#4  0xb4aa8d1d in pa_mainloop_iterate ()
   from /usr/lib/i386-linux-gnu/libpulse.so.0
#5  0xb4aa8df4 in pa_mainloop_run ()
   from /usr/lib/i386-linux-gnu/libpulse.so.0
#6  0xb4ab9b5c in ?? () from /usr/lib/i386-linux-gnu/libpulse.so.0
#7  0xb1ff44dd in ?? ()
   from /usr/lib/i386-linux-gnu/pulseaudio/libpulsecommon-4.0.so
#8  0xb51c6f70 in start_thread (arg=0xa829eb40) at pthread_create.c:312
#9  0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 30 (Thread 0x83b69b40 (LWP 3189)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad4b in pthread_cond_wait@@GLIBC_2.3.2 ()
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c56ec in __pthread_cond_wait (cond=0x90ed17dc, 
    mutex=0x90ed17c4) at forward.c:149
#3  0xb422a9f3 in WTF::ThreadCondition::wait(WTF::Mutex&) ()
   from /usr/lib/i386-linux-gnu/libQtWebKit.so.4
#4  0xb3f06574 in ?? () from /usr/lib/i386-linux-gnu/libQtWebKit.so.4
#5  0xb42117c6 in ?? () from /usr/lib/i386-linux-gnu/libQtWebKit.so.4
#6  0xb422a369 in ?? () from /usr/lib/i386-linux-gnu/libQtWebKit.so.4
#7  0xb51c6f70 in start_thread (arg=0x83b69b40) at pthread_create.c:312
#8  0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 28 (Thread 0x84b6bb40 (LWP 3186)):
---Type <return> to continue, or q <return> to quit---
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad4b in pthread_cond_wait@@GLIBC_2.3.2 ()
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c56ec in __pthread_cond_wait (cond=0x811f8c0, mutex=0xb1c96f8)
    at forward.c:149
#3  0xb4fa64a0 in g_cond_wait ()
   from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xb1d6668e in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#5  0xb1d6744f in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#6  0xb4f88405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#7  0xb4f879aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#8  0xb51c6f70 in start_thread (arg=0x84b6bb40) at pthread_create.c:312
#9  0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 27 (Thread 0x8536cb40 (LWP 3185)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad4b in pthread_cond_wait@@GLIBC_2.3.2 ()
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c56ec in __pthread_cond_wait (cond=0xa1f95a90, 
    mutex=0xa1f12988) at forward.c:149
#3  0xb4fa64a0 in g_cond_wait ()
   from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xb1d6668e in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#5  0xb1d6744f in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#6  0xb4f88405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#7  0xb4f879aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#8  0xb51c6f70 in start_thread (arg=0x8536cb40) at pthread_create.c:312
#9  0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 26 (Thread 0x85b6db40 (LWP 3184)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad4b in pthread_cond_wait@@GLIBC_2.3.2 ()
---Type <return> to continue, or q <return> to quit---
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c56ec in __pthread_cond_wait (cond=0xae88f38, mutex=0x88f6bd0)
    at forward.c:149
#3  0xb4fa64a0 in g_cond_wait ()
   from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xa3860021 in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#5  0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#6  0xb1d25b52 in gst_proxy_pad_chain_default ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#7  0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#8  0xa38277e0 in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstplayback.so
#9  0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#10 0xa386e58c in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#11 0xa386e7aa in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#12 0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#13 0xb1d25b52 in gst_proxy_pad_chain_default ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#14 0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#15 0xa385150c in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#16 0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#17 0xb1d25b52 in gst_proxy_pad_chain_default ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#18 0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#19 0xb1d25b52 in gst_proxy_pad_chain_default ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#20 0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
---Type <return> to continue, or q <return> to quit---
#21 0xb1e591aa in ?? ()
   from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#22 0xb1e594d7 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#23 0xb1e5e97a in gst_audio_decoder_finish_frame ()
   from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#24 0x95d308f3 in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstflump3dec.so
#25 0xb1e5ad7a in ?? ()
   from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#26 0xb1e5b0eb in ?? ()
   from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#27 0xb1e5b4eb in ?? ()
   from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#28 0xb1e5c8a8 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#29 0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#30 0xb1df4033 in gst_base_parse_push_frame ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#31 0xb1df85eb in gst_base_parse_finish_frame ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#32 0x9658a421 in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstaudioparsers.so
#33 0xb1df0871 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#34 0xb1df0f33 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#35 0xb1df625f in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#36 0xb1d66498 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#37 0xb1d6744f in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#38 0xb4f88405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#39 0xb4f879aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#40 0xb51c6f70 in start_thread (arg=0x85b6db40) at pthread_create.c:312
#41 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

---Type <return> to continue, or q <return> to quit---
Thread 25 (Thread 0x8636eb40 (LWP 3183)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad1d in pthread_cond_wait@@GLIBC_2.3.2 ()
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:145
#2  0xb61c56ec in __pthread_cond_wait (cond=0xb48a148, mutex=0x827fc38)
    at forward.c:149
#3  0xb1ff385b in pa_cond_wait ()
   from /usr/lib/i386-linux-gnu/pulseaudio/libpulsecommon-4.0.so
#4  0xb4aba34e in pa_threaded_mainloop_wait ()
   from /usr/lib/i386-linux-gnu/libpulse.so.0
#5  0xac5b0021 in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstpulse.so
#6  0xb1e5166b in gst_audio_ring_buffer_commit ()
   from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#7  0xb1e6d152 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#8  0xb1e08757 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#9  0xb1e0a2c8 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#10 0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#11 0xb1e1a127 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#12 0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#13 0xb1e1a127 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#14 0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#15 0xb1e1a127 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#16 0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#17 0xa385e975 in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#18 0xb1d66498 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#19 0xb1d6744f in ?? ()
---Type <return> to continue, or q <return> to quit---
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#20 0xb4f88405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#21 0xb4f879aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#22 0xb51c6f70 in start_thread (arg=0x8636eb40) at pthread_create.c:312
#23 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 24 (Thread 0x92cfcb40 (LWP 3182)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb61a9698 in __GI_ppoll (fds=0x9e522880, nfds=1, 
    timeout=0x92cfb828, sigmask=0x0)
    at ../sysdeps/unix/sysv/linux/ppoll.c:56
#2  0xb1d48f89 in gst_poll_wait ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#3  0xb1d5f395 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#4  0xb1d1252a in gst_clock_id_wait ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#5  0xb1e05300 in gst_base_sink_wait_clock ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#6  0xb1e06cd7 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#7  0xb1e07cee in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#8  0xb1e0a2c8 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#9  0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#10 0xb1e1a127 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#11 0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#12 0xb1e1a127 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#13 0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#14 0xa385e975 in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#15 0xb1d66498 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
---Type <return> to continue, or q <return> to quit---
#16 0xb1d6744f in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#17 0xb4f88405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#18 0xb4f879aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#19 0xb51c6f70 in start_thread (arg=0x92cfcb40) at pthread_create.c:312
#20 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 23 (Thread 0x934fdb40 (LWP 3181)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad4b in pthread_cond_wait@@GLIBC_2.3.2 ()
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c56ec in __pthread_cond_wait (cond=0x83b2fb8, mutex=0x83b2f98)
    at forward.c:149
#3  0xb4fa64a0 in g_cond_wait ()
   from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xa385e05c in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#5  0xb1d66498 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#6  0xb1d6744f in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#7  0xb4f88405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#8  0xb4f879aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#9  0xb51c6f70 in start_thread (arg=0x934fdb40) at pthread_create.c:312
#10 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 22 (Thread 0x93cfeb40 (LWP 3180)):
#0  0xa7a2a5f5 in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstequalizer.so
#1  0xa7a2b4e3 in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstequalizer.so
#2  0xb1e196ad in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#3  0xb1e1a04d in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#4  0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
---Type <return> to continue, or q <return> to quit---
#5  0xb1e1a127 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#6  0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#7  0xa385e975 in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#8  0xb1d66498 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#9  0xb1d6744f in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#10 0xb4f88405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#11 0xb4f879aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#12 0xb51c6f70 in start_thread (arg=0x93cfeb40) at pthread_create.c:312
#13 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 21 (Thread 0x944ffb40 (LWP 3179)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad4b in pthread_cond_wait@@GLIBC_2.3.2 ()
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c56ec in __pthread_cond_wait (cond=0x83adee8, mutex=0x811bc80)
    at forward.c:149
#3  0xb4fa64a0 in g_cond_wait ()
   from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xa385e05c in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#5  0xb1d66498 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#6  0xb1d6744f in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#7  0xb4f88405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#8  0xb4f879aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#9  0xb51c6f70 in start_thread (arg=0x944ffb40) at pthread_create.c:312
#10 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 20 (Thread 0x96563b40 (LWP 3178)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad4b in pthread_cond_wait@@GLIBC_2.3.2 ()
---Type <return> to continue, or q <return> to quit---
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c56ec in __pthread_cond_wait (cond=0x838aad8, mutex=0x838aa80)
    at forward.c:149
#3  0xb4fa64a0 in g_cond_wait ()
   from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xa3860021 in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#5  0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#6  0xb1d25b52 in gst_proxy_pad_chain_default ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#7  0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#8  0xa386e150 in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#9  0xa386e7aa in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#10 0xb1d34f42 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#11 0xa385e975 in ?? ()
   from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#12 0xb1d66498 in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#13 0xb1d6744f in ?? ()
   from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#14 0xb4f88405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#15 0xb4f879aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#16 0xb51c6f70 in start_thread (arg=0x96563b40) at pthread_create.c:312
#17 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 19 (Thread 0x8fe17b40 (LWP 3151)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad4b in pthread_cond_wait@@GLIBC_2.3.2 ()
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c56ec in __pthread_cond_wait (cond=0xb548f8d0, 
    mutex=0xb548f8b8) at forward.c:149
#3  0xb538cc92 in ?? () from /usr/lib/i386-linux-gnu/libQtScript.so.4
---Type <return> to continue, or q <return> to quit---
#4  0xb538ccdf in ?? () from /usr/lib/i386-linux-gnu/libQtScript.so.4
#5  0xb51c6f70 in start_thread (arg=0x8fe17b40) at pthread_create.c:312
#6  0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 18 (Thread 0x90654b40 (LWP 3150)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb61a95ab in poll () at ../sysdeps/unix/syscall-template.S:81
#2  0xb4f7020b in g_poll () from /lib/i386-linux-gnu/libglib-2.0.so.0
#3  0xb4f613e8 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xb4f61528 in g_main_context_iteration ()
   from /lib/i386-linux-gnu/libglib-2.0.so.0
#5  0xb650d95f in QEventDispatcherGlib::processEvents (this=
    0xa05025a0, flags=...) at kernel/qeventdispatcher_glib.cpp:436
#6  0xb64dc823 in QEventLoop::processEvents (this=this@entry=
    0x90654288, flags=...) at kernel/qeventloop.cpp:149
#7  0xb64dcb49 in QEventLoop::exec (this=this@entry=0x90654288, 
    flags=...) at kernel/qeventloop.cpp:204
#8  0xb63c923d in QThread::exec (this=this@entry=0x8975490)
    at thread/qthread.cpp:537
#9  0xb63c938b in QThread::run (this=0x8975490)
    at thread/qthread.cpp:604
#10 0xb63cbb6f in QThreadPrivate::start (arg=0x8975490)
    at thread/qthread_unix.cpp:349
#11 0xb51c6f70 in start_thread (arg=0x90654b40) at pthread_create.c:312
#12 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 17 (Thread 0x90e55b40 (LWP 3148)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb61b0751 in select () at ../sysdeps/unix/syscall-template.S:81
#2  0xb64b93b0 in QProcessManager::run (
    this=0xb664bd8c <processManager()::processManager>)
    at io/qprocess_unix.cpp:270
#3  0xb63cbb6f in QThreadPrivate::start (
    arg=0xb664bd8c <processManager()::processManager>)
    at thread/qthread_unix.cpp:349
#4  0xb51c6f70 in start_thread (arg=0x90e55b40) at pthread_create.c:312
#5  0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129
---Type <return> to continue, or q <return> to quit---

Thread 16 (Thread 0x91756b40 (LWP 3147)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad4b in pthread_cond_wait@@GLIBC_2.3.2 ()
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c56ec in __pthread_cond_wait (cond=0xb4a73cb0, 
    mutex=0xb4a73c98) at forward.c:149
#3  0xb41fb9ac in ?? () from /usr/lib/i386-linux-gnu/libQtWebKit.so.4
#4  0xb41fb9ff in ?? () from /usr/lib/i386-linux-gnu/libQtWebKit.so.4
#5  0xb51c6f70 in start_thread (arg=0x91756b40) at pthread_create.c:312
#6  0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 15 (Thread 0x92158b40 (LWP 3145)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb61a95ab in poll () at ../sysdeps/unix/syscall-template.S:81
#2  0xb4f7020b in g_poll () from /lib/i386-linux-gnu/libglib-2.0.so.0
#3  0xb4f613e8 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xb4f61528 in g_main_context_iteration ()
   from /lib/i386-linux-gnu/libglib-2.0.so.0
#5  0xb650d95f in QEventDispatcherGlib::processEvents (
    this=0x9ef6f5d0, flags=...) at kernel/qeventdispatcher_glib.cpp:436
#6  0xb64dc823 in QEventLoop::processEvents (
    this=this@entry=0x92158258, flags=...) at kernel/qeventloop.cpp:149
#7  0xb64dcb49 in QEventLoop::exec (this=this@entry=0x92158258, 
    flags=...) at kernel/qeventloop.cpp:204
#8  0xb63c923d in QThread::exec (this=this@entry=0x894a450)
    at thread/qthread.cpp:537
#9  0xb64bcc44 in QInotifyFileSystemWatcherEngine::run (this=0x894a450)
    at io/qfilesystemwatcher_inotify.cpp:265
#10 0xb63cbb6f in QThreadPrivate::start (arg=0x894a450)
    at thread/qthread_unix.cpp:349
#11 0xb51c6f70 in start_thread (arg=0x92158b40) at pthread_create.c:312
#12 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 14 (Thread 0x9cafdb40 (LWP 3144)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad4b in pthread_cond_wait@@GLIBC_2.3.2 ()
---Type <return> to continue, or q <return> to quit---
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c56ec in __pthread_cond_wait (cond=0x84564e8, mutex=0x84564d0)
    at forward.c:149
#3  0xb63cc0f5 in wait (time=4294967295, this=0x84564d0)
    at thread/qwaitcondition_unix.cpp:86
#4  QWaitCondition::wait (this=this@entry=0x8456420, mutex=0x84565f0, 
    time=time@entry=4294967295) at thread/qwaitcondition_unix.cpp:158
#5  0xb59038d3 in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0x8456408, th=th@entry=0x9fa167d8)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#6  0xb590681b in ThreadWeaver::WorkingHardState::waitForAvailableJob (
    this=0x8274820, th=0x9fa167d8)
    at ../../../threadweaver/Weaver/WorkingHardState.cpp:77
#7  0xb590382a in ThreadWeaver::WeaverImpl::waitForAvailableJob (
    this=0x8456408, th=th@entry=0x9fa167d8)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:361
#8  0xb59068f2 in ThreadWeaver::WorkingHardState::applyForWork (
    this=0x8274820, th=0x9fa167d8, previous=0x95726b0)
    at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#9  0xb5902782 in ThreadWeaver::WeaverImpl::applyForWork (
    this=0x8456408, th=0x9fa167d8, previous=0x95726b0)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#10 0xb5905283 in ThreadWeaver::Thread::run (this=0x9fa167d8)
    at ../../../threadweaver/Weaver/Thread.cpp:98
#11 0xb63cbb6f in QThreadPrivate::start (arg=0x9fa167d8)
    at thread/qthread_unix.cpp:349
#12 0xb51c6f70 in start_thread (arg=0x9cafdb40) at pthread_create.c:312
#13 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 13 (Thread 0x9d2feb40 (LWP 3143)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad4b in pthread_cond_wait@@GLIBC_2.3.2 ()
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c56ec in __pthread_cond_wait (cond=0x84564e8, mutex=0x84564d0)
    at forward.c:149
#3  0xb63cc0f5 in wait (time=4294967295, this=0x84564d0)
    at thread/qwaitcondition_unix.cpp:86
---Type <return> to continue, or q <return> to quit---
#4  QWaitCondition::wait (this=this@entry=0x8456420, mutex=0x84565f0, 
    time=time@entry=4294967295) at thread/qwaitcondition_unix.cpp:158
#5  0xb59038d3 in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0x8456408, th=th@entry=0x9fa13050)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#6  0xb590681b in ThreadWeaver::WorkingHardState::waitForAvailableJob (
    this=0x8274820, th=0x9fa13050)
    at ../../../threadweaver/Weaver/WorkingHardState.cpp:77
#7  0xb590382a in ThreadWeaver::WeaverImpl::waitForAvailableJob (
    this=0x8456408, th=th@entry=0x9fa13050)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:361
#8  0xb59068f2 in ThreadWeaver::WorkingHardState::applyForWork (
    this=0x8274820, th=0x9fa13050, previous=0x0)
    at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#9  0xb5902782 in ThreadWeaver::WeaverImpl::applyForWork (
    this=0x8456408, th=0x9fa13050, previous=0x0)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#10 0xb5906911 in ThreadWeaver::WorkingHardState::applyForWork (
    this=0x8274820, th=0x9fa13050, previous=0x95711d0)
    at ../../../threadweaver/Weaver/WorkingHardState.cpp:71
#11 0xb5902782 in ThreadWeaver::WeaverImpl::applyForWork (
    this=0x8456408, th=0x9fa13050, previous=0x95711d0)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#12 0xb5905283 in ThreadWeaver::Thread::run (this=0x9fa13050)
    at ../../../threadweaver/Weaver/Thread.cpp:98
#13 0xb63cbb6f in QThreadPrivate::start (arg=0x9fa13050)
    at thread/qthread_unix.cpp:349
#14 0xb51c6f70 in start_thread (arg=0x9d2feb40) at pthread_create.c:312
#15 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 12 (Thread 0x9daffb40 (LWP 3142)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad4b in pthread_cond_wait@@GLIBC_2.3.2 ()
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c56ec in __pthread_cond_wait (cond=0x84564e8, mutex=0x84564d0)
    at forward.c:149
#3  0xb63cc0f5 in wait (time=4294967295, this=0x84564d0)
    at thread/qwaitcondition_unix.cpp:86
---Type <return> to continue, or q <return> to quit---
#4  QWaitCondition::wait (this=this@entry=0x8456420, mutex=0x84565f0, 
    time=time@entry=4294967295) at thread/qwaitcondition_unix.cpp:158
#5  0xb59038d3 in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0x8456408, th=th@entry=0x9fa110b0)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#6  0xb590681b in ThreadWeaver::WorkingHardState::waitForAvailableJob (
    this=0x8274820, th=0x9fa110b0)
    at ../../../threadweaver/Weaver/WorkingHardState.cpp:77
#7  0xb590382a in ThreadWeaver::WeaverImpl::waitForAvailableJob (
    this=0x8456408, th=th@entry=0x9fa110b0)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:361
#8  0xb59068f2 in ThreadWeaver::WorkingHardState::applyForWork (
    this=0x8274820, th=0x9fa110b0, previous=0x9556300)
    at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#9  0xb5902782 in ThreadWeaver::WeaverImpl::applyForWork (
    this=0x8456408, th=0x9fa110b0, previous=0x9556300)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#10 0xb5905283 in ThreadWeaver::Thread::run (this=0x9fa110b0)
    at ../../../threadweaver/Weaver/Thread.cpp:98
#11 0xb63cbb6f in QThreadPrivate::start (arg=0x9fa110b0)
    at thread/qthread_unix.cpp:349
#12 0xb51c6f70 in start_thread (arg=0x9daffb40) at pthread_create.c:312
#13 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 11 (Thread 0x9e4ffb40 (LWP 3141)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad4b in pthread_cond_wait@@GLIBC_2.3.2 ()
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c56ec in __pthread_cond_wait (cond=0x84564e8, mutex=0x84564d0)
    at forward.c:149
#3  0xb63cc0f5 in wait (time=4294967295, this=0x84564d0)
    at thread/qwaitcondition_unix.cpp:86
#4  QWaitCondition::wait (this=this@entry=0x8456420, mutex=0x84565f0, 
    time=time@entry=4294967295) at thread/qwaitcondition_unix.cpp:158
#5  0xb59038d3 in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0x8456408, th=th@entry=0x9fa11b80)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#6  0xb590681b in ThreadWeaver::WorkingHardState::waitForAvailableJob (
---Type <return> to continue, or q <return> to quit---
    this=0x8274820, th=0x9fa11b80)
    at ../../../threadweaver/Weaver/WorkingHardState.cpp:77
#7  0xb590382a in ThreadWeaver::WeaverImpl::waitForAvailableJob (
    this=0x8456408, th=th@entry=0x9fa11b80)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:361
#8  0xb59068f2 in ThreadWeaver::WorkingHardState::applyForWork (
    this=0x8274820, th=0x9fa11b80, previous=0x0)
    at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#9  0xb5902782 in ThreadWeaver::WeaverImpl::applyForWork (
    this=0x8456408, th=0x9fa11b80, previous=0x0)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#10 0xb5906911 in ThreadWeaver::WorkingHardState::applyForWork (
    this=0x8274820, th=0x9fa11b80, previous=0x9db0d240)
    at ../../../threadweaver/Weaver/WorkingHardState.cpp:71
#11 0xb5902782 in ThreadWeaver::WeaverImpl::applyForWork (
    this=0x8456408, th=0x9fa11b80, previous=0x9db0d240)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#12 0xb5905283 in ThreadWeaver::Thread::run (this=0x9fa11b80)
    at ../../../threadweaver/Weaver/Thread.cpp:98
#13 0xb63cbb6f in QThreadPrivate::start (arg=0x9fa11b80)
    at thread/qthread_unix.cpp:349
#14 0xb51c6f70 in start_thread (arg=0x9e4ffb40) at pthread_create.c:312
#15 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 10 (Thread 0x9eeffb40 (LWP 3140)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad4b in pthread_cond_wait@@GLIBC_2.3.2 ()
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c56ec in __pthread_cond_wait (cond=0x84564e8, mutex=0x84564d0)
    at forward.c:149
#3  0xb63cc0f5 in wait (time=4294967295, this=0x84564d0)
    at thread/qwaitcondition_unix.cpp:86
#4  QWaitCondition::wait (this=this@entry=0x8456420, mutex=0x84565f0, 
    time=time@entry=4294967295) at thread/qwaitcondition_unix.cpp:158
#5  0xb59038d3 in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0x8456408, th=th@entry=0x9fa0ee08)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#6  0xb590681b in ThreadWeaver::WorkingHardState::waitForAvailableJob (
---Type <return> to continue, or q <return> to quit---
    this=0x8274820, th=0x9fa0ee08)
    at ../../../threadweaver/Weaver/WorkingHardState.cpp:77
#7  0xb590382a in ThreadWeaver::WeaverImpl::waitForAvailableJob (
    this=0x8456408, th=th@entry=0x9fa0ee08)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:361
#8  0xb59068f2 in ThreadWeaver::WorkingHardState::applyForWork (
    this=0x8274820, th=0x9fa0ee08, previous=0x9564178)
    at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#9  0xb5902782 in ThreadWeaver::WeaverImpl::applyForWork (
    this=0x8456408, th=0x9fa0ee08, previous=0x9564178)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#10 0xb5905283 in ThreadWeaver::Thread::run (this=0x9fa0ee08)
    at ../../../threadweaver/Weaver/Thread.cpp:98
#11 0xb63cbb6f in QThreadPrivate::start (arg=0x9fa0ee08)
    at thread/qthread_unix.cpp:349
#12 0xb51c6f70 in start_thread (arg=0x9eeffb40) at pthread_create.c:312
#13 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 9 (Thread 0x9f852b40 (LWP 3139)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad4b in pthread_cond_wait@@GLIBC_2.3.2 ()
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c56ec in __pthread_cond_wait (cond=0x84564e8, mutex=0x84564d0)
    at forward.c:149
#3  0xb63cc0f5 in wait (time=4294967295, this=0x84564d0)
    at thread/qwaitcondition_unix.cpp:86
#4  QWaitCondition::wait (this=this@entry=0x8456420, mutex=0x84565f0, 
    time=time@entry=4294967295) at thread/qwaitcondition_unix.cpp:158
#5  0xb59038d3 in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0x8456408, th=th@entry=0x869acc0)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#6  0xb590681b in ThreadWeaver::WorkingHardState::waitForAvailableJob (
    this=0x8274820, th=0x869acc0)
    at ../../../threadweaver/Weaver/WorkingHardState.cpp:77
#7  0xb590382a in ThreadWeaver::WeaverImpl::waitForAvailableJob (
    this=0x8456408, th=th@entry=0x869acc0)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:361
#8  0xb59068f2 in ThreadWeaver::WorkingHardState::applyForWork (
---Type <return> to continue, or q <return> to quit---
    this=0x8274820, th=0x869acc0, previous=0x9e513db0)
    at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#9  0xb5902782 in ThreadWeaver::WeaverImpl::applyForWork (
    this=0x8456408, th=0x869acc0, previous=0x9e513db0)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#10 0xb5905283 in ThreadWeaver::Thread::run (this=0x869acc0)
    at ../../../threadweaver/Weaver/Thread.cpp:98
#11 0xb63cbb6f in QThreadPrivate::start (arg=0x869acc0)
    at thread/qthread_unix.cpp:349
#12 0xb51c6f70 in start_thread (arg=0x9f852b40) at pthread_create.c:312
#13 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 8 (Thread 0xa03ebb40 (LWP 3138)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cad4b in pthread_cond_wait@@GLIBC_2.3.2 ()
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c56ec in __pthread_cond_wait (cond=0x84564e8, mutex=0x84564d0)
    at forward.c:149
#3  0xb63cc0f5 in wait (time=4294967295, this=0x84564d0)
    at thread/qwaitcondition_unix.cpp:86
#4  QWaitCondition::wait (this=this@entry=0x8456420, mutex=0x84565f0, 
    time=time@entry=4294967295) at thread/qwaitcondition_unix.cpp:158
#5  0xb59038d3 in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0x8456408, th=th@entry=0x86455d8)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#6  0xb590681b in ThreadWeaver::WorkingHardState::waitForAvailableJob (
    this=0x8274820, th=0x86455d8)
    at ../../../threadweaver/Weaver/WorkingHardState.cpp:77
#7  0xb590382a in ThreadWeaver::WeaverImpl::waitForAvailableJob (
    this=0x8456408, th=th@entry=0x86455d8)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:361
#8  0xb59068f2 in ThreadWeaver::WorkingHardState::applyForWork (
    this=0x8274820, th=0x86455d8, previous=0x0)
    at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#9  0xb5902782 in ThreadWeaver::WeaverImpl::applyForWork (
    this=0x8456408, th=0x86455d8, previous=0x0)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#10 0xb5906911 in ThreadWeaver::WorkingHardState::applyForWork (
---Type <return> to continue, or q <return> to quit---
    this=0x8274820, th=0x86455d8, previous=0x9db0df70)
    at ../../../threadweaver/Weaver/WorkingHardState.cpp:71
#11 0xb5902782 in ThreadWeaver::WeaverImpl::applyForWork (
    this=0x8456408, th=0x86455d8, previous=0x9db0df70)
    at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#12 0xb5905283 in ThreadWeaver::Thread::run (this=0x86455d8)
    at ../../../threadweaver/Weaver/Thread.cpp:98
#13 0xb63cbb6f in QThreadPrivate::start (arg=0x86455d8)
    at thread/qthread_unix.cpp:349
#14 0xb51c6f70 in start_thread (arg=0xa03ebb40) at pthread_create.c:312
#15 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 7 (Thread 0xa0ecab40 (LWP 3137)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb61a95ab in poll () at ../sysdeps/unix/syscall-template.S:81
#2  0xb4f7020b in g_poll () from /lib/i386-linux-gnu/libglib-2.0.so.0
#3  0xb4f613e8 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xb4f61528 in g_main_context_iteration ()
   from /lib/i386-linux-gnu/libglib-2.0.so.0
#5  0xb650d95f in QEventDispatcherGlib::processEvents (
    this=0xa0500468, flags=...) at kernel/qeventdispatcher_glib.cpp:436
#6  0xb64dc823 in QEventLoop::processEvents (
    this=this@entry=0xa0eca258, flags=...) at kernel/qeventloop.cpp:149
#7  0xb64dcb49 in QEventLoop::exec (this=this@entry=0xa0eca258, 
    flags=...) at kernel/qeventloop.cpp:204
#8  0xb63c923d in QThread::exec (this=this@entry=0x84573d8)
    at thread/qthread.cpp:537
#9  0xb64bcc44 in QInotifyFileSystemWatcherEngine::run (this=0x84573d8)
    at io/qfilesystemwatcher_inotify.cpp:265
#10 0xb63cbb6f in QThreadPrivate::start (arg=0x84573d8)
    at thread/qthread_unix.cpp:349
#11 0xb51c6f70 in start_thread (arg=0xa0ecab40) at pthread_create.c:312
#12 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 6 (Thread 0xa2822b40 (LWP 3136)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cb12d in pthread_cond_timedwait@@GLIBC_2.3.2 ()
    at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_ti---Type <return> to continue, or q <return> to quit---
medwait.S:245
#2  0xb61c5744 in __pthread_cond_timedwait (cond=0x8455be8, 
    mutex=0x8455bd0, abstime=0xa2822158) at forward.c:162
#3  0xb63cc0d3 in wait (time=60000, this=0x8455bd0)
    at thread/qwaitcondition_unix.cpp:84
#4  QWaitCondition::wait (this=0x83b6b78, mutex=mutex@entry=0x83b6b74, 
    time=time@entry=60000) at thread/qwaitcondition_unix.cpp:158
#5  0xb77fe06a in AbstractDirectoryWatcher::run (this=0x83b6b60)
    at ../../src/scanner/AbstractDirectoryWatcher.cpp:65
#6  0xb59059c9 in ThreadWeaver::JobRunHelper::runTheJob (
    this=this@entry=0xa2822278, th=0x83bba00, job=job@entry=0x83b6b60)
    at ../../../threadweaver/Weaver/Job.cpp:106
#7  0xb5905bc5 in ThreadWeaver::Job::execute (this=0x83b6b60, 
    th=0x83bba00) at ../../../threadweaver/Weaver/Job.cpp:135
#8  0xb5905314 in ThreadWeaver::Thread::run (this=0x83bba00)
    at ../../../threadweaver/Weaver/Thread.cpp:108
#9  0xb63cbb6f in QThreadPrivate::start (arg=0x83bba00)
    at thread/qthread_unix.cpp:349
#10 0xb51c6f70 in start_thread (arg=0xa2822b40) at pthread_create.c:312
#11 0xb61b850e in clone ()
    at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 1 (Thread 0xaf0b0ac0 (LWP 3131)):
#0  QDesktopWidget::screen (this=0x81abe40, screen=screen@entry=0)
    at kernel/qdesktopwidget_x11.cpp:263
#1  0xb6ada590 in QWidgetPrivate::mapFromGlobal (this=0xb40e400, 
    pos=...) at kernel/qwidget_x11.cpp:1357
#2  0xb6ada543 in QWidgetPrivate::mapFromGlobal (this=0x8a06b00, 
    pos=...) at kernel/qwidget_x11.cpp:1350
#3  0xb6ada543 in QWidgetPrivate::mapFromGlobal (this=0xb413f00, 
    pos=...) at kernel/qwidget_x11.cpp:1350
#4  0xb6ada66f in QWidget::mapFromGlobal (this=this@entry=0xb1c3908, 
    pos=...) at kernel/qwidget_x11.cpp:1370
#5  0xb6a39712 in QApplicationPrivate::pickMouseReceiver (
    candidate=candidate@entry=0x951b200, globalPos=..., pos=..., 
    type=QEvent::MouseMove, buttons=..., buttonDown=0x0, 
    alienWidget=0xb1c3908) at kernel/qapplication.cpp:3105
#6  0xb6ac36b4 in QETWidget::translateMouseEvent (this=0x951b200, 
    event=event@entry=0xbfffeb0c) at kernel/qapplication_x11.cpp:4624
#7  0xb6ac2ec5 in QApplication::x11ProcessEvent (this=0xbfffee8c, 
---Type <return> to continue, or q <return> to quit---
    event=event@entry=0xbfffeb0c) at kernel/qapplication_x11.cpp:3627
#8  0xb6aee524 in x11EventSourceDispatch (s=0x8117960, callback=0x0, 
    user_data=0x0) at kernel/qguieventdispatcher_glib.cpp:146
#9  0xb4f611e3 in g_main_context_dispatch ()
   from /lib/i386-linux-gnu/libglib-2.0.so.0
#10 0xb4f61468 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#11 0xb4f61528 in g_main_context_iteration ()
   from /lib/i386-linux-gnu/libglib-2.0.so.0
#12 0xb650d93b in QEventDispatcherGlib::processEvents (
    this=this@entry=0x8054eb8, flags=...)
    at kernel/qeventdispatcher_glib.cpp:434
#13 0xb6aee5de in QGuiEventDispatcherGlib::processEvents (this=
    0x8054eb8, flags=...) at kernel/qguieventdispatcher_glib.cpp:204
#14 0xb64dc823 in QEventLoop::processEvents (
    this=this@entry=0xbfffedc8, flags=...) at kernel/qeventloop.cpp:149
#15 0xb64dcb49 in QEventLoop::exec (this=this@entry=0xbfffedc8, 
    flags=...) at kernel/qeventloop.cpp:204
#16 0xb64e28fe in QCoreApplication::exec ()
    at kernel/qcoreapplication.cpp:1225
#17 0xb6a37a24 in QApplication::exec () at kernel/qapplication.cpp:3828
#18 0x0804f775 in main (argc=3, argv=0xbfffef74)
    at ../../src/main.cpp:329
(gdb)
Comment 21 Myriam Schweingruber 2015-02-27 12:09:10 UTC
As seen in the backtrace, the crash is most likely with the phonon-backend-gstreamer, or the gstreamer library. Please make sure to get debugging symbols for gstreamer, pluseaudio and phonon and its backend so we can sort this out.

Reassigning to the phonon-backend-gstreamer
Comment 22 Beo Enduser 2015-03-09 16:00:12 UTC
My son-law made another backtrace. I'm pretty sure he got all the libraries. 

So, I will paste the report here.

Thread 41 (Thread 0x85028b40 (LWP 2471)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cc12d in pthread_cond_timedwait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_timedwait.S:245
#2  0xb61c5e24 in __pthread_cond_timedwait (cond=0x8291c90, mutex=0x8291c70, abstime=0x85028228) at forward.c:162
#3  0xb4fa75c7 in g_cond_wait_until () from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xb4f35c81 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#5  0xb4f36402 in g_async_queue_timeout_pop () from /lib/i386-linux-gnu/libglib-2.0.so.0
#6  0xb4f894f5 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#7  0xb4f889aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#8  0xb51c7f70 in start_thread (arg=0x85028b40) at pthread_create.c:312
#9  0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 40 (Thread 0x8602ab40 (LWP 2469)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd4b in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c5dcc in __pthread_cond_wait (cond=0x83a3210, mutex=0x83a31b8) at forward.c:149
#3  0xb4fa74a0 in g_cond_wait () from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xa7a27021 in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#5  0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#6  0xb1d26b52 in gst_proxy_pad_chain_default () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#7  0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#8  0xb1d26b52 in gst_proxy_pad_chain_default () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#9  0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#10 0xb1e1b127 in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#11 0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#12 0xb1e1b127 in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#13 0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#14 0xb1d26b52 in gst_proxy_pad_chain_default () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#15 0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#16 0xa7a25975 in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#17 0xb1d67498 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#18 0xb1d6844f in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#19 0xb4f89405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#20 0xb4f889aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#21 0xb51c7f70 in start_thread (arg=0x8602ab40) at pthread_create.c:312
#22 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 39 (Thread 0xa82a6b40 (LWP 2468)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb61a9c8b in poll () at ../sysdeps/unix/syscall-template.S:81
#2  0xb4ababbd in ?? () from /usr/lib/i386-linux-gnu/libpulse.so.0
#3  0xb4aa94ee in pa_mainloop_poll () from /usr/lib/i386-linux-gnu/libpulse.so.0
#4  0xb4aa9d1d in pa_mainloop_iterate () from /usr/lib/i386-linux-gnu/libpulse.so.0
#5  0xb4aa9df4 in pa_mainloop_run () from /usr/lib/i386-linux-gnu/libpulse.so.0
#6  0xb4abab5c in ?? () from /usr/lib/i386-linux-gnu/libpulse.so.0
#7  0xb1ff54dd in ?? () from /usr/lib/i386-linux-gnu/pulseaudio/libpulsecommon-4.0.so
#8  0xb51c7f70 in start_thread (arg=0xa82a6b40) at pthread_create.c:312
#9  0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 38 (Thread 0x846b8b40 (LWP 2466)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cc12d in pthread_cond_timedwait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_timedwait.S:245
#2  0xb61c5e24 in __pthread_cond_timedwait (cond=0x9948ea0, mutex=0x9948e88, abstime=0x846b8258) at forward.c:162
#3  0xb63cc0d3 in wait (time=30000, this=0x9948e88) at thread/qwaitcondition_unix.cpp:84
#4  QWaitCondition::wait (this=this@entry=0x94f9b88, mutex=mutex@entry=0x9948b3c, time=30000) at thread/qwaitcondition_unix.cpp:158
#5  0xb63bf016 in QThreadPoolThread::run (this=0x94f9b80) at concurrent/qthreadpool.cpp:142
#6  0xb63cbb6f in QThreadPrivate::start (arg=0x94f9b80) at thread/qthread_unix.cpp:349
#7  0xb51c7f70 in start_thread (arg=0x846b8b40) at pthread_create.c:312
#8  0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 30 (Thread 0x8742cb40 (LWP 2451)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd4b in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c5dcc in __pthread_cond_wait (cond=0x925fd7dc, mutex=0x925fd7c4) at forward.c:149
#3  0xb422b9f3 in WTF::ThreadCondition::wait(WTF::Mutex&) () from /usr/lib/i386-linux-gnu/libQtWebKit.so.4
---Type <return> to continue, or q <return> to quit---
#4  0xb3f07574 in ?? () from /usr/lib/i386-linux-gnu/libQtWebKit.so.4
#5  0xb42127c6 in ?? () from /usr/lib/i386-linux-gnu/libQtWebKit.so.4
#6  0xb422b369 in ?? () from /usr/lib/i386-linux-gnu/libQtWebKit.so.4
#7  0xb51c7f70 in start_thread (arg=0x8742cb40) at pthread_create.c:312
#8  0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 28 (Thread 0x8842eb40 (LWP 2444)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd4b in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c5dcc in __pthread_cond_wait (cond=0x8d0fc70, mutex=0x8d0aeb8) at forward.c:149
#3  0xb4fa74a0 in g_cond_wait () from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xb1d6768e in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#5  0xb1d6844f in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#6  0xb4f89405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#7  0xb4f889aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#8  0xb51c7f70 in start_thread (arg=0x8842eb40) at pthread_create.c:312
#9  0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 27 (Thread 0x95a41b40 (LWP 2443)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd4b in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c5dcc in __pthread_cond_wait (cond=0xa5f13b40, mutex=0xa5f91610) at forward.c:149
#3  0xb4fa74a0 in g_cond_wait () from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xb1d6768e in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#5  0xb1d6844f in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#6  0xb4f89405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#7  0xb4f889aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#8  0xb51c7f70 in start_thread (arg=0x95a41b40) at pthread_create.c:312
#9  0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 26 (Thread 0x96242b40 (LWP 2442)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd4b in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c5dcc in __pthread_cond_wait (cond=0x9505190, mutex=0x9505138) at forward.c:149
#3  0xb4fa74a0 in g_cond_wait () from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xa7a27021 in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#5  0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#6  0xb1d26b52 in gst_proxy_pad_chain_default () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#7  0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#8  0xa38367e0 in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstplayback.so
#9  0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#10 0xa7a3558c in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#11 0xa7a357aa in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#12 0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#13 0xb1d26b52 in gst_proxy_pad_chain_default () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#14 0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#15 0xa7a1850c in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#16 0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#17 0xb1d26b52 in gst_proxy_pad_chain_default () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#18 0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#19 0xb1d26b52 in gst_proxy_pad_chain_default () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#20 0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#21 0xb1e5a1aa in ?? () from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#22 0xb1e5a4d7 in ?? () from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#23 0xb1e5f97a in gst_audio_decoder_finish_frame () from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#24 0x983e58f3 in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstflump3dec.so
#25 0xb1e5bd7a in ?? () from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#26 0xb1e5c0eb in ?? () from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#27 0xb1e5c4eb in ?? () from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#28 0xb1e5d8a8 in ?? () from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#29 0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#30 0xb1df5033 in gst_base_parse_push_frame () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#31 0xb1df95eb in gst_base_parse_finish_frame () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#32 0x98c2b421 in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstaudioparsers.so
#33 0xb1df1871 in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#34 0xb1df1f33 in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
---Type <return> to continue, or q <return> to quit---
#35 0xb1df725f in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#36 0xb1d67498 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#37 0xb1d6844f in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#38 0xb4f89405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#39 0xb4f889aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#40 0xb51c7f70 in start_thread (arg=0x96242b40) at pthread_create.c:312
#41 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 25 (Thread 0x96ac4b40 (LWP 2441)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd1d in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:145
#2  0xb61c5dcc in __pthread_cond_wait (cond=0x91dad88, mutex=0x8f163c8) at forward.c:149
#3  0xb1ff485b in pa_cond_wait () from /usr/lib/i386-linux-gnu/pulseaudio/libpulsecommon-4.0.so
#4  0xb4abb34e in pa_threaded_mainloop_wait () from /usr/lib/i386-linux-gnu/libpulse.so.0
#5  0xac5b1021 in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstpulse.so
#6  0xb1e5266b in gst_audio_ring_buffer_commit () from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#7  0xb1e6e152 in ?? () from /usr/lib/i386-linux-gnu/libgstaudio-1.0.so.0
#8  0xb1e09757 in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#9  0xb1e0b2c8 in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#10 0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#11 0xb1e1b127 in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#12 0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#13 0xb1e1b127 in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#14 0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#15 0xb1e1b127 in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#16 0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#17 0xa7a25975 in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#18 0xb1d67498 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#19 0xb1d6844f in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#20 0xb4f89405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#21 0xb4f889aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#22 0xb51c7f70 in start_thread (arg=0x96ac4b40) at pthread_create.c:312
#23 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 24 (Thread 0x972c5b40 (LWP 2440)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb61a9d78 in __GI_ppoll (fds=0xa3d14c58, nfds=1, timeout=0x972c4828, sigmask=0x0) at ../sysdeps/unix/sysv/linux/ppoll.c:56
#2  0xb1d49f89 in gst_poll_wait () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#3  0xb1d60395 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#4  0xb1d1352a in gst_clock_id_wait () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#5  0xb1e06300 in gst_base_sink_wait_clock () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#6  0xb1e07cd7 in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#7  0xb1e08cee in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#8  0xb1e0b2c8 in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#9  0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#10 0xb1e1b127 in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#11 0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#12 0xb1e1b127 in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#13 0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#14 0xa7a25975 in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#15 0xb1d67498 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#16 0xb1d6844f in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#17 0xb4f89405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#18 0xb4f889aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#19 0xb51c7f70 in start_thread (arg=0x972c5b40) at pthread_create.c:312
#20 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 23 (Thread 0x97ac7b40 (LWP 2439)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd4b in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c5dcc in __pthread_cond_wait (cond=0x81227e0, mutex=0x81227c0) at forward.c:149
#3  0xb4fa74a0 in g_cond_wait () from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xa7a2505c in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#5  0xb1d67498 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#6  0xb1d6844f in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#7  0xb4f89405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
---Type <return> to continue, or q <return> to quit---
#8  0xb4f889aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#9  0xb51c7f70 in start_thread (arg=0x97ac7b40) at pthread_create.c:312
#10 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 22 (Thread 0x98c18b40 (LWP 2438)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd4b in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c5dcc in __pthread_cond_wait (cond=0x83bb9b8, mutex=0x83b9ae8) at forward.c:149
#3  0xb4fa74a0 in g_cond_wait () from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xa7a2505c in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#5  0xb1d67498 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#6  0xb1d6844f in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#7  0xb4f89405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#8  0xb4f889aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#9  0xb51c7f70 in start_thread (arg=0x98c18b40) at pthread_create.c:312
#10 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 21 (Thread 0x9943db40 (LWP 2437)):
#0  0xa787e60c in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstequalizer.so
#1  0xa787f4e3 in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstequalizer.so
#2  0xb1e1a6ad in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#3  0xb1e1b04d in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#4  0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#5  0xb1e1b127 in ?? () from /usr/lib/i386-linux-gnu/libgstbase-1.0.so.0
#6  0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#7  0xa7a25975 in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#8  0xb1d67498 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#9  0xb1d6844f in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#10 0xb4f89405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#11 0xb4f889aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#12 0xb51c7f70 in start_thread (arg=0x9943db40) at pthread_create.c:312
#13 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 20 (Thread 0x99c5bb40 (LWP 2436)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd4b in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c5dcc in __pthread_cond_wait (cond=0x8395f58, mutex=0x8395f00) at forward.c:149
#3  0xb4fa74a0 in g_cond_wait () from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xa7a27021 in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#5  0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#6  0xb1d26b52 in gst_proxy_pad_chain_default () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#7  0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#8  0xa7a35150 in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#9  0xa7a357aa in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#10 0xb1d35f42 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#11 0xa7a25975 in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstcoreelements.so
#12 0xb1d67498 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#13 0xb1d6844f in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#14 0xb4f89405 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#15 0xb4f889aa in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#16 0xb51c7f70 in start_thread (arg=0x99c5bb40) at pthread_create.c:312
#17 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 19 (Thread 0x90d12b40 (LWP 2412)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd4b in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c5dcc in __pthread_cond_wait (cond=0xb54908d0, mutex=0xb54908b8) at forward.c:149
#3  0xb538dc92 in ?? () from /usr/lib/i386-linux-gnu/libQtScript.so.4
#4  0xb538dcdf in ?? () from /usr/lib/i386-linux-gnu/libQtScript.so.4
#5  0xb51c7f70 in start_thread (arg=0x90d12b40) at pthread_create.c:312
#6  0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 18 (Thread 0x91580b40 (LWP 2411)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb61a9c8b in poll () at ../sysdeps/unix/syscall-template.S:81
#2  0xb4f7120b in g_poll () from /lib/i386-linux-gnu/libglib-2.0.so.0
---Type <return> to continue, or q <return> to quit---
#3  0xb4f623e8 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xb4f62528 in g_main_context_iteration () from /lib/i386-linux-gnu/libglib-2.0.so.0
#5  0xb650d95f in QEventDispatcherGlib::processEvents (this=0xa5502558, flags=...) at kernel/qeventdispatcher_glib.cpp:436
#6  0xb64dc823 in QEventLoop::processEvents (this=this@entry=0x91580288, flags=...) at kernel/qeventloop.cpp:149
#7  0xb64dcb49 in QEventLoop::exec (this=this@entry=0x91580288, flags=...) at kernel/qeventloop.cpp:204
#8  0xb63c923d in QThread::exec (this=this@entry=0x8996bb8) at thread/qthread.cpp:537
#9  0xb63c938b in QThread::run (this=0x8996bb8) at thread/qthread.cpp:604
#10 0xb63cbb6f in QThreadPrivate::start (arg=0x8996bb8) at thread/qthread_unix.cpp:349
#11 0xb51c7f70 in start_thread (arg=0x91580b40) at pthread_create.c:312
#12 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 17 (Thread 0x91d81b40 (LWP 2409)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb61b0e31 in select () at ../sysdeps/unix/syscall-template.S:81
#2  0xb64b93b0 in QProcessManager::run (this=0xb664bd8c <processManager()::processManager>) at io/qprocess_unix.cpp:270
#3  0xb63cbb6f in QThreadPrivate::start (arg=0xb664bd8c <processManager()::processManager>) at thread/qthread_unix.cpp:349
#4  0xb51c7f70 in start_thread (arg=0x91d81b40) at pthread_create.c:312
#5  0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 16 (Thread 0x92582b40 (LWP 2408)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd4b in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c5dcc in __pthread_cond_wait (cond=0x83ef2a0, mutex=0x83ef288) at forward.c:149
#3  0xb63cc0f5 in wait (time=4294967295, this=0x83ef288) at thread/qwaitcondition_unix.cpp:86
#4  QWaitCondition::wait (this=this@entry=0x83ef200, mutex=0x81f9ff8, time=time@entry=4294967295) at thread/qwaitcondition_unix.cpp:158
#5  0xb59048d3 in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0x83ef1e8, th=th@entry=0x8cf1c00) at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#6  0xb590781b in ThreadWeaver::WorkingHardState::waitForAvailableJob (this=0x83e7fc8, th=0x8cf1c00) at ../../../threadweaver/Weaver/WorkingHardState.cpp:77
#7  0xb590482a in ThreadWeaver::WeaverImpl::waitForAvailableJob (this=0x83ef1e8, th=th@entry=0x8cf1c00) at ../../../threadweaver/Weaver/WeaverImpl.cpp:361
#8  0xb59078f2 in ThreadWeaver::WorkingHardState::applyForWork (this=0x83e7fc8, th=0x8cf1c00, previous=0x9600108) at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#9  0xb5903782 in ThreadWeaver::WeaverImpl::applyForWork (this=0x83ef1e8, th=0x8cf1c00, previous=0x9600108) at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#10 0xb5906283 in ThreadWeaver::Thread::run (this=0x8cf1c00) at ../../../threadweaver/Weaver/Thread.cpp:98
#11 0xb63cbb6f in QThreadPrivate::start (arg=0x8cf1c00) at thread/qthread_unix.cpp:349
#12 0xb51c7f70 in start_thread (arg=0x92582b40) at pthread_create.c:312
#13 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 15 (Thread 0x92e83b40 (LWP 2407)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd4b in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c5dcc in __pthread_cond_wait (cond=0xb4a74cb0, mutex=0xb4a74c98) at forward.c:149
#3  0xb41fc9ac in ?? () from /usr/lib/i386-linux-gnu/libQtWebKit.so.4
#4  0xb41fc9ff in ?? () from /usr/lib/i386-linux-gnu/libQtWebKit.so.4
#5  0xb51c7f70 in start_thread (arg=0x92e83b40) at pthread_create.c:312
#6  0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 14 (Thread 0x9374db40 (LWP 2406)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd4b in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c5dcc in __pthread_cond_wait (cond=0x83ef2a0, mutex=0x83ef288) at forward.c:149
#3  0xb63cc0f5 in wait (time=4294967295, this=0x83ef288) at thread/qwaitcondition_unix.cpp:86
#4  QWaitCondition::wait (this=this@entry=0x83ef200, mutex=0x81f9ff8, time=time@entry=4294967295) at thread/qwaitcondition_unix.cpp:158
#5  0xb59048d3 in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0x83ef1e8, th=th@entry=0x8baf1b0) at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#6  0xb590781b in ThreadWeaver::WorkingHardState::waitForAvailableJob (this=0x83e7fc8, th=0x8baf1b0) at ../../../threadweaver/Weaver/WorkingHardState.cpp:77
#7  0xb590482a in ThreadWeaver::WeaverImpl::waitForAvailableJob (this=0x83ef1e8, th=th@entry=0x8baf1b0) at ../../../threadweaver/Weaver/WeaverImpl.cpp:361
#8  0xb59078f2 in ThreadWeaver::WorkingHardState::applyForWork (this=0x83e7fc8, th=0x8baf1b0, previous=0x8b27048) at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#9  0xb5903782 in ThreadWeaver::WeaverImpl::applyForWork (this=0x83ef1e8, th=0x8baf1b0, previous=0x8b27048) at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#10 0xb5906283 in ThreadWeaver::Thread::run (this=0x8baf1b0) at ../../../threadweaver/Weaver/Thread.cpp:98
#11 0xb63cbb6f in QThreadPrivate::start (arg=0x8baf1b0) at thread/qthread_unix.cpp:349
#12 0xb51c7f70 in start_thread (arg=0x9374db40) at pthread_create.c:312
#13 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 13 (Thread 0x93f4eb40 (LWP 2405)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd4b in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c5dcc in __pthread_cond_wait (cond=0x83ef2a0, mutex=0x83ef288) at forward.c:149
#3  0xb63cc0f5 in wait (time=4294967295, this=0x83ef288) at thread/qwaitcondition_unix.cpp:86
#4  QWaitCondition::wait (this=this@entry=0x83ef200, mutex=0x81f9ff8, time=time@entry=4294967295) at thread/qwaitcondition_unix.cpp:158
---Type <return> to continue, or q <return> to quit---
#5  0xb59048d3 in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0x83ef1e8, th=th@entry=0x8bad140) at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#6  0xb590781b in ThreadWeaver::WorkingHardState::waitForAvailableJob (this=0x83e7fc8, th=0x8bad140) at ../../../threadweaver/Weaver/WorkingHardState.cpp:77
#7  0xb590482a in ThreadWeaver::WeaverImpl::waitForAvailableJob (this=0x83ef1e8, th=th@entry=0x8bad140) at ../../../threadweaver/Weaver/WeaverImpl.cpp:361
#8  0xb59078f2 in ThreadWeaver::WorkingHardState::applyForWork (this=0x83e7fc8, th=0x8bad140, previous=0x9030f58) at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#9  0xb5903782 in ThreadWeaver::WeaverImpl::applyForWork (this=0x83ef1e8, th=0x8bad140, previous=0x9030f58) at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#10 0xb5906283 in ThreadWeaver::Thread::run (this=0x8bad140) at ../../../threadweaver/Weaver/Thread.cpp:98
#11 0xb63cbb6f in QThreadPrivate::start (arg=0x8bad140) at thread/qthread_unix.cpp:349
#12 0xb51c7f70 in start_thread (arg=0x93f4eb40) at pthread_create.c:312
#13 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 12 (Thread 0x9474fb40 (LWP 2404)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd4b in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c5dcc in __pthread_cond_wait (cond=0x83ef2a0, mutex=0x83ef288) at forward.c:149
#3  0xb63cc0f5 in wait (time=4294967295, this=0x83ef288) at thread/qwaitcondition_unix.cpp:86
#4  QWaitCondition::wait (this=this@entry=0x83ef200, mutex=0x81f9ff8, time=time@entry=4294967295) at thread/qwaitcondition_unix.cpp:158
#5  0xb59048d3 in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0x83ef1e8, th=th@entry=0x8b85170) at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#6  0xb590781b in ThreadWeaver::WorkingHardState::waitForAvailableJob (this=0x83e7fc8, th=0x8b85170) at ../../../threadweaver/Weaver/WorkingHardState.cpp:77
#7  0xb590482a in ThreadWeaver::WeaverImpl::waitForAvailableJob (this=0x83ef1e8, th=th@entry=0x8b85170) at ../../../threadweaver/Weaver/WeaverImpl.cpp:361
#8  0xb59078f2 in ThreadWeaver::WorkingHardState::applyForWork (this=0x83e7fc8, th=0x8b85170, previous=0x0) at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#9  0xb5903782 in ThreadWeaver::WeaverImpl::applyForWork (this=0x83ef1e8, th=0x8b85170, previous=0x0) at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#10 0xb5907911 in ThreadWeaver::WorkingHardState::applyForWork (this=0x83e7fc8, th=0x8b85170, previous=0xa3f13490) at ../../../threadweaver/Weaver/WorkingHardState.cpp:71
#11 0xb5903782 in ThreadWeaver::WeaverImpl::applyForWork (this=0x83ef1e8, th=0x8b85170, previous=0xa3f13490) at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#12 0xb5906283 in ThreadWeaver::Thread::run (this=0x8b85170) at ../../../threadweaver/Weaver/Thread.cpp:98
#13 0xb63cbb6f in QThreadPrivate::start (arg=0x8b85170) at thread/qthread_unix.cpp:349
#14 0xb51c7f70 in start_thread (arg=0x9474fb40) at pthread_create.c:312
#15 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 11 (Thread 0x94f50b40 (LWP 2402)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb61a9c8b in poll () at ../sysdeps/unix/syscall-template.S:81
#2  0xb4f7120b in g_poll () from /lib/i386-linux-gnu/libglib-2.0.so.0
#3  0xb4f623e8 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xb4f62528 in g_main_context_iteration () from /lib/i386-linux-gnu/libglib-2.0.so.0
#5  0xb650d95f in QEventDispatcherGlib::processEvents (this=0xa3a00468, flags=...) at kernel/qeventdispatcher_glib.cpp:436
#6  0xb64dc823 in QEventLoop::processEvents (this=this@entry=0x94f50258, flags=...) at kernel/qeventloop.cpp:149
#7  0xb64dcb49 in QEventLoop::exec (this=this@entry=0x94f50258, flags=...) at kernel/qeventloop.cpp:204
#8  0xb63c923d in QThread::exec (this=this@entry=0x8b0f470) at thread/qthread.cpp:537
#9  0xb64bcc44 in QInotifyFileSystemWatcherEngine::run (this=0x8b0f470) at io/qfilesystemwatcher_inotify.cpp:265
#10 0xb63cbb6f in QThreadPrivate::start (arg=0x8b0f470) at thread/qthread_unix.cpp:349
#11 0xb51c7f70 in start_thread (arg=0x94f50b40) at pthread_create.c:312
#12 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 10 (Thread 0x9f7f3b40 (LWP 2401)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd4b in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c5dcc in __pthread_cond_wait (cond=0x83ef2a0, mutex=0x83ef288) at forward.c:149
#3  0xb63cc0f5 in wait (time=4294967295, this=0x83ef288) at thread/qwaitcondition_unix.cpp:86
#4  QWaitCondition::wait (this=this@entry=0x83ef200, mutex=0x81f9ff8, time=time@entry=4294967295) at thread/qwaitcondition_unix.cpp:158
#5  0xb59048d3 in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0x83ef1e8, th=th@entry=0x86c5068) at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#6  0xb590781b in ThreadWeaver::WorkingHardState::waitForAvailableJob (this=0x83e7fc8, th=0x86c5068) at ../../../threadweaver/Weaver/WorkingHardState.cpp:77
#7  0xb590482a in ThreadWeaver::WeaverImpl::waitForAvailableJob (this=0x83ef1e8, th=th@entry=0x86c5068) at ../../../threadweaver/Weaver/WeaverImpl.cpp:361
#8  0xb59078f2 in ThreadWeaver::WorkingHardState::applyForWork (this=0x83e7fc8, th=0x86c5068, previous=0x8b28480) at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#9  0xb5903782 in ThreadWeaver::WeaverImpl::applyForWork (this=0x83ef1e8, th=0x86c5068, previous=0x8b28480) at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#10 0xb5906283 in ThreadWeaver::Thread::run (this=0x86c5068) at ../../../threadweaver/Weaver/Thread.cpp:98
#11 0xb63cbb6f in QThreadPrivate::start (arg=0x86c5068) at thread/qthread_unix.cpp:349
#12 0xb51c7f70 in start_thread (arg=0x9f7f3b40) at pthread_create.c:312
#13 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 9 (Thread 0xa48dab40 (LWP 2400)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd4b in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c5dcc in __pthread_cond_wait (cond=0x83ef2a0, mutex=0x83ef288) at forward.c:149
#3  0xb63cc0f5 in wait (time=4294967295, this=0x83ef288) at thread/qwaitcondition_unix.cpp:86
#4  QWaitCondition::wait (this=this@entry=0x83ef200, mutex=0x81f9ff8, time=time@entry=4294967295) at thread/qwaitcondition_unix.cpp:158
#5  0xb59048d3 in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0x83ef1e8, th=th@entry=0x86c1b58) at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
---Type <return> to continue, or q <return> to quit---
#6  0xb590781b in ThreadWeaver::WorkingHardState::waitForAvailableJob (this=0x83e7fc8, th=0x86c1b58) at ../../../threadweaver/Weaver/WorkingHardState.cpp:77
#7  0xb590482a in ThreadWeaver::WeaverImpl::waitForAvailableJob (this=0x83ef1e8, th=th@entry=0x86c1b58) at ../../../threadweaver/Weaver/WeaverImpl.cpp:361
#8  0xb59078f2 in ThreadWeaver::WorkingHardState::applyForWork (this=0x83e7fc8, th=0x86c1b58, previous=0x0) at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#9  0xb5903782 in ThreadWeaver::WeaverImpl::applyForWork (this=0x83ef1e8, th=0x86c1b58, previous=0x0) at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#10 0xb5907911 in ThreadWeaver::WorkingHardState::applyForWork (this=0x83e7fc8, th=0x86c1b58, previous=0x0) at ../../../threadweaver/Weaver/WorkingHardState.cpp:71
#11 0xb5903782 in ThreadWeaver::WeaverImpl::applyForWork (this=0x83ef1e8, th=0x86c1b58, previous=0x0) at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#12 0xb5907911 in ThreadWeaver::WorkingHardState::applyForWork (this=0x83e7fc8, th=0x86c1b58, previous=0xa3f19da8) at ../../../threadweaver/Weaver/WorkingHardState.cpp:71
#13 0xb5903782 in ThreadWeaver::WeaverImpl::applyForWork (this=0x83ef1e8, th=0x86c1b58, previous=0xa3f19da8) at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#14 0xb5906283 in ThreadWeaver::Thread::run (this=0x86c1b58) at ../../../threadweaver/Weaver/Thread.cpp:98
#15 0xb63cbb6f in QThreadPrivate::start (arg=0x86c1b58) at thread/qthread_unix.cpp:349
#16 0xb51c7f70 in start_thread (arg=0xa48dab40) at pthread_create.c:312
#17 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 8 (Thread 0xa5414b40 (LWP 2399)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cbd4b in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:187
#2  0xb61c5dcc in __pthread_cond_wait (cond=0x83ef2a0, mutex=0x83ef288) at forward.c:149
#3  0xb63cc0f5 in wait (time=4294967295, this=0x83ef288) at thread/qwaitcondition_unix.cpp:86
#4  QWaitCondition::wait (this=this@entry=0x83ef200, mutex=0x81f9ff8, time=time@entry=4294967295) at thread/qwaitcondition_unix.cpp:158
#5  0xb59048d3 in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0x83ef1e8, th=th@entry=0x864a690) at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#6  0xb590781b in ThreadWeaver::WorkingHardState::waitForAvailableJob (this=0x83e7fc8, th=0x864a690) at ../../../threadweaver/Weaver/WorkingHardState.cpp:77
#7  0xb590482a in ThreadWeaver::WeaverImpl::waitForAvailableJob (this=0x83ef1e8, th=th@entry=0x864a690) at ../../../threadweaver/Weaver/WeaverImpl.cpp:361
#8  0xb59078f2 in ThreadWeaver::WorkingHardState::applyForWork (this=0x83e7fc8, th=0x864a690, previous=0x0) at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#9  0xb5903782 in ThreadWeaver::WeaverImpl::applyForWork (this=0x83ef1e8, th=0x864a690, previous=0x0) at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#10 0xb5907911 in ThreadWeaver::WorkingHardState::applyForWork (this=0x83e7fc8, th=0x864a690, previous=0x0) at ../../../threadweaver/Weaver/WorkingHardState.cpp:71
#11 0xb5903782 in ThreadWeaver::WeaverImpl::applyForWork (this=0x83ef1e8, th=0x864a690, previous=0x0) at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#12 0xb5907911 in ThreadWeaver::WorkingHardState::applyForWork (this=0x83e7fc8, th=0x864a690, previous=0xa3f13490) at ../../../threadweaver/Weaver/WorkingHardState.cpp:71
#13 0xb5903782 in ThreadWeaver::WeaverImpl::applyForWork (this=0x83ef1e8, th=0x864a690, previous=0xa3f13490) at ../../../threadweaver/Weaver/WeaverImpl.cpp:356
#14 0xb5906283 in ThreadWeaver::Thread::run (this=0x864a690) at ../../../threadweaver/Weaver/Thread.cpp:98
#15 0xb63cbb6f in QThreadPrivate::start (arg=0x864a690) at thread/qthread_unix.cpp:349
#16 0xb51c7f70 in start_thread (arg=0xa5414b40) at pthread_create.c:312
#17 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 7 (Thread 0xa5eeab40 (LWP 2398)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb61a9c8b in poll () at ../sysdeps/unix/syscall-template.S:81
#2  0xb4f7120b in g_poll () from /lib/i386-linux-gnu/libglib-2.0.so.0
#3  0xb4f623e8 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#4  0xb4f62528 in g_main_context_iteration () from /lib/i386-linux-gnu/libglib-2.0.so.0
#5  0xb650d95f in QEventDispatcherGlib::processEvents (this=0xa5500468, flags=...) at kernel/qeventdispatcher_glib.cpp:436
#6  0xb64dc823 in QEventLoop::processEvents (this=this@entry=0xa5eea258, flags=...) at kernel/qeventloop.cpp:149
#7  0xb64dcb49 in QEventLoop::exec (this=this@entry=0xa5eea258, flags=...) at kernel/qeventloop.cpp:204
#8  0xb63c923d in QThread::exec (this=this@entry=0x83f9f70) at thread/qthread.cpp:537
#9  0xb64bcc44 in QInotifyFileSystemWatcherEngine::run (this=0x83f9f70) at io/qfilesystemwatcher_inotify.cpp:265
#10 0xb63cbb6f in QThreadPrivate::start (arg=0x83f9f70) at thread/qthread_unix.cpp:349
#11 0xb51c7f70 in start_thread (arg=0xa5eeab40) at pthread_create.c:312
#12 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 6 (Thread 0xa689ab40 (LWP 2389)):
#0  0xb7fdd424 in __kernel_vsyscall ()
#1  0xb51cc12d in pthread_cond_timedwait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_timedwait.S:245
#2  0xb61c5e24 in __pthread_cond_timedwait (cond=0x83ec608, mutex=0x83ec5f0, abstime=0xa689a158) at forward.c:162
#3  0xb63cc0d3 in wait (time=60000, this=0x83ec5f0) at thread/qwaitcondition_unix.cpp:84
#4  QWaitCondition::wait (this=0x8121450, mutex=mutex@entry=0x812144c, time=time@entry=60000) at thread/qwaitcondition_unix.cpp:158
#5  0xb77fe06a in AbstractDirectoryWatcher::run (this=0x8121438) at ../../src/scanner/AbstractDirectoryWatcher.cpp:65
#6  0xb59069c9 in ThreadWeaver::JobRunHelper::runTheJob (this=this@entry=0xa689a278, th=0x827e4c8, job=job@entry=0x8121438) at ../../../threadweaver/Weaver/Job.cpp:106
#7  0xb5906bc5 in ThreadWeaver::Job::execute (this=0x8121438, th=0x827e4c8) at ../../../threadweaver/Weaver/Job.cpp:135
#8  0xb5906314 in ThreadWeaver::Thread::run (this=0x827e4c8) at ../../../threadweaver/Weaver/Thread.cpp:108
#9  0xb63cbb6f in QThreadPrivate::start (arg=0x827e4c8) at thread/qthread_unix.cpp:349
#10 0xb51c7f70 in start_thread (arg=0xa689ab40) at pthread_create.c:312
#11 0xb61b8bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

Thread 1 (Thread 0xaf0b1ac0 (LWP 2380)):
#0  0xb4f7e2de in g_slice_alloc () from /lib/i386-linux-gnu/libglib-2.0.so.0
#1  0xb4f7e79d in g_slice_alloc0 () from /lib/i386-linux-gnu/libglib-2.0.so.0
#2  0xb1d2c2c4 in gst_iterator_new () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
---Type <return> to continue, or q <return> to quit---
#3  0xb1d2c89f in gst_iterator_filter () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#4  0xb1d0243f in gst_bin_iterate_sinks () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#5  0xb1d024d9 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#6  0xb1d1f255 in gst_element_query () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#7  0xb1cfda44 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#8  0xb1d2c9b7 in gst_iterator_fold () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#9  0xb1cfdd23 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#10 0xb1d025b9 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#11 0xb1d1f255 in gst_element_query () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#12 0xb1cfda44 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#13 0xb1d2c9b7 in gst_iterator_fold () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#14 0xb1cfdd23 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#15 0xb1d025b9 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#16 0xb1d1f255 in gst_element_query () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#17 0xb1cfda44 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#18 0xb1d2c9b7 in gst_iterator_fold () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#19 0xb1cfdd23 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#20 0xb1d025b9 in ?? () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#21 0xa3811ef8 in ?? () from /usr/lib/i386-linux-gnu/gstreamer-1.0/libgstplayback.so
#22 0xb1d1f255 in gst_element_query () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#23 0xb1d6e66a in gst_element_query_position () from /usr/lib/i386-linux-gnu/libgstreamer-1.0.so.0
#24 0xac2d5c64 in Phonon::Gstreamer::Pipeline::position (this=0x839b0b0) at ../../gstreamer/pipeline.cpp:920
#25 0xac2c7f36 in Phonon::Gstreamer::MediaObject::getPipelinePos (this=this@entry=0x839a9c8) at ../../gstreamer/mediaobject.cpp:380
#26 0xac2c80c0 in Phonon::Gstreamer::MediaObject::emitTick (this=this@entry=0x839a9c8) at ../../gstreamer/mediaobject.cpp:539
#27 0xac2cf988 in Phonon::Gstreamer::MediaObject::qt_static_metacall (_o=0x839a9c8, _id=24, _a=0xbfffe718, _c=<optimized out>) at ./moc_mediaobject.cpp:136
#28 0xb64f30f7 in QMetaObject::activate (sender=sender@entry=0x839a808, m=m@entry=0xb664a518 <QTimer::staticMetaObject>, local_signal_index=local_signal_index@entry=0, 
    argv=argv@entry=0x0) at kernel/qobject.cpp:3539
#29 0xb6543435 in QTimer::timeout (this=this@entry=0x839a808) at .moc/release-shared/moc_qtimer.cpp:147
#30 0xb64fc926 in QTimer::timerEvent (this=0x839a808, e=0xbfffea90) at kernel/qtimer.cpp:280
#31 0xb64f755c in QObject::event (this=0x839a808, e=0xbfffea90) at kernel/qobject.cpp:1156
#32 0xb6a397f4 in QApplicationPrivate::notify_helper (this=0x811a028, receiver=0x839a808, e=0xbfffea90) at kernel/qapplication.cpp:4567
#33 0xb6a402d3 in QApplication::notify (this=0xbfffed7c, receiver=receiver@entry=0x839a808, e=e@entry=0xbfffea90) at kernel/qapplication.cpp:4353
#34 0xb7d7d1f4 in KApplication::notify (this=0xbfffed7c, receiver=0x839a808, event=0xbfffea90) at ../../kdeui/kernel/kapplication.cpp:311
#35 0xb64dde4a in QCoreApplication::notifyInternal (this=0xbfffed7c, receiver=0x839a808, event=event@entry=0xbfffea90) at kernel/qcoreapplication.cpp:953
#36 0xb65107bb in sendEvent (event=0xbfffea90, receiver=<optimized out>) at ../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:231
#37 QTimerInfoList::activateTimers (this=0x811b884) at kernel/qeventdispatcher_unix.cpp:621
#38 0xb650d7cb in timerSourceDispatch (source=<optimized out>) at kernel/qeventdispatcher_glib.cpp:193
#39 idleTimerSourceDispatch (source=0x811b8b8) at kernel/qeventdispatcher_glib.cpp:240
#40 0xb4f621e3 in g_main_context_dispatch () from /lib/i386-linux-gnu/libglib-2.0.so.0
#41 0xb4f62468 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#42 0xb4f62528 in g_main_context_iteration () from /lib/i386-linux-gnu/libglib-2.0.so.0
#43 0xb650d93b in QEventDispatcherGlib::processEvents (this=this@entry=0x8054eb8, flags=...) at kernel/qeventdispatcher_glib.cpp:434
#44 0xb6aee5de in QGuiEventDispatcherGlib::processEvents (this=0x8054eb8, flags=...) at kernel/qguieventdispatcher_glib.cpp:204
#45 0xb64dc823 in QEventLoop::processEvents (this=this@entry=0xbfffecb8, flags=...) at kernel/qeventloop.cpp:149
#46 0xb64dcb49 in QEventLoop::exec (this=this@entry=0xbfffecb8, flags=...) at kernel/qeventloop.cpp:204
#47 0xb64e28fe in QCoreApplication::exec () at kernel/qcoreapplication.cpp:1225
#48 0xb6a37a24 in QApplication::exec () at kernel/qapplication.cpp:3828
#49 0x0804f775 in main (argc=3, argv=0xbfffee64) at ../../src/main.cpp:329
Comment 23 Myriam Schweingruber 2015-03-09 16:11:21 UTC
Of course you have the libraries, as those are needed to run the program, but you don't have debugging symbols installed for the gstreamer library, phonon-backend-gstreamer, Phonon and Pulseaudio. Search for the packages with the extension -dbg.
Comment 24 Vangelis 2015-04-26 15:37:40 UTC
Here is backtrace for the same problem. Reproducable all the time.



Thread 36 (Thread 0x7ffeb0f82700 (LWP 30853)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:238
#1  0x00007ffff534f7f4 in wait (time=0x7530, this=0x3ca0e90) at thread/qwaitcondition_unix.cpp:84
#2  QWaitCondition::wait (this=this@entry=0x724cf0, mutex=mutex@entry=0x3d24d48, time=0x7530) at thread/qwaitcondition_unix.cpp:158
#3  0x00007ffff53430fa in QThreadPoolThread::run (this=0x724ce0) at concurrent/qthreadpool.cpp:142
#4  0x00007ffff534f32f in QThreadPrivate::start (arg=0x724ce0) at thread/qthread_unix.cpp:349
#5  0x00007ffff0ff1182 in start_thread (arg=0x7ffeb0f82700) at pthread_create.c:312
#6  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 35 (Thread 0x7ffeb1783700 (LWP 30852)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:238
#1  0x00007ffff534f7f4 in wait (time=0x7530, this=0x18e8c10) at thread/qwaitcondition_unix.cpp:84
#2  QWaitCondition::wait (this=this@entry=0x395ad70, mutex=mutex@entry=0x3d24d48, time=0x7530) at thread/qwaitcondition_unix.cpp:158
#3  0x00007ffff53430fa in QThreadPoolThread::run (this=0x395ad60) at concurrent/qthreadpool.cpp:142
#4  0x00007ffff534f32f in QThreadPrivate::start (arg=0x395ad60) at thread/qthread_unix.cpp:349
#5  0x00007ffff0ff1182 in start_thread (arg=0x7ffeb1783700) at pthread_create.c:312
#6  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 34 (Thread 0x7ffeb1f84700 (LWP 30851)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:238
#1  0x00007ffff534f7f4 in wait (time=0x7530, this=0x211db40) at thread/qwaitcondition_unix.cpp:84
#2  QWaitCondition::wait (this=this@entry=0x3961240, mutex=mutex@entry=0x3d24d48, time=0x7530) at thread/qwaitcondition_unix.cpp:158
#3  0x00007ffff53430fa in QThreadPoolThread::run (this=0x3961230) at concurrent/qthreadpool.cpp:142
#4  0x00007ffff534f32f in QThreadPrivate::start (arg=0x3961230) at thread/qthread_unix.cpp:349
#5  0x00007ffff0ff1182 in start_thread (arg=0x7ffeb1f84700) at pthread_create.c:312
#6  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 33 (Thread 0x7ffeb2785700 (LWP 30850)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:238
#1  0x00007ffff534f7f4 in wait (time=0x7530, this=0x3e4c1b0) at thread/qwaitcondition_unix.cpp:84
#2  QWaitCondition::wait (this=this@entry=0x1871dd0, mutex=mutex@entry=0x3d24d48, time=0x7530) at thread/qwaitcondition_unix.cpp:158
#3  0x00007ffff53430fa in QThreadPoolThread::run (this=0x1871dc0) at concurrent/qthreadpool.cpp:142
#4  0x00007ffff534f32f in QThreadPrivate::start (arg=0x1871dc0) at thread/qthread_unix.cpp:349
#5  0x00007ffff0ff1182 in start_thread (arg=0x7ffeb2785700) at pthread_create.c:312
#6  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 32 (Thread 0x7ffeb2f86700 (LWP 30846)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:238
#1  0x00007ffff534f7f4 in wait (time=0x7530, this=0x3d25260) at thread/qwaitcondition_unix.cpp:84
#2  QWaitCondition::wait (this=this@entry=0x3d25010, mutex=mutex@entry=0x3d24d48, time=0x7530) at thread/qwaitcondition_unix.cpp:158
#3  0x00007ffff53430fa in QThreadPoolThread::run (this=0x3d25000) at concurrent/qthreadpool.cpp:142
#4  0x00007ffff534f32f in QThreadPrivate::start (arg=0x3d25000) at thread/qthread_unix.cpp:349
#5  0x00007ffff0ff1182 in start_thread (arg=0x7ffeb2f86700) at pthread_create.c:312
#6  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 31 (Thread 0x7fff3cdfb700 (LWP 30845)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x00007fffebdd920d in JSC::BlockAllocator::blockFreeingThreadMain() () from /usr/lib/x86_64-linux-gnu/libQtWebKit.so.4
#2  0x00007fffec0c7fd6 in WTF::wtfThreadEntryPoint(void*) () from /usr/lib/x86_64-linux-gnu/libQtWebKit.so.4
#3  0x00007ffff0ff1182 in start_thread (arg=0x7fff3cdfb700) at pthread_create.c:312
#4  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 30 (Thread 0x7fff3d5fc700 (LWP 30843)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:238
#1  0x00007fffef9d5ce5 in g_cond_wait_until (cond=cond@entry=0x974418, mutex=mutex@entry=0x974410, end_time=end_time@entry=0x1295bbb6f) at /build/buildd/glib2.0-2.40.2/./glib/gthread-posix.c:898
#2  0x00007fffef96a1c1 in g_async_queue_pop_intern_unlocked (queue=queue@entry=0x974410, wait=wait@entry=0x1, end_time=end_time@entry=0x1295bbb6f) at /build/buildd/glib2.0-2.40.2/./glib/gasyncqueue.c:422
#3  0x00007fffef96a74b in g_async_queue_timeout_pop (queue=0x974410, timeout=timeout@entry=0xe4e1c0) at /build/buildd/glib2.0-2.40.2/./glib/gasyncqueue.c:543
#4  0x00007fffef9b9956 in g_thread_pool_wait_for_new_pool () at /build/buildd/glib2.0-2.40.2/./glib/gthreadpool.c:167
#5  g_thread_pool_thread_proxy (data=<optimized out>) at /build/buildd/glib2.0-2.40.2/./glib/gthreadpool.c:364
#6  0x00007fffef9b8f05 in g_thread_proxy (data=0x7ffe9c0024a0) at /build/buildd/glib2.0-2.40.2/./glib/gthread.c:764
#7  0x00007ffff0ff1182 in start_thread (arg=0x7fff3d5fc700) at pthread_create.c:312
#8  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 29 (Thread 0x7fff3ddfd700 (LWP 30841)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x00007fffef9d5bf7 in g_cond_wait (cond=cond@entry=0xb98608, mutex=mutex@entry=0xb985e0) at /build/buildd/glib2.0-2.40.2/./glib/gthread-posix.c:762
#2  0x00007fffcb333f85 in gst_queue_chain (pad=<optimized out>, parent=0xb98360, buffer=0x7ffea8138960) at gstqueue.c:1011
#3  0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea8138960, type=4112, pad=0xb5d630) at gstpad.c:3760
#4  gst_pad_push_data (pad=pad@entry=0xbac280, type=type@entry=4112, data=<optimized out>, data@entry=0x7ffea8138960) at gstpad.c:3990
#5  0x00007fffe68919b6 in gst_pad_push (pad=pad@entry=0xbac280, buffer=buffer@entry=0x7ffea8138960) at gstpad.c:4093
#6  0x00007fffe687ce2b in gst_proxy_pad_chain_default (pad=<optimized out>, parent=<optimized out>, buffer=0x7ffea8138960) at gstghostpad.c:128
#7  0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea8138960, type=4112, pad=0xbaa2f0) at gstpad.c:3760
#8  gst_pad_push_data (pad=pad@entry=0xbac930, type=type@entry=4112, data=<optimized out>) at gstpad.c:3990
#9  0x00007fffe68919b6 in gst_pad_push (pad=pad@entry=0xbac930, buffer=<optimized out>) at gstpad.c:4093
#10 0x00007fffcb33eb36 in gst_tee_do_push (is_list=0x0, data=0x7ffea8138960, pad=0xbac930, tee=0xb53460) at gsttee.c:550
#11 gst_tee_handle_data (tee=tee@entry=0xb53460, data=data@entry=0x7ffea8138960, is_list=is_list@entry=0x0) at gsttee.c:622
#12 0x00007fffcb33f0b3 in gst_tee_chain (pad=<optimized out>, parent=0xb53460, buffer=0x7ffea8138960) at gsttee.c:694
#13 0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea8138960, type=4112, pad=0xbb44f0) at gstpad.c:3760
#14 gst_pad_push_data (pad=0xbb4b80, type=type@entry=4112, data=<optimized out>, data@entry=0x7ffea8138960) at gstpad.c:3990
#15 0x00007fffe68919b6 in gst_pad_push (pad=<optimized out>, buffer=buffer@entry=0x7ffea8138960) at gstpad.c:4093
#16 0x00007fffcb332eb0 in gst_queue_push_one (queue=0xb98650) at gstqueue.c:1115
#17 gst_queue_loop (pad=<optimized out>) at gstqueue.c:1244
#18 0x00007fffe68b8549 in gst_task_func (task=0x7ffea4005710) at gsttask.c:316
#19 0x00007fffef9b988c in g_thread_pool_thread_proxy (data=<optimized out>) at /build/buildd/glib2.0-2.40.2/./glib/gthreadpool.c:307
#20 0x00007fffef9b8f05 in g_thread_proxy (data=0xa3a370) at /build/buildd/glib2.0-2.40.2/./glib/gthread.c:764
#21 0x00007ffff0ff1182 in start_thread (arg=0x7fff3ddfd700) at pthread_create.c:312
#22 0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 28 (Thread 0x7fff3e5fe700 (LWP 30840)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x00007fffef9d5bf7 in g_cond_wait (cond=cond@entry=0xb988f8, mutex=mutex@entry=0xb988d0) at /build/buildd/glib2.0-2.40.2/./glib/gthread-posix.c:762
#2  0x00007fffcb333f85 in gst_queue_chain (pad=<optimized out>, parent=0xb98650, buffer=0x7ffea8079d10) at gstqueue.c:1011
#3  0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea8079d10, type=4112, pad=0xbb4950) at gstpad.c:3760
#4  gst_pad_push_data (pad=pad@entry=0xbac4c0, type=type@entry=4112, data=<optimized out>, data@entry=0x7ffea8079d10) at gstpad.c:3990
#5  0x00007fffe68919b6 in gst_pad_push (pad=pad@entry=0xbac4c0, buffer=buffer@entry=0x7ffea8079d10) at gstpad.c:4093
#6  0x00007fffe687ce2b in gst_proxy_pad_chain_default (pad=<optimized out>, parent=<optimized out>, buffer=0x7ffea8079d10) at gstghostpad.c:128
#7  0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea8079d10, type=4112, pad=0xbaa550) at gstpad.c:3760
#8  gst_pad_push_data (pad=pad@entry=0x3c56f50, type=type@entry=4112, data=<optimized out>, data@entry=0x7ffea8079d10) at gstpad.c:3990
#9  0x00007fffe68919b6 in gst_pad_push (pad=pad@entry=0x3c56f50, buffer=buffer@entry=0x7ffea8079d10) at gstpad.c:4093
#10 0x00007fffe687ce2b in gst_proxy_pad_chain_default (pad=<optimized out>, parent=<optimized out>, buffer=0x7ffea8079d10) at gstghostpad.c:128
#11 0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea8079d10, type=4112, pad=0x7ffea8038290) at gstpad.c:3760
#12 gst_pad_push_data (pad=0x7ffea8019d20, type=type@entry=4112, data=<optimized out>) at gstpad.c:3990
#13 0x00007fffe68919b6 in gst_pad_push (pad=<optimized out>, buffer=<optimized out>) at gstpad.c:4093
#14 0x00007fffe6b622a9 in gst_base_transform_chain (pad=<optimized out>, parent=0x7ffea80473b0, buffer=<optimized out>) at gstbasetransform.c:2237
#15 0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea8079d10, type=4112, pad=0x7ffea8019af0) at gstpad.c:3760
#16 gst_pad_push_data (pad=0x7ffea80198c0, type=type@entry=4112, data=<optimized out>) at gstpad.c:3990
#17 0x00007fffe68919b6 in gst_pad_push (pad=<optimized out>, buffer=<optimized out>) at gstpad.c:4093
#18 0x00007fffe6b622a9 in gst_base_transform_chain (pad=<optimized out>, parent=0x7ffea8046920, buffer=<optimized out>) at gstbasetransform.c:2237
#19 0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea8079d10, type=4112, pad=0x7ffea8019690) at gstpad.c:3760
#20 gst_pad_push_data (pad=pad@entry=0x7ffea8038050, type=type@entry=4112, data=<optimized out>, data@entry=0x7ffea8079d10) at gstpad.c:3990
#21 0x00007fffe68919b6 in gst_pad_push (pad=pad@entry=0x7ffea8038050, buffer=buffer@entry=0x7ffea8079d10) at gstpad.c:4093
#22 0x00007fffe687ce2b in gst_proxy_pad_chain_default (pad=<optimized out>, parent=<optimized out>, buffer=0x7ffea8079d10) at gstghostpad.c:128
#23 0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea8079d10, type=4112, pad=0x3c56cf0) at gstpad.c:3760
#24 gst_pad_push_data (pad=0x7ffea8018ba0, type=type@entry=4112, data=<optimized out>, data@entry=0x7ffea8079d10) at gstpad.c:3990
#25 0x00007fffe68919b6 in gst_pad_push (pad=<optimized out>, buffer=buffer@entry=0x7ffea8079d10) at gstpad.c:4093
#26 0x00007fffcb332eb0 in gst_queue_push_one (queue=0xb99ae0) at gstqueue.c:1115
#27 gst_queue_loop (pad=<optimized out>) at gstqueue.c:1244
#28 0x00007fffe68b8549 in gst_task_func (task=0x7ffea4005830) at gsttask.c:316
#29 0x00007fffef9b988c in g_thread_pool_thread_proxy (data=<optimized out>) at /build/buildd/glib2.0-2.40.2/./glib/gthreadpool.c:307
#30 0x00007fffef9b8f05 in g_thread_proxy (data=0xa35de0) at /build/buildd/glib2.0-2.40.2/./glib/gthread.c:764
#31 0x00007ffff0ff1182 in start_thread (arg=0x7fff3e5fe700) at pthread_create.c:312
#32 0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 27 (Thread 0x7fff3edff700 (LWP 30839)):
#0  0x00007fffcf558330 in one_step_gint16 (input=<optimized out>, history=0x7ffe8c0065a0, filter=0xb5f3d0) at gstiirequalizer.c:813
#1  gst_iir_equ_process_gint16 (equ=<optimized out>, data=0xbb1a20 "", size=<optimized out>, channels=0x2) at gstiirequalizer.c:813
#2  0x00007fffcf558c4f in gst_iir_equalizer_transform_ip (btrans=0x980c00, buf=0x7ffea8130d30) at gstiirequalizer.c:862
#3  0x00007fffe6b61960 in gst_base_transform_handle_buffer (trans=trans@entry=0x980c00, inbuf=inbuf@entry=0x7ffea8130d30, outbuf=outbuf@entry=0x7fff3edfea98) at gstbasetransform.c:2089
#4  0x00007fffe6b620a1 in gst_base_transform_chain (pad=<optimized out>, parent=0x980c00, buffer=0x7ffea8130d30) at gstbasetransform.c:2201
#5  0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea8130d30, type=4112, pad=0xbb5d00) at gstpad.c:3760
#6  gst_pad_push_data (pad=0xbb5ad0, type=type@entry=4112, data=<optimized out>) at gstpad.c:3990
#7  0x00007fffe68919b6 in gst_pad_push (pad=<optimized out>, buffer=<optimized out>) at gstpad.c:4093
#8  0x00007fffe6b622a9 in gst_base_transform_chain (pad=<optimized out>, parent=0xb8dc80, buffer=<optimized out>) at gstbasetransform.c:2237
#9  0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea8130d30, type=4112, pad=0xbb58a0) at gstpad.c:3760
#10 gst_pad_push_data (pad=0xbb5670, type=type@entry=4112, data=<optimized out>, data@entry=0x7ffea8130d30) at gstpad.c:3990
#11 0x00007fffe68919b6 in gst_pad_push (pad=<optimized out>, buffer=buffer@entry=0x7ffea8130d30) at gstpad.c:4093
#12 0x00007fffcb332eb0 in gst_queue_push_one (queue=0xb98c30) at gstqueue.c:1115
#13 gst_queue_loop (pad=<optimized out>) at gstqueue.c:1244
#14 0x00007fffe68b8549 in gst_task_func (task=0x7ffea40055f0) at gsttask.c:316
#15 0x00007fffef9b988c in g_thread_pool_thread_proxy (data=<optimized out>) at /build/buildd/glib2.0-2.40.2/./glib/gthreadpool.c:307
#16 0x00007fffef9b8f05 in g_thread_proxy (data=0xa358a0) at /build/buildd/glib2.0-2.40.2/./glib/gthread.c:764
#17 0x00007ffff0ff1182 in start_thread (arg=0x7fff3edff700) at pthread_create.c:312
#18 0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 26 (Thread 0x7fff8ec4d700 (LWP 30838)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x00007fffef9d5bf7 in g_cond_wait (cond=cond@entry=0xb991b0, mutex=mutex@entry=0xb991a0) at /build/buildd/glib2.0-2.40.2/./glib/gthread-posix.c:762
#2  0x00007fffcb33278d in gst_queue_loop (pad=<optimized out>) at gstqueue.c:1232
#3  0x00007fffe68b8549 in gst_task_func (task=0x7ffea40054d0) at gsttask.c:316
#4  0x00007fffef9b988c in g_thread_pool_thread_proxy (data=<optimized out>) at /build/buildd/glib2.0-2.40.2/./glib/gthreadpool.c:307
#5  0x00007fffef9b8f05 in g_thread_proxy (data=0x616280) at /build/buildd/glib2.0-2.40.2/./glib/gthread.c:764
#6  0x00007ffff0ff1182 in start_thread (arg=0x7fff8ec4d700) at pthread_create.c:312
#7  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 25 (Thread 0x7fff8f44e700 (LWP 30837)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x00007fffef9d5bf7 in g_cond_wait (cond=cond@entry=0xb994a0, mutex=mutex@entry=0xb99490) at /build/buildd/glib2.0-2.40.2/./glib/gthread-posix.c:762
#2  0x00007fffcb33278d in gst_queue_loop (pad=<optimized out>) at gstqueue.c:1232
#3  0x00007fffe68b8549 in gst_task_func (task=0x7ffea40053b0) at gsttask.c:316
#4  0x00007fffef9b988c in g_thread_pool_thread_proxy (data=<optimized out>) at /build/buildd/glib2.0-2.40.2/./glib/gthreadpool.c:307
#5  0x00007fffef9b8f05 in g_thread_proxy (data=0xa35c50) at /build/buildd/glib2.0-2.40.2/./glib/gthread.c:764
#6  0x00007ffff0ff1182 in start_thread (arg=0x7fff8f44e700) at pthread_create.c:312
#7  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 24 (Thread 0x7fff8fc4f700 (LWP 30836)):
#0  0x00007ffff4cf81ef in __GI_ppoll (fds=0x7ffea0006600, nfds=0x1, timeout=<optimized out>, sigmask=sigmask@entry=0x0) at ../sysdeps/unix/sysv/linux/ppoll.c:56
#1  0x00007fffe689d12a in ppoll (__ss=0x0, __timeout=<optimized out>, __nfds=<optimized out>, __fds=<optimized out>) at /usr/include/x86_64-linux-gnu/bits/poll2.h:77
#2  gst_poll_wait (set=0xa3d4a0, timeout=timeout@entry=0x189e068) at gstpoll.c:1249
#3  0x00007fffe68b1684 in gst_system_clock_id_wait_jitter_unlocked (clock=0xb5e5d0, entry=0x7ffea80455d0, jitter=<optimized out>, restart=0x1) at gstsystemclock.c:644
#4  0x00007fffe686c53f in gst_clock_id_wait (id=0x7ffea80455d0, jitter=jitter@entry=0x7fff8fc4e6d0) at gstclock.c:541
#5  0x00007fffe6b51c03 in gst_base_sink_wait_clock (sink=sink@entry=0xbaf990, time=<optimized out>, time@entry=0xecaabb80, jitter=jitter@entry=0x7fff8fc4e6d0) at gstbasesink.c:2101
#6  0x00007fffe6b52f63 in gst_base_sink_do_sync (basesink=basesink@entry=0xbaf990, obj=obj@entry=0x7ffea8109e50, late=late@entry=0x7fff8fc4e8d8, step_end=step_end@entry=0x7fff8fc4e8dc) at gstbasesink.c:2488
#7  0x00007fffe6b53af6 in gst_base_sink_chain_unlocked (basesink=basesink@entry=0xbaf990, obj=obj@entry=0x7ffea8109e50, is_list=is_list@entry=0x0, pad=<optimized out>) at gstbasesink.c:3341
#8  0x00007fffe6b55614 in gst_base_sink_chain_main (basesink=0xbaf990, pad=<optimized out>, obj=0x7ffea8109e50, is_list=0x0) at gstbasesink.c:3486
#9  0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea8109e50, type=4112, pad=0xb5d400) at gstpad.c:3760
#10 gst_pad_push_data (pad=0xbb42c0, type=type@entry=4112, data=<optimized out>) at gstpad.c:3990
#11 0x00007fffe68919b6 in gst_pad_push (pad=<optimized out>, buffer=<optimized out>) at gstpad.c:4093
#12 0x00007fffe6b622a9 in gst_base_transform_chain (pad=<optimized out>, parent=0xbb6120, buffer=<optimized out>) at gstbasetransform.c:2237
#13 0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea8109e50, type=4112, pad=0xbb4090) at gstpad.c:3760
#14 gst_pad_push_data (pad=0xb5dcc0, type=type@entry=4112, data=<optimized out>) at gstpad.c:3990
#15 0x00007fffe68919b6 in gst_pad_push (pad=<optimized out>, buffer=<optimized out>) at gstpad.c:4093
#16 0x00007fffe6b622a9 in gst_base_transform_chain (pad=<optimized out>, parent=0xbb0e20, buffer=<optimized out>) at gstbasetransform.c:2237
#17 0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea8109e50, type=4112, pad=0xb5da90) at gstpad.c:3760
#18 gst_pad_push_data (pad=0xb5d860, type=type@entry=4112, data=<optimized out>, data@entry=0x7ffea8109e50) at gstpad.c:3990
#19 0x00007fffe68919b6 in gst_pad_push (pad=<optimized out>, buffer=buffer@entry=0x7ffea8109e50) at gstpad.c:4093
#20 0x00007fffcb332eb0 in gst_queue_push_one (queue=0xb98360) at gstqueue.c:1115
#21 gst_queue_loop (pad=<optimized out>) at gstqueue.c:1244
#22 0x00007fffe68b8549 in gst_task_func (task=0x7ffea4005290) at gsttask.c:316
#23 0x00007fffef9b988c in g_thread_pool_thread_proxy (data=<optimized out>) at /build/buildd/glib2.0-2.40.2/./glib/gthreadpool.c:307
#24 0x00007fffef9b8f05 in g_thread_proxy (data=0xa3a2d0) at /build/buildd/glib2.0-2.40.2/./glib/gthread.c:764
#25 0x00007ffff0ff1182 in start_thread (arg=0x7fff8fc4f700) at pthread_create.c:312
#26 0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 23 (Thread 0x7fff90450700 (LWP 30835)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:143
#1  0x00007fffecdbf640 in pa_threaded_mainloop_wait (m=0xbe1ce0) at pulse/thread-mainloop.c:206
#2  0x00007fffd4cb083b in gst_pulseringbuffer_commit (buf=0xb6c820, sample=0x7fff9044f4e8, data=0x7ffe98029364 "\241\357\220\370\377\360\"\371\023\362!\372\324\362\060\373/\363\333\372l\363a\370[\364\332\364\376\365\"\362>\367*\361\033\367D\361y\365m\361\036\363\341\361\332\360\235\363N\357\017\367]\357m\373\232\361Q\377\274\365D\002'\373\360\004W\001\271\a\363\a\305\t\017\016\275\t\332\021s\a8\022\061\004\375\017=\001\002\r8\377S\nm\376\237\a\302\376\324\004\316\377*\003W\001\241\003=\003\325\005\314\004\243\b\f\005\070\v\372\003I\r\240\002v\016\246\001l", <incomplete sequence \343>, in_samples=0x53, out_samples=0x53, accum=0x7fff9044f4e0) at pulsesink.c:1538
#3  0x00007fffe6dae66f in gst_audio_base_sink_render (bsink=0xb8b120, buf=0x7ffea80d4450) at gstaudiobasesink.c:1923
#4  0x00007fffe6b540aa in gst_base_sink_chain_unlocked (basesink=basesink@entry=0xb8b120, obj=obj@entry=0x7ffea80d4450, is_list=is_list@entry=0x0, pad=<optimized out>) at gstbasesink.c:3378
#5  0x00007fffe6b55614 in gst_base_sink_chain_main (basesink=0xb8b120, pad=<optimized out>, obj=0x7ffea80d4450, is_list=0x0) at gstbasesink.c:3486
#6  0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea80d4450, type=4112, pad=0xb5c280) at gstpad.c:3760
#7  gst_pad_push_data (pad=0xb5c910, type=type@entry=4112, data=<optimized out>) at gstpad.c:3990
#8  0x00007fffe68919b6 in gst_pad_push (pad=<optimized out>, buffer=<optimized out>) at gstpad.c:4093
#9  0x00007fffe6b622a9 in gst_base_transform_chain (pad=<optimized out>, parent=0xb92050, buffer=<optimized out>) at gstbasetransform.c:2237
#10 0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea80d4450, type=4112, pad=0xb5c050) at gstpad.c:3760
#11 gst_pad_push_data (pad=0xb5d1d0, type=type@entry=4112, data=<optimized out>) at gstpad.c:3990
#12 0x00007fffe68919b6 in gst_pad_push (pad=<optimized out>, buffer=<optimized out>) at gstpad.c:4093
#13 0x00007fffe6b622a9 in gst_base_transform_chain (pad=<optimized out>, parent=0xba6110, buffer=<optimized out>) at gstbasetransform.c:2237
#14 0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea80d4450, type=4112, pad=0xb5cfa0) at gstpad.c:3760
#15 gst_pad_push_data (pad=0xb5c6e0, type=type@entry=4112, data=<optimized out>) at gstpad.c:3990
#16 0x00007fffe68919b6 in gst_pad_push (pad=<optimized out>, buffer=<optimized out>) at gstpad.c:4093
#17 0x00007fffe6b622a9 in gst_base_transform_chain (pad=<optimized out>, parent=0xb67cd0, buffer=<optimized out>) at gstbasetransform.c:2237
#18 0x00007fffe688ad08 in gst_pad_chain_data_unchecked (data=0x7ffea80d4450, type=4112, pad=0xb5c4b0) at gstpad.c:3760
#19 gst_pad_push_data (pad=0xb5cd70, type=type@entry=4112, data=<optimized out>, data@entry=0x7ffea80d4450) at gstpad.c:3990
#20 0x00007fffe68919b6 in gst_pad_push (pad=<optimized out>, buffer=buffer@entry=0x7ffea80d4450) at gstpad.c:4093
#21 0x00007fffcb332eb0 in gst_queue_push_one (queue=0xb98070) at gstqueue.c:1115
#22 gst_queue_loop (pad=<optimized out>) at gstqueue.c:1244
#23 0x00007fffe68b8549 in gst_task_func (task=0x7ffea4005170) at gsttask.c:316
#24 0x00007fffef9b988c in g_thread_pool_thread_proxy (data=<optimized out>) at /build/buildd/glib2.0-2.40.2/./glib/gthreadpool.c:307
#25 0x00007fffef9b8f05 in g_thread_proxy (data=0xa29770) at /build/buildd/glib2.0-2.40.2/./glib/gthread.c:764
#26 0x00007ffff0ff1182 in start_thread (arg=0x7fff90450700) at pthread_create.c:312
#27 0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 22 (Thread 0x7fff91144700 (LWP 30834)):
#0  0x00007fffef02ca71 in g_object_ref (_object=_object@entry=0xbabd10) at /build/buildd/glib2.0-2.40.2/./gobject/gobject.c:2983
#1  0x00007fffe6853431 in gst_object_ref (object=object@entry=0xbabd10) at gstobject.c:249
#2  0x00007fffe688b5b5 in gst_pad_get_range_unchecked (pad=pad@entry=0xbf2b70, offset=offset@entry=0x2caf2, size=size@entry=0x10000, buffer=buffer@entry=0x7fff91143818) at gstpad.c:4165
#3  0x00007fffe6891dff in gst_pad_pull_range (pad=0xbf0490, offset=0x2caf2, size=0x10000, buffer=0x7fff911438f8) at gstpad.c:4406
#4  0x00007fffe688b645 in gst_pad_get_range_unchecked (pad=pad@entry=0xbf06c0, offset=offset@entry=0x2caf2, size=size@entry=0x10000, buffer=buffer@entry=0x7fff911439b8) at gstpad.c:4176
#5  0x00007fffe6891dff in gst_pad_pull_range (pad=0xbf0f80, offset=offset@entry=0x2caf2, size=size@entry=0x10000, buffer=buffer@entry=0x7fff91143ae8) at gstpad.c:4406
#6  0x00007fffe4e8f88c in gst_tag_demux_read_range (demux=0xbf0e20, parent=<optimized out>, offset=<optimized out>, length=<optimized out>, buffer=0x7fff91143ae8) at gsttagdemux.c:1601
#7  0x00007fffe688b645 in gst_pad_get_range_unchecked (pad=pad@entry=0xbf11b0, offset=offset@entry=0x2c2f2, size=size@entry=0x10000, buffer=buffer@entry=0x7fff91143ba8) at gstpad.c:4176
#8  0x00007fffe6891dff in gst_pad_pull_range (pad=0xbf1610, offset=0x2c2f2, size=size@entry=0x10000, buffer=0x7ffea400d950) at gstpad.c:4406
#9  0x00007fffe6b3e8a6 in gst_base_parse_pull_range (parse=parse@entry=0x7ffea400da30, size=size@entry=0x10000, buffer=buffer@entry=0x7fff91143cc8) at gstbaseparse.c:2931
#10 0x00007fffe6b426ed in gst_base_parse_scan_frame (parse=parse@entry=0x7ffea400da30, klass=0x7ffea4008300) at gstbaseparse.c:3067
#11 0x00007fffe6b46609 in gst_base_parse_loop (pad=<optimized out>) at gstbaseparse.c:3175
#12 0x00007fffe68b8549 in gst_task_func (task=0x3c58ef0) at gsttask.c:316
#13 0x00007fffef9b988c in g_thread_pool_thread_proxy (data=<optimized out>) at /build/buildd/glib2.0-2.40.2/./glib/gthreadpool.c:307
#14 0x00007fffef9b8f05 in g_thread_proxy (data=0xa31de0) at /build/buildd/glib2.0-2.40.2/./glib/gthread.c:764
#15 0x00007ffff0ff1182 in start_thread (arg=0x7fff91144700) at pthread_create.c:312
#16 0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 21 (Thread 0x7fff91d66700 (LWP 30833)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x00007fffef9d5bf7 in g_cond_wait (cond=cond@entry=0x3c58650, mutex=mutex@entry=0x3c58608) at /build/buildd/glib2.0-2.40.2/./glib/gthread-posix.c:762
#2  0x00007fffe68b870c in gst_task_func (task=0x3c585f0) at gsttask.c:301
#3  0x00007fffef9b988c in g_thread_pool_thread_proxy (data=<optimized out>) at /build/buildd/glib2.0-2.40.2/./glib/gthreadpool.c:307
#4  0x00007fffef9b8f05 in g_thread_proxy (data=0x7ffeac0db630) at /build/buildd/glib2.0-2.40.2/./glib/gthread.c:764
#5  0x00007ffff0ff1182 in start_thread (arg=0x7fff91d66700) at pthread_create.c:312
#6  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 20 (Thread 0x7fff92982700 (LWP 30832)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x00007fffef9d5bf7 in g_cond_wait (cond=cond@entry=0x3c580b0, mutex=mutex@entry=0x3c58068) at /build/buildd/glib2.0-2.40.2/./glib/gthread-posix.c:762
#2  0x00007fffe68b870c in gst_task_func (task=0x3c58050) at gsttask.c:301
#3  0x00007fffef9b988c in g_thread_pool_thread_proxy (data=<optimized out>) at /build/buildd/glib2.0-2.40.2/./glib/gthreadpool.c:307
#4  0x00007fffef9b8f05 in g_thread_proxy (data=0xa3d230) at /build/buildd/glib2.0-2.40.2/./glib/gthread.c:764
#5  0x00007ffff0ff1182 in start_thread (arg=0x7fff92982700) at pthread_create.c:312
#6  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 19 (Thread 0x7fff9cbae700 (LWP 30808)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x00007ffff15cbffb in QTWTF::TCMalloc_PageHeap::scavengerThread (this=0x7ffff18c9f00 <QTWTF::pageheap_memory>) at ../3rdparty/javascriptcore/JavaScriptCore/wtf/FastMalloc.cpp:2359
#2  0x00007ffff15cc039 in QTWTF::TCMalloc_PageHeap::runScavengerThread (context=<optimized out>) at ../3rdparty/javascriptcore/JavaScriptCore/wtf/FastMalloc.cpp:1464
#3  0x00007ffff0ff1182 in start_thread (arg=0x7fff9cbae700) at pthread_create.c:312
#4  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 18 (Thread 0x7fff9da63700 (LWP 30806)):
#0  0x00007ffff4cf812d in poll () at ../sysdeps/unix/syscall-template.S:81
#1  0x00007fffef993fe4 in g_main_context_poll (priority=0x7fffffff, n_fds=0x1, fds=0x7fff38002490, timeout=0x270f, context=0x7fff380009a0) at /build/buildd/glib2.0-2.40.2/./glib/gmain.c:4028
#2  g_main_context_iterate (context=context@entry=0x7fff380009a0, block=block@entry=0x1, dispatch=dispatch@entry=0x1, self=<optimized out>) at /build/buildd/glib2.0-2.40.2/./glib/gmain.c:3729
#3  0x00007fffef9940ec in g_main_context_iteration (context=0x7fff380009a0, may_block=0x1) at /build/buildd/glib2.0-2.40.2/./glib/gmain.c:3795
#4  0x00007ffff547e7a1 in QEventDispatcherGlib::processEvents (this=0x7fff380008c0, flags=...) at kernel/qeventdispatcher_glib.cpp:434
#5  0x00007ffff54500af in QEventLoop::processEvents (this=this@entry=0x7fff9da62de0, flags=...) at kernel/qeventloop.cpp:149
#6  0x00007ffff54503a5 in QEventLoop::exec (this=this@entry=0x7fff9da62de0, flags=...) at kernel/qeventloop.cpp:204
#7  0x00007ffff534cc5f in QThread::exec (this=<optimized out>) at thread/qthread.cpp:537
#8  0x00007ffff534f32f in QThreadPrivate::start (arg=0x1859f20) at thread/qthread_unix.cpp:349
#9  0x00007ffff0ff1182 in start_thread (arg=0x7fff9da63700) at pthread_create.c:312
#10 0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 17 (Thread 0x7fff9e264700 (LWP 30804)):
#0  0x00007ffff4cfcda3 in select () at ../sysdeps/unix/syscall-template.S:81
#1  0x00007ffff542e171 in QProcessManager::run (this=0x7ffff57b8540 <processManager()::processManager>) at io/qprocess_unix.cpp:270
#2  0x00007ffff534f32f in QThreadPrivate::start (arg=0x7ffff57b8540 <processManager()::processManager>) at thread/qthread_unix.cpp:349
#3  0x00007ffff0ff1182 in start_thread (arg=0x7fff9e264700) at pthread_create.c:312
#4  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 16 (Thread 0x7fff9f0fa700 (LWP 30802)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x00007fffec09881d in WTF::TCMalloc_PageHeap::scavengerThread() () from /usr/lib/x86_64-linux-gnu/libQtWebKit.so.4
#2  0x00007fffec098859 in WTF::TCMalloc_PageHeap::runScavengerThread(void*) () from /usr/lib/x86_64-linux-gnu/libQtWebKit.so.4
#3  0x00007ffff0ff1182 in start_thread (arg=0x7fff9f0fa700) at pthread_create.c:312
#4  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 15 (Thread 0x7fff9ffff700 (LWP 30799)):
#0  0x00007ffff4cf812d in poll () at ../sysdeps/unix/syscall-template.S:81
#1  0x00007fffef993fe4 in g_main_context_poll (priority=0x7fffffff, n_fds=0x2, fds=0x7fff88002c80, timeout=0xffffffff, context=0x7fff880009a0) at /build/buildd/glib2.0-2.40.2/./glib/gmain.c:4028
#2  g_main_context_iterate (context=context@entry=0x7fff880009a0, block=block@entry=0x1, dispatch=dispatch@entry=0x1, self=<optimized out>) at /build/buildd/glib2.0-2.40.2/./glib/gmain.c:3729
#3  0x00007fffef9940ec in g_main_context_iteration (context=0x7fff880009a0, may_block=0x1) at /build/buildd/glib2.0-2.40.2/./glib/gmain.c:3795
#4  0x00007ffff547e7be in QEventDispatcherGlib::processEvents (this=0x7fff880008c0, flags=...) at kernel/qeventdispatcher_glib.cpp:436
#5  0x00007ffff54500af in QEventLoop::processEvents (this=this@entry=0x7fff9fffeda0, flags=...) at kernel/qeventloop.cpp:149
#6  0x00007ffff54503a5 in QEventLoop::exec (this=this@entry=0x7fff9fffeda0, flags=...) at kernel/qeventloop.cpp:204
#7  0x00007ffff534cc5f in QThread::exec (this=this@entry=0x155bff0) at thread/qthread.cpp:537
#8  0x00007ffff5431823 in QInotifyFileSystemWatcherEngine::run (this=0x155bff0) at io/qfilesystemwatcher_inotify.cpp:265
#9  0x00007ffff534f32f in QThreadPrivate::start (arg=0x155bff0) at thread/qthread_unix.cpp:349
#10 0x00007ffff0ff1182 in start_thread (arg=0x7fff9ffff700) at pthread_create.c:312
#11 0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 14 (Thread 0x7fffb57fa700 (LWP 30797)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x00007ffff534f816 in wait (time=0xffffffffffffffff, this=0xcbbae0) at thread/qwaitcondition_unix.cpp:86
#2  QWaitCondition::wait (this=this@entry=0xcbb9e8, mutex=0xc79260, time=time@entry=0xffffffffffffffff) at thread/qwaitcondition_unix.cpp:158
#3  0x00007ffff2578e6c in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0xcbb9c0, th=0x7fffa800d180) at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#4  0x00007ffff257b903 in ThreadWeaver::WorkingHardState::applyForWork (this=0xc84fa0, th=0x7fffa800d180, previous=0x7fffb0025fd0) at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#5  0x00007ffff257a61f in ThreadWeaver::Thread::run (this=0x7fffa800d180) at ../../../threadweaver/Weaver/Thread.cpp:98
#6  0x00007ffff534f32f in QThreadPrivate::start (arg=0x7fffa800d180) at thread/qthread_unix.cpp:349
#7  0x00007ffff0ff1182 in start_thread (arg=0x7fffb57fa700) at pthread_create.c:312
#8  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 13 (Thread 0x7fffb5ffb700 (LWP 30796)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x00007ffff534f816 in wait (time=0xffffffffffffffff, this=0xcbbae0) at thread/qwaitcondition_unix.cpp:86
#2  QWaitCondition::wait (this=this@entry=0xcbb9e8, mutex=0xc79260, time=time@entry=0xffffffffffffffff) at thread/qwaitcondition_unix.cpp:158
#3  0x00007ffff2578e6c in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0xcbb9c0, th=0x7fffa8008580) at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#4  0x00007ffff257b903 in ThreadWeaver::WorkingHardState::applyForWork (this=0xc84fa0, th=0x7fffa8008580, previous=0x7fffb0021c60) at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#5  0x00007ffff257a61f in ThreadWeaver::Thread::run (this=0x7fffa8008580) at ../../../threadweaver/Weaver/Thread.cpp:98
#6  0x00007ffff534f32f in QThreadPrivate::start (arg=0x7fffa8008580) at thread/qthread_unix.cpp:349
#7  0x00007ffff0ff1182 in start_thread (arg=0x7fffb5ffb700) at pthread_create.c:312
#8  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 12 (Thread 0x7fffb67fc700 (LWP 30795)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x00007ffff534f816 in wait (time=0xffffffffffffffff, this=0xcbbae0) at thread/qwaitcondition_unix.cpp:86
#2  QWaitCondition::wait (this=this@entry=0xcbb9e8, mutex=0xc79260, time=time@entry=0xffffffffffffffff) at thread/qwaitcondition_unix.cpp:158
#3  0x00007ffff2578e6c in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0xcbb9c0, th=0x7fffa8002610) at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#4  0x00007ffff257b903 in ThreadWeaver::WorkingHardState::applyForWork (this=0xc84fa0, th=0x7fffa8002610, previous=0x0) at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#5  0x00007ffff257b91c in ThreadWeaver::WorkingHardState::applyForWork (this=0xc84fa0, th=0x7fffa8002610, previous=0x0) at ../../../threadweaver/Weaver/WorkingHardState.cpp:71
#6  0x00007ffff257b91c in ThreadWeaver::WorkingHardState::applyForWork (this=0xc84fa0, th=0x7fffa8002610, previous=0x7fff9801c040) at ../../../threadweaver/Weaver/WorkingHardState.cpp:71
#7  0x00007ffff257a61f in ThreadWeaver::Thread::run (this=0x7fffa8002610) at ../../../threadweaver/Weaver/Thread.cpp:98
#8  0x00007ffff534f32f in QThreadPrivate::start (arg=0x7fffa8002610) at thread/qthread_unix.cpp:349
#9  0x00007ffff0ff1182 in start_thread (arg=0x7fffb67fc700) at pthread_create.c:312
#10 0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 11 (Thread 0x7fffb6ffd700 (LWP 30794)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x00007ffff534f816 in wait (time=0xffffffffffffffff, this=0x3992190) at thread/qwaitcondition_unix.cpp:86
#2  QWaitCondition::wait (this=<optimized out>, mutex=mutex@entry=0x3991770, time=time@entry=0xffffffffffffffff) at thread/qwaitcondition_unix.cpp:158
#3  0x00007ffff534b95b in QSemaphore::acquire (this=this@entry=0x3991e90, n=n@entry=0x1) at thread/qsemaphore.cpp:144
#4  0x00007ffff6f62b81 in Playlists::PlaylistFileLoaderJob::run (this=0x3991e50) at ../../src/core-impl/playlists/types/file/PlaylistFileLoaderJob.cpp:92
#5  0x00007ffff257acb2 in ThreadWeaver::JobRunHelper::runTheJob (this=this@entry=0x7fffb6ffcda0, th=th@entry=0x10881a0, job=job@entry=0x3991e50) at ../../../threadweaver/Weaver/Job.cpp:106
#6  0x00007ffff257ae6e in ThreadWeaver::Job::execute (this=0x3991e50, th=0x10881a0) at ../../../threadweaver/Weaver/Job.cpp:135
#7  0x00007ffff257a6bb in ThreadWeaver::Thread::run (this=0x10881a0) at ../../../threadweaver/Weaver/Thread.cpp:108
#8  0x00007ffff534f32f in QThreadPrivate::start (arg=0x10881a0) at thread/qthread_unix.cpp:349
#9  0x00007ffff0ff1182 in start_thread (arg=0x7fffb6ffd700) at pthread_create.c:312
#10 0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 10 (Thread 0x7fffb77fe700 (LWP 30792)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x00007ffff534f816 in wait (time=0xffffffffffffffff, this=0x219fd60) at thread/qwaitcondition_unix.cpp:86
#2  QWaitCondition::wait (this=<optimized out>, mutex=mutex@entry=0x3928d40, time=time@entry=0xffffffffffffffff) at thread/qwaitcondition_unix.cpp:158
#3  0x00007ffff534b95b in QSemaphore::acquire (this=this@entry=0x21cdfc0, n=n@entry=0x1) at thread/qsemaphore.cpp:144
#4  0x00007ffff6f62b81 in Playlists::PlaylistFileLoaderJob::run (this=0x21cdf80) at ../../src/core-impl/playlists/types/file/PlaylistFileLoaderJob.cpp:92
#5  0x00007ffff257acb2 in ThreadWeaver::JobRunHelper::runTheJob (this=this@entry=0x7fffb77fdda0, th=th@entry=0xe17480, job=job@entry=0x21cdf80) at ../../../threadweaver/Weaver/Job.cpp:106
#6  0x00007ffff257ae6e in ThreadWeaver::Job::execute (this=0x21cdf80, th=0xe17480) at ../../../threadweaver/Weaver/Job.cpp:135
#7  0x00007ffff257a6bb in ThreadWeaver::Thread::run (this=0xe17480) at ../../../threadweaver/Weaver/Thread.cpp:108
#8  0x00007ffff534f32f in QThreadPrivate::start (arg=0xe17480) at thread/qthread_unix.cpp:349
#9  0x00007ffff0ff1182 in start_thread (arg=0x7fffb77fe700) at pthread_create.c:312
#10 0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 9 (Thread 0x7fffb7fff700 (LWP 30791)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x00007ffff534f816 in wait (time=0xffffffffffffffff, this=0xcbbae0) at thread/qwaitcondition_unix.cpp:86
#2  QWaitCondition::wait (this=this@entry=0xcbb9e8, mutex=0xc79260, time=time@entry=0xffffffffffffffff) at thread/qwaitcondition_unix.cpp:158
#3  0x00007ffff2578e6c in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0xcbb9c0, th=0xee36e0) at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#4  0x00007ffff257b903 in ThreadWeaver::WorkingHardState::applyForWork (this=0xc84fa0, th=0xee36e0, previous=0x20faeb0) at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#5  0x00007ffff257a61f in ThreadWeaver::Thread::run (this=0xee36e0) at ../../../threadweaver/Weaver/Thread.cpp:98
#6  0x00007ffff534f32f in QThreadPrivate::start (arg=0xee36e0) at thread/qthread_unix.cpp:349
#7  0x00007ffff0ff1182 in start_thread (arg=0x7fffb7fff700) at pthread_create.c:312
#8  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 8 (Thread 0x7fffc4ed7700 (LWP 30790)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x00007ffff534f816 in wait (time=0xffffffffffffffff, this=0xcbbae0) at thread/qwaitcondition_unix.cpp:86
#2  QWaitCondition::wait (this=this@entry=0xcbb9e8, mutex=0xc79260, time=time@entry=0xffffffffffffffff) at thread/qwaitcondition_unix.cpp:158
#3  0x00007ffff2578e6c in ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0xcbb9c0, th=0xe03f70) at ../../../threadweaver/Weaver/WeaverImpl.cpp:370
#4  0x00007ffff257b903 in ThreadWeaver::WorkingHardState::applyForWork (this=0xc84fa0, th=0xe03f70, previous=0x7fffb0024fe0) at ../../../threadweaver/Weaver/WorkingHardState.cpp:68
#5  0x00007ffff257a61f in ThreadWeaver::Thread::run (this=0xe03f70) at ../../../threadweaver/Weaver/Thread.cpp:98
#6  0x00007ffff534f32f in QThreadPrivate::start (arg=0xe03f70) at thread/qthread_unix.cpp:349
#7  0x00007ffff0ff1182 in start_thread (arg=0x7fffc4ed7700) at pthread_create.c:312
#8  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 7 (Thread 0x7fffc5f92700 (LWP 30788)):
#0  0x00007ffff4cf812d in poll () at ../sysdeps/unix/syscall-template.S:81
#1  0x00007fffef993fe4 in g_main_context_poll (priority=0x7fffffff, n_fds=0x2, fds=0x7fffb80028d0, timeout=0xffffffff, context=0x7fffb80009a0) at /build/buildd/glib2.0-2.40.2/./glib/gmain.c:4028
#2  g_main_context_iterate (context=context@entry=0x7fffb80009a0, block=block@entry=0x1, dispatch=dispatch@entry=0x1, self=<optimized out>) at /build/buildd/glib2.0-2.40.2/./glib/gmain.c:3729
#3  0x00007fffef9940ec in g_main_context_iteration (context=0x7fffb80009a0, may_block=0x1) at /build/buildd/glib2.0-2.40.2/./glib/gmain.c:3795
#4  0x00007ffff547e7be in QEventDispatcherGlib::processEvents (this=0x7fffb80008c0, flags=...) at kernel/qeventdispatcher_glib.cpp:436
#5  0x00007ffff54500af in QEventLoop::processEvents (this=this@entry=0x7fffc5f91da0, flags=...) at kernel/qeventloop.cpp:149
#6  0x00007ffff54503a5 in QEventLoop::exec (this=this@entry=0x7fffc5f91da0, flags=...) at kernel/qeventloop.cpp:204
#7  0x00007ffff534cc5f in QThread::exec (this=this@entry=0xcbd8d0) at thread/qthread.cpp:537
#8  0x00007ffff5431823 in QInotifyFileSystemWatcherEngine::run (this=0xcbd8d0) at io/qfilesystemwatcher_inotify.cpp:265
#9  0x00007ffff534f32f in QThreadPrivate::start (arg=0xcbd8d0) at thread/qthread_unix.cpp:349
#10 0x00007ffff0ff1182 in start_thread (arg=0x7fffc5f92700) at pthread_create.c:312
#11 0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 6 (Thread 0x7fffcca0c700 (LWP 30787)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:238
#1  0x00007ffff534f7f4 in wait (time=0xea60, this=0xc79000) at thread/qwaitcondition_unix.cpp:84
#2  QWaitCondition::wait (this=this@entry=0xc796a0, mutex=mutex@entry=0xc79698, time=time@entry=0xea60) at thread/qwaitcondition_unix.cpp:158
#3  0x00007ffff6fe212e in AbstractDirectoryWatcher::run (this=0xc79670) at ../../src/scanner/AbstractDirectoryWatcher.cpp:65
#4  0x00007ffff257acb2 in ThreadWeaver::JobRunHelper::runTheJob (this=this@entry=0x7fffcca0bda0, th=th@entry=0x964640, job=job@entry=0xc79670) at ../../../threadweaver/Weaver/Job.cpp:106
#5  0x00007ffff257ae6e in ThreadWeaver::Job::execute (this=0xc79670, th=0x964640) at ../../../threadweaver/Weaver/Job.cpp:135
#6  0x00007ffff257a6bb in ThreadWeaver::Thread::run (this=0x964640) at ../../../threadweaver/Weaver/Thread.cpp:108
#7  0x00007ffff534f32f in QThreadPrivate::start (arg=0x964640) at thread/qthread_unix.cpp:349
#8  0x00007ffff0ff1182 in start_thread (arg=0x7fffcca0c700) at pthread_create.c:312
#9  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 4 (Thread 0x7fffd4ca8700 (LWP 30784)):
#0  0x00007ffff4cf812d in poll () at ../sysdeps/unix/syscall-template.S:81
#1  0x00007fffecdbf031 in poll (__timeout=0x81, __nfds=0x2, __fds=0x7fffd0000910) at /usr/include/x86_64-linux-gnu/bits/poll2.h:46
#2  poll_func (ufds=0x7fffd0000910, nfds=0x2, timeout=0x81, userdata=0x74bf80) at pulse/thread-mainloop.c:69
#3  0x00007fffecdb083c in pa_mainloop_poll (m=m@entry=0xbe1a20) at pulse/mainloop.c:850
#4  0x00007fffecdb0ece in pa_mainloop_iterate (m=m@entry=0xbe1a20, block=block@entry=0x1, retval=retval@entry=0x0) at pulse/mainloop.c:932
#5  0x00007fffecdb0f80 in pa_mainloop_run (m=0xbe1a20, retval=retval@entry=0x0) at pulse/mainloop.c:950
#6  0x00007fffecdbefe3 in thread (userdata=0xbe1ce0) at pulse/thread-mainloop.c:88
#7  0x00007fffe7b20f08 in internal_thread_func (userdata=0x74c770) at pulsecore/thread-posix.c:83
#8  0x00007ffff0ff1182 in start_thread (arg=0x7fffd4ca8700) at pthread_create.c:312
#9  0x00007ffff4d0547d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 1 (Thread 0x7ffff7f95800 (LWP 30742)):
#0  0x00007ffff54655d7 in computeOffsets (metaobject=0x7ffff57b5160 <QAbstractEventDispatcher::staticMetaObject>, methodOffset=<synthetic pointer>, signalOffset=<synthetic pointer>) at kernel/qobject.cpp:231
#1  QMetaObject::activate (sender=sender@entry=0x619630, m=m@entry=0x7ffff57b5160 <QAbstractEventDispatcher::staticMetaObject>, local_signal_index=local_signal_index@entry=0x1, argv=argv@entry=0x0) at kernel/qobject.cpp:3440
#2  0x00007ffff54af393 in QAbstractEventDispatcher::awake (this=this@entry=0x619630) at .moc/release-shared/moc_qabstracteventdispatcher.cpp:106
#3  0x00007ffff547e7e7 in QEventDispatcherGlib::processEvents (this=0x619630, flags=...) at kernel/qeventdispatcher_glib.cpp:442
#4  0x00007ffff5ee5bb6 in QGuiEventDispatcherGlib::processEvents (this=<optimized out>, flags=...) at kernel/qguieventdispatcher_glib.cpp:204
#5  0x00007ffff54500af in QEventLoop::processEvents (this=this@entry=0x7fffffffd940, flags=...) at kernel/qeventloop.cpp:149
#6  0x00007ffff54503a5 in QEventLoop::exec (this=this@entry=0x7fffffffd940, flags=...) at kernel/qeventloop.cpp:204
#7  0x00007ffff5455b79 in QCoreApplication::exec () at kernel/qcoreapplication.cpp:1225
#8  0x00007ffff5e4237c in QApplication::exec () at kernel/qapplication.cpp:3828
#9  0x0000000000408393 in main (argc=<optimized out>, argv=0x7fffffffdbd8) at ../../src/main.cpp:329
Comment 25 Myriam Schweingruber 2015-04-26 18:10:36 UTC
@Vangelis: how did you generate that backtrace? Would be nice to have the header and ideally one generated by Dr. Konqi, so far I can only see gstreamer related threads (as in gstreamer library, not phonon related). 
Also you don't tell your system specifications, that is why the header of the backtrace is important as it sums up the system specs (at least Dr. Konqi does)
Comment 26 Vangelis 2015-04-26 18:30:21 UTC
* I installed all of the debug symbols (I actually had to repeat quite sometimes in order to make sure that all of the debug symbols are installed)
* I ran `gdb --args amarok -d --nofork`
* I started playing a song
* Opened the equilizer
* when I touched the vertical bars, amarok crashed
* From the gdb window, I typed `thread apply all bt`
* I pasted the output here.

Unfortunately, Dr. Konqi is not coming up, and I get a message "Unable to start Dr. Konqi".

My system is Kubuntu 14.04 fully up to date as of today.

$ cat /etc/lsb-release 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=14.04
DISTRIB_CODENAME=trusty
DISTRIB_DESCRIPTION="Ubuntu 14.04.2 LTS"

Amarok is installed from the repositories:

$ apt-cache policy amarok
amarok:
  Installed: 2:2.8.0-0ubuntu3
  Candidate: 2:2.8.0-0ubuntu3
  Version table:
 *** 2:2.8.0-0ubuntu3 0
        500 http://no.archive.ubuntu.com/ubuntu/ trusty/universe amd64 Packages
        100 /var/lib/dpkg/status

KDE Desktop is installed from the kubuntu-ppa backports:

$ apt-cache policy libkdecore5 
libkdecore5:
  Installed: 4:4.14.2-0ubuntu1~ubuntu14.04~ppa1
  Candidate: 4:4.14.2-0ubuntu1~ubuntu14.04~ppa1
  Version table:
 *** 4:4.14.2-0ubuntu1~ubuntu14.04~ppa1 0
        500 http://ppa.launchpad.net/kubuntu-ppa/backports/ubuntu/ trusty/main amd64 Packages
        100 /var/lib/dpkg/status
     4:4.13.3-0ubuntu0.2 0
        500 http://no.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 Packages
        500 http://security.ubuntu.com/ubuntu/ trusty-security/main amd64 Packages
     4:4.13.0-0ubuntu1 0
        500 http://no.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages

And this is my Kernel.
$ uname -a
Linux borealis 3.13.0-46-generic #79-Ubuntu SMP Tue Mar 10 20:06:50 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

Anything else I can/need to provide?
Comment 27 Myriam Schweingruber 2015-04-26 18:51:31 UTC
Right, of course Dr. Konqi will not run if you start Amarok in a gdb environment. you need to run Amarok just normally :)

FWIW: currently using Amarok from git v2.8.0-459-ged0b96e on Kubuntu 14.10, KDE 4.14.2 which uses a much more recent Phonon-backend-gstreamer than you do: I can't reproduce this bug at all, never seen a crash.

I presume this is fixed with the gstreamer 1.x libraries used in phonon-backend-gstreamer starting with version 4.7.90 (aka 4.8 beta) anyway.
Comment 28 Vangelis 2015-04-26 19:24:25 UTC
Dr. Konqi was not coming up anyway, that's why I used gdb :)

If it's fixed in a newer version, then I guess it's fixed.

I actually installed the following packages from the vivid repository, but I still got the crash.

phonon-backend-gstreamer_4.8.2-0ubuntu1_amd64.deb
phonon-backend-gstreamer-common_4.8.2-0ubuntu1_amd64.deb
libglib2.0-0_2.44.0-1ubuntu3_amd64.deb
libgstreamer-plugins-good1.0-0_1.4.5-1ubuntu2_amd64.deb

Unfortunately, I could not "easily" install the dbg packages (many dependencies, that would mess up my whole system) to get another proper backtrace, so I reverted back to the "trusty" versions.
Comment 29 Myriam Schweingruber 2015-04-26 19:44:51 UTC
You installed the 15.04-packages into 14.04? Bad idea, as those are not compiled against the correct libraries of KDE and Qt anyway, you should not do that.

AFAIK the Kubuntu backports PPA and updates PPA is the only way to get newer packages in a previous release, using packages from a later release is never a good idea.

Also: if you use a newer Phonon backend you also need to change all the gstreamer libraires and plugins, as the 0.10.x plugins are incompatible and need to be removed.
Comment 30 peddanet 2016-10-06 19:06:53 UTC
Hi, problem still persists. :-(

My system: Ubuntu 14.04 Unity (not KDE), Amarok 2.8.0,  KDE 4.13.3

Problem just occurs every time, only after activating equalizer, and changing the equalizer tabs AFTER one song was played or is being played. So it could have something to do with changing the equalizer bands while there has been played a song after start,.

If you just start the equalizer, you can adjust it and save it. After restart it will play with these settings. Then again it crashes, when changing the equalizer tabs, not so with "Default button", which works. Dr. Konqi is not starting, maybe because of running Unity. Debug packages for phonon-backend-gstreamer, amarok-dbg and pulseaudio is installed. Which log do you need (and where can I find it)?

Greetz Peter
Comment 31 peddanet 2016-10-06 19:15:03 UTC
(In reply to peddanet from comment #30)
> Hi, problem still persists. :-(
> 
> My system: Ubuntu 14.04 Unity (not KDE), Amarok 2.8.0,  KDE 4.13.3
> 
> Problem just occurs every time, only after activating equalizer, and
> changing the equalizer tabs AFTER one song was played or is being played. So
> it could have something to do with changing the equalizer bands while there
> has been played a song after start,.
> 
> If you just start the equalizer, you can adjust it and save it. After
> restart it will play with these settings. Then again it crashes, when
> changing the equalizer tabs, not so with "Default button", which works. Dr.
> Konqi is not starting, maybe because of running Unity. Debug packages for
> phonon-backend-gstreamer, amarok-dbg and pulseaudio is installed. Which log
> do you need (and where can I find it)?
> 
> Greetz Peter

Now it's getting really weird, after doing the above mentioned steps (changing and saving without playing a song and quitting) for some time, the error was not reproducible, the first time today!! Now I can change the equalizer whenever I want. Earlier in the day I skipped that wikipedia thing, if this might be of interest. But I worked without restarts of the system, and there seems no connection.  I 'll try to accept it ;-)
Comment 32 Andrew Crouthamel 2018-09-19 14:26:55 UTC
This bug has had its resolution changed, but accidentally has been left in NEEDSINFO status. I am thus closing this bug and setting the status as RESOLVED to reflect the resolution change.