Segmentation Fault when setting volume

148 views
Skip to first unread message

Cefn

unread,
Dec 31, 2010, 9:28:31 AM12/31/10
to gstreamer-java
I have consistently encountered a terminal flaw somewhere between the
GSVideo Processing library and Lucid's Gstreamer bindings, which
causes a segmentation fault when volume is changed. When I change the
volume of the playing video, it crashes about one out of every 100
invocations. When I comment out any lines which set the volume, it
carries on running without crashes.

This makes the library unusable for my application unfortunately, as
blending between videos (volume and transparency) is critical.

In the hope someone might have a suggestion, or a bug can be tracked
down, I've created a patched version of the gstreamer-java tutorial
example inline below which reliably (although randomly) recreates the
crash on Ubuntu Lucid using Playbin2.

Time before SIGSEGV is between 0 and 30 seconds or so when I play a
segment of an MP4 file from archive.org, changing the volume every
100ms. There appears to be no relationship to the volume or the
position in the file and the likelihood of a crash.

To recreate, specify a video file as the first argument of the app.
For example I've been using this...
http://www.archive.org/download/IMB_SF_R30_C10/IMB_SF_R30_C10_512kb.mp4

Using Playbin instead of Playbin2 seems to be a workaround, but
GSMovie in Processing has Playbin2 as a hard-coded dependency. I don't
know what other tradeoffs there are between Playbin and Playbin2.

Cefn
http://cefn.com

Reported error - essentially identical on both Sun's java and
OpenJDK...

#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00000000, pid=12062, tid=2181036912
#
# JRE version: 6.0_20-b20
# Java VM: OpenJDK Server VM (19.0-b09 mixed mode linux-x86 )
# Derivative: IcedTea6 1.9.2
# Distribution: Ubuntu 10.04.1 LTS, package
6b20-1.9.2-0ubuntu1~10.04.1
# Problematic frame:
# C 0x00000000
#
# An error report file with more information is saved as:
# /home/cefn/Documents/workspace/GstreamerBug/hs_err_pid12062.log
#
# If you would like to submit a bug report, please include
# instructions how to reproduce the bug and visit:
# https://bugs.launchpad.net/ubuntu/+source/openjdk-6/

Relevant packages installed...

google-gadgets-gst 0.11.2-1ubuntu1
gstreamer-tools 0.10.31-1~lucid1
gstreamer0.10-alsa 0.10.31-1~lucid1
gstreamer0.10-esd 0.10.26-1~lucid1
gstreamer0.10-ffmpeg 0.10.11-1~lucid1
gstreamer0.10-gnonlin 0.10.16-1~lucid1
gstreamer0.10-nice 0.0.12-1~ppa10.04+1
gstreamer0.10-pitfdll 0.9.1.1+cvs20080215-1ubuntu2
gstreamer0.10-plugins-bad 0.10.20-2~lucid3
gstreamer0.10-plugins-bad-multiverse 0.10.18-0ubuntu1
gstreamer0.10-plugins-base 0.10.31-1~lucid1
gstreamer0.10-plugins-base-apps 0.10.31-1~lucid1
gstreamer0.10-plugins-good 0.10.26-1~lucid1
gstreamer0.10-plugins-ugly 0.10.16-1~lucid1
gstreamer0.10-plugins-ugly-multiverse 0.10.14-0ubuntu2
gstreamer0.10-pocketsphinx 0.5.1+dfsg1-0ubuntu1
gstreamer0.10-pulseaudio 0.10.26-1~lucid1
gstreamer0.10-tools 0.10.31-1~lucid1
gstreamer0.10-x 0.10.31-1~lucid1
libgstfarsight0.10-0 0.0.21-1ubuntu1~ppa10.04+1
libgstreamer-plugins-base0.10-0 0.10.31-1~lucid1
libgstreamer0.10-0 0.10.31-1~lucid1
libgstreamer0.10-dev 0.10.31-1~lucid1
python-gst0.10 0.10.20-1~lucid1


Code to recreate

>>>>>>>>>>>>>>>>>>>>

package com.cefn.gstreamer;

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.io.File;

import javax.swing.JFrame;
import javax.swing.SwingUtilities;
import javax.swing.WindowConstants;

import org.gstreamer.Bus;
import org.gstreamer.Gst;
import org.gstreamer.GstObject;
import org.gstreamer.State;
import org.gstreamer.elements.PlayBin2;
import org.gstreamer.elements.RGBDataAppSink;
import org.gstreamer.swing.VideoComponent;

public class App {

public static void main(String[] args) {
args = Gst.init("VideoPlayer", args);
final PlayBin2 playbin = new PlayBin2("VideoPlayer");
playbin.setInputFile(new File(args[0]));

SwingUtilities.invokeLater(new Runnable() {

public void run() {
VideoComponent videoComponent = new VideoComponent();
playbin.setVideoSink(videoComponent.getElement());

JFrame frame = new JFrame("VideoPlayer");
frame.getContentPane().add(videoComponent,
BorderLayout.CENTER);
frame.setPreferredSize(new Dimension(640, 480));

frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
frame.pack();
frame.setVisible(true);
playbin.setState(State.PLAYING);

//added by cefn for looping in case not enough time
to recreate
playbin.getBus().connect(new Bus.EOS() {
public void endOfStream(GstObject element) {
playbin.seek(playbin.getStartTime());
}
});

//added by cefn to recreate crash
Thread setVolumeThread = new Thread(){
public void run(){
while(true){
playbin.setVolume(Math.random());
try{
Thread.sleep(100);
}
catch(InterruptedException ie){
//ignore wakeups
}
}
}
};
setVolumeThread.start();

}
});
Gst.main();
playbin.setState(State.NULL);
}

}

Farkas Levente

unread,
Jan 1, 2011, 11:22:21 AM1/1/11
to gstream...@googlegroups.com, Cefn
On 12/31/2010 03:28 PM, Cefn wrote:
> I have consistently encountered a terminal flaw somewhere between the
> GSVideo Processing library and Lucid's Gstreamer bindings, which
> causes a segmentation fault when volume is changed. When I change the
> volume of the playing video, it crashes about one out of every 100
> invocations. When I comment out any lines which set the volume, it
> carries on running without crashes.
>
> This makes the library unusable for my application unfortunately, as
> blending between videos (volume and transparency) is critical.
>
> In the hope someone might have a suggestion, or a bug can be tracked
> down, I've created a patched version of the gstreamer-java tutorial
> example inline below which reliably (although randomly) recreates the
> crash on Ubuntu Lucid using Playbin2.
>
> Time before SIGSEGV is between 0 and 30 seconds or so when I play a
> segment of an MP4 file from archive.org, changing the volume every
> 100ms. There appears to be no relationship to the volume or the
> position in the file and the likelihood of a crash.
>
> To recreate, specify a video file as the first argument of the app.
> For example I've been using this...
> http://www.archive.org/download/IMB_SF_R30_C10/IMB_SF_R30_C10_512kb.mp4
>
> Using Playbin instead of Playbin2 seems to be a workaround, but
> GSMovie in Processing has Playbin2 as a hard-coded dependency. I don't
> know what other tradeoffs there are between Playbin and Playbin2.

which version did you try?
did you try the latest svn?
for me this test with the svn never finish with the above mp4 file (and
don't crash) on rhel-6 with the latest gstreamer.

--
Levente "Si vis pacem para bellum!"

Cefn

unread,
Jan 1, 2011, 1:49:11 PM1/1/11
to gstreamer-java
Do you mean I should update my gstreamer libs or gstreamer-java libs?

I can consistently recreate the crash using a jar built with 'ant jar'
against gstreamer-java-read-only revision 469 from SVN and the video
mentioned.

It may well be an upstream problem to do with the specific build of
Gstreamer on my distro, but I don't know where to go next and what
they are likely to need.

I'm not using anything especially weird, except trying to keep up to
date with latest Gstreamer Ubuntu builds, (versions as outlined in the
original post). I updated to newer gstreamer because of this error in
the first place so it goes way back.

Cefn

Farkas Levente

unread,
Jan 1, 2011, 2:31:49 PM1/1/11
to gstream...@googlegroups.com, Cefn
this command line never crash and never finish for me:
java -cp /usr/share/java/gstreamer-java.jar:/usr/share/java/jna.jar:.
App http://www.archive.org/download/IMB_SF_R30_C10/IMB_SF_R30_C10_512kb.mp4

Tal Shalif

unread,
Jan 1, 2011, 10:48:17 PM1/1/11
to gstream...@googlegroups.com
Is it possible to re-create this failure with gst-python? This would prove it to be gstreamer-java specific issue or not. not

--
You received this message because you are subscribed to the Google Groups "gstreamer-java" group.
To post to this group, send email to gstream...@googlegroups.com.
To unsubscribe from this group, send email to gstreamer-jav...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/gstreamer-java?hl=en.


ac

unread,
Jan 2, 2011, 7:29:34 PM1/2/11
to gstreamer-java
As a quick note on this: I realized this problem a while ago when
using gsvideo. I did some tests to try to find the problem, but I was
unsuccessful. All I was able to determine is the error was caused by
one specific call of the gstreamer API (I forgot which one, I can re-
run the tests and report back). Also, the crash occurred outside the
JVM (i.e. in native code)...

The temporary solution I found was to revert from PlayBin2 to PlayBin.

On Jan 2, 12:48 pm, Tal Shalif <tsha...@gmail.com> wrote:
> Is it possible to re-create this failure with gst-python? This would prove
> it to be gstreamer-java specific issue or not. not
>
> > gstreamer-jav...@googlegroups.com<gstreamer-java%2Bunsubscribe@go oglegroups.com>
> > .

Farkas Levente

unread,
Jan 14, 2011, 8:47:20 AM1/14/11
to gstream...@googlegroups.com, Cefn
could you retest it with the latest gstreamer and lastest gstreamer-java
svn code?

On 12/31/2010 03:28 PM, Cefn wrote:

Farkas Levente

unread,
Jan 14, 2011, 8:49:04 AM1/14/11
to gstream...@googlegroups.com, Cefn
...since for me it's never crash...

Cefn Hoile

unread,
Jan 14, 2011, 10:13:01 AM1/14/11
to Farkas Levente, gstream...@googlegroups.com
Farkas,

Could you suggest specific versions which you feel would be worth trying?

I've already tested against the SVN version of gstreamer-java at the
time (SVN revision 469). If that's been updated to fix this bug in the
last 3 weeks then it might be worth trying to rebuild it again, else
it's not worth repeating the procedure. I'm not sure you picked up on
the fact I'd run it against the SVN version.

Are you suggesting I should try to get hold of a gstreamer which is
newer than the one available in my distro's repositories (that's
0.10.31)? Which version? 0.10.31 is the latest stable version listed
on the Gstreamer website too.

Cefn
http://cefn.com

Farkas Levente

unread,
Jan 14, 2011, 10:25:21 AM1/14/11
to googl...@cefn.com, gstream...@googlegroups.com
this is what i've installed:

gstreamer-0.10.31-1.el6.x86_64
gstreamer-devel-0.10.31-1.el6.x86_64
gstreamer-ffmpeg-0.10.11-1.el6.x86_64
gstreamer-plugins-bad-0.10.20-0.el6.x86_64
gstreamer-plugins-bad-free-0.10.20-1.el6.x86_64
gstreamer-plugins-bad-free-devel-0.10.20-1.el6.x86_64
gstreamer-plugins-bad-free-extras-0.10.20-1.el6.x86_64
gstreamer-plugins-base-0.10.31-1.el6.x86_64
gstreamer-plugins-base-devel-0.10.31-1.el6.x86_64
gstreamer-plugins-good-0.10.26-1.el6.x86_64
gstreamer-plugins-ugly-0.10.16-0.el6.x86_64
gstreamer-tools-0.10.31-1.el6.x86_64

this's the latest svn:
gstreamer-java-1.5-0.2.el6.x86_64
gstreamer-java-swt-1.5-0.2.el6.x86_64

ac

unread,
Jan 15, 2011, 10:13:28 AM1/15/11
to gstreamer-java
Running on right now Windows with the latest gstreamer-java from the
trunk and the gstreamer-winbuilds 0.10.7 beta 2, which is based on
gstreamer 0.10.30 I think, although I cannot provide the versions for
the plugin packages.

I switched back to PlayBin2 and doing some stress tests by changing
the volume randomly at every frame, and hasn't crashed yet after 15
minutes.

So this is a good sign. I'll test later on linux and will report back.

ac

unread,
Jan 15, 2011, 10:40:00 AM1/15/11
to gstreamer-java
Strange, on Linux the same test crashes almost immediately:

Ubuntu Linux 10.04 64 bits
libgstreamer-0.10 0.10.31-1
gstreamer0.10-plugins-bad: 0.10.20-2
gstreamer0.10-plugins-good: 0.10.26-1
gstreamer0.10-plugins-ugly: 0.10.16-1
gstreamer0.10-plugins-base-apps: 0.10.31-1
gstreamer0.10-plugins-base: 0.10.31-1
gstreamer0.10-ffmpeg 0.10.11-1

From the error report:

#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x0000000000000000, pid=2428,
tid=139880889345792
#
# JRE version: 6.0_22-b04
# Java VM: Java HotSpot(TM) 64-Bit Server VM (17.1-b03 mixed mode
linux-amd64 )
# Problematic frame:
# C 0x0000000000000000
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

--------------- T H R E A D ---------------

Current thread (0x00007f388800c000): JavaThread "Animation
Thread" [_thread_in_native, id=2454,
stack(0x00007f388ea86000,0x00007f388eb87000)]

siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR),
si_addr=0x0000000000000000

[...]

Instructions: (pc=0x0000000000000000)
0xfffffffffffffff0:

Stack: [0x00007f388ea86000,0x00007f388eb87000],
sp=0x00007f388eb843b8, free space=3f80000000000000018k
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j com.sun.jna.Function.invokeVoid(I[Ljava/lang/Object;)V+0
j com.sun.jna.Function.invoke([Ljava/lang/Object;Ljava/lang/
Class;Z)Ljava/lang/Object;+45
J com.sun.jna.Function.invoke(Ljava/lang/Class;[Ljava/lang/
Object;Ljava/util/Map;)Ljava/lang/Object;
j com.sun.jna.Library$Handler.invoke(Ljava/lang/Object;Ljava/lang/
reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;+341
j $Proxy20.g_object_set_property(Lorg/gstreamer/GObject;Ljava/lang/
String;Lorg/gstreamer/lowlevel/GValueAPI$GValue;)V+24
j org.gstreamer.GObject.set(Ljava/lang/String;Ljava/lang/Object;)V
+714
j org.gstreamer.elements.PlayBin2.setVolume(D)V+7
j codeanticode.gsvideo.GSPlayer.volume(D)V+12
j Audio.draw()V+11
j processing.core.PApplet.handleDraw()V+145
j processing.core.PApplet.run()V+51
j java.lang.Thread.run()V+11
v ~StubRoutines::call_stub

Cefn Hoile

unread,
Jan 15, 2011, 10:57:23 AM1/15/11
to gstream...@googlegroups.com
Thanks ac and farkas.

@ac I'm not optimistic on Ubuntu, although farkas reports he's fine on
a Redhat-based build.

@farkas thanks for version information but it looks like I'm running
newer versions of the Gstreamer libs than you are, and I still get the
segfault. I'm running against gstreamer-java SVN jar build which I
created from HEAD about ten minutes ago.

Which upstream project can I share the crash error logs reported by Java?

At some point someone must know what the root cause is according to
the stack on crash, but its outside Java.

Here's my version information, a crash report from Java, and the full
pid error log, all against the minimal program to recreate the crash
which I shared earlier in the thread, and is still crashing, but only
when volume changes are attempted.

>>>>>>>>>>>>>
GStreamer Versions
>>>>>>>>>>>>>

cefn@cefn-ubuntu-dell:~$ dpkg --list | grep gst | grep -v "bluez" |
grep -v "google" | awk '{print $2 "\t\t" $3}'
gstreamer-tools 0.10.31.3-1~lucid1
gstreamer0.10-alsa 0.10.31.3-1~lucid1
gstreamer0.10-esd 0.10.26.3-1~lucid1
gstreamer0.10-ffmpeg 0.10.11-1~lucid1
gstreamer0.10-gnonlin 0.10.16.2-1~lucid1
gstreamer0.10-nice 0.0.12-1~ppa10.04+1
gstreamer0.10-pitfdll 0.9.1.1+cvs20080215-1ubuntu2
gstreamer0.10-plugins-bad 0.10.20.3-1~lucid1
gstreamer0.10-plugins-bad-multiverse 0.10.18-0ubuntu1
gstreamer0.10-plugins-base 0.10.31.3-1~lucid1
gstreamer0.10-plugins-base-apps 0.10.31.3-1~lucid1
gstreamer0.10-plugins-good 0.10.26.3-1~lucid1
gstreamer0.10-plugins-ugly 0.10.16.3-1~lucid1
gstreamer0.10-plugins-ugly-multiverse 0.10.14-0ubuntu2
gstreamer0.10-pocketsphinx 0.5.1+dfsg1-0ubuntu1
gstreamer0.10-pulseaudio 0.10.26.3-1~lucid1
gstreamer0.10-tools 0.10.31.3-1~lucid1
gstreamer0.10-x 0.10.31.3-1~lucid1
libgstfarsight0.10-0 0.0.21-1ubuntu1~ppa10.04+1
libgstreamer-plugins-base0.10-0 0.10.31.3-1~lucid1
libgstreamer0.10-0 0.10.31.3-1~lucid1
libgstreamer0.10-dev 0.10.31.3-1~lucid1
python-gst0.10 0.10.20.3-1~lucid1

>>>>>>>>>>>>>
JVM Error
>>>>>>>>>>>>>

#
# A fatal error has been detected by the Java Runtime Environment:
#

# SIGSEGV (0xb) at pc=0x00000000, pid=3615, tid=2260728688


#
# JRE version: 6.0_22-b04

# Java VM: Java HotSpot(TM) Server VM (17.1-b03 mixed mode linux-x86 )


# Problematic frame:
# C 0x00000000
#
# An error report file with more information is saved as:

# /home/cefn/Documents/workspace/GstreamerBug/hs_err_pid3615.log

>>>>>>>>>>>>>
Full Crash Log
>>>>>>>>>>>>>

#
# A fatal error has been detected by the Java Runtime Environment:
#

# SIGSEGV (0xb) at pc=0x00000000, pid=3615, tid=2260728688


#
# JRE version: 6.0_22-b04

# Java VM: Java HotSpot(TM) Server VM (17.1-b03 mixed mode linux-x86 )


# Problematic frame:
# C 0x00000000
#

# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
#

--------------- T H R E A D ---------------

Current thread is native thread

siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR),
si_addr=0x00000000

Registers:
EAX=0x8f257590, EBX=0x8f97bff4, ECX=0x00000000, EDX=0x8f0380f0
ESP=0x86bfe32c, EBP=0x86bfe3b8, ESI=0x00000001, EDI=0x86bfe360
EIP=0x00000000, CR2=0x00000000, EFLAGS=0x00210202

Top of Stack: (sp=0x86bfe32c)
0x86bfe32c: 8f94f873 8f0380f0 00000001 86bfe360
0x86bfe33c: 00000000 00000000 00000000 00000000
0x86bfe34c: 00000000 00000000 00000000 8f257590
0x86bfe35c: 8f0380f8 8f802f80 00000000 00000000
0x86bfe36c: 00000000 00000000 00000000 00000000
0x86bfe37c: 00000000 00000005 8c236818 089caa18
0x86bfe38c: 8f97bff4 8c2381a8 8f1f6da2 86bfe3b8
0x86bfe39c: 8f94dce6 8c2381a8 8f1f6da2 86bfe3c8

Instructions: (pc=0x00000000)
0xfffffff0:

Stack: [0x863ff000,0x86c00000], sp=0x86bfe32c, free space=1ffc86bfdcb0k

[error occurred during error reporting (printing target Java thread
stack), id 0xb]


--------------- P R O C E S S ---------------

VM state:not at safepoint (normal execution)

VM Mutex/Monitor currently owned by a thread: None

Heap
PSYoungGen total 9408K, used 6524K [0xa90b0000, 0xa9b20000, 0xb3800000)
eden space 8128K, 64% used [0xa90b0000,0xa95d0d30,0xa98a0000)
from space 1280K, 99% used [0xa99e0000,0xa9b1e488,0xa9b20000)
to space 1280K, 0% used [0xa98a0000,0xa98a0000,0xa99e0000)
PSOldGen total 21376K, used 3355K [0x94200000, 0x956e0000, 0xa90b0000)
object space 21376K, 15% used [0x94200000,0x94546ff8,0x956e0000)
PSPermGen total 16384K, used 9359K [0x90200000, 0x91200000, 0x94200000)
object space 16384K, 57% used [0x90200000,0x90b23e00,0x91200000)

Dynamic libraries:
08048000-08052000 r-xp 00000000 08:07 2886136
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/bin/java
08052000-08053000 rwxp 00009000 08:07 2886136
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/bin/java
0857a000-08d8e000 rwxp 00000000 00:00 0 [heap]
859ff000-85a02000 ---p 00000000 00:00 0
85a02000-86200000 rwxp 00000000 00:00 0
86200000-862d7000 rwxp 00000000 00:00 0
862d7000-86300000 ---p 00000000 00:00 0
863ff000-86402000 ---p 00000000 00:00 0
86402000-86c00000 rwxp 00000000 00:00 0
86c00000-86cfa000 rwxp 00000000 00:00 0
86cfa000-86d00000 ---p 00000000 00:00 0
86daf000-86db5000 r-xp 00000000 08:07 2362616
/usr/lib/liborc-test-0.4.so.0.11.0
86db5000-86db6000 r-xp 00005000 08:07 2362616
/usr/lib/liborc-test-0.4.so.0.11.0
86db6000-86db7000 rwxp 00006000 08:07 2362616
/usr/lib/liborc-test-0.4.so.0.11.0
86dd1000-86ddf000 r-xp 00000000 08:07 2376062
/usr/lib/gstreamer-0.10/libgstaudioresample.so
86ddf000-86de0000 r-xp 0000d000 08:07 2376062
/usr/lib/gstreamer-0.10/libgstaudioresample.so
86de0000-86de2000 rwxp 0000e000 08:07 2376062
/usr/lib/gstreamer-0.10/libgstaudioresample.so
86de2000-8ade3000 rwxs 00000000 00:10 46936 /dev/shm/pulse-shm-440059145
8ade3000-8ade6000 ---p 00000000 00:00 0
8ade6000-8b5e4000 rwxp 00000000 00:00 0
8b5e4000-8b60b000 r-xp 00000000 08:07 2363125 /usr/lib/libvorbis.so.0.4.3
8b60b000-8b60c000 r-xp 00026000 08:07 2363125 /usr/lib/libvorbis.so.0.4.3
8b60c000-8b60d000 rwxp 00027000 08:07 2363125 /usr/lib/libvorbis.so.0.4.3
8b60d000-8b6f9000 r-xp 00000000 08:07 2363127 /usr/lib/libvorbisenc.so.2.0.6
8b6f9000-8b6fa000 ---p 000ec000 08:07 2363127 /usr/lib/libvorbisenc.so.2.0.6
8b6fa000-8b708000 r-xp 000ec000 08:07 2363127 /usr/lib/libvorbisenc.so.2.0.6
8b708000-8b709000 rwxp 000fa000 08:07 2363127 /usr/lib/libvorbisenc.so.2.0.6
8b709000-8b754000 r-xp 00000000 08:07 2362109 /usr/lib/libFLAC.so.8.2.0
8b754000-8b755000 r-xp 0004a000 08:07 2362109 /usr/lib/libFLAC.so.8.2.0
8b755000-8b756000 rwxp 0004b000 08:07 2362109 /usr/lib/libFLAC.so.8.2.0
8b756000-8b78d000 r-xp 00000000 08:07 3145792 /lib/libdbus-1.so.3.4.0
8b78d000-8b78e000 r-xp 00036000 08:07 3145792 /lib/libdbus-1.so.3.4.0
8b78e000-8b78f000 rwxp 00037000 08:07 3145792 /lib/libdbus-1.so.3.4.0
8b78f000-8b7f0000 r-xp 00000000 08:07 2363037 /usr/lib/libsndfile.so.1.0.21
8b7f0000-8b7f1000 ---p 00061000 08:07 2363037 /usr/lib/libsndfile.so.1.0.21
8b7f1000-8b7f2000 r-xp 00061000 08:07 2363037 /usr/lib/libsndfile.so.1.0.21
8b7f2000-8b7f3000 rwxp 00062000 08:07 2363037 /usr/lib/libsndfile.so.1.0.21
8b7f3000-8b7f7000 rwxp 00000000 00:00 0
8b7f7000-8b7fe000 r-xp 00000000 08:07 3145924 /lib/libwrap.so.0.7.6
8b7fe000-8b7ff000 r-xp 00006000 08:07 3145924 /lib/libwrap.so.0.7.6
8b7ff000-8b800000 rwxp 00007000 08:07 3145924 /lib/libwrap.so.0.7.6
8b800000-8b849000 r-xp 00000000 08:07 2362978
/usr/lib/libpulsecommon-0.9.21.so
8b849000-8b84a000 r-xp 00048000 08:07 2362978
/usr/lib/libpulsecommon-0.9.21.so
8b84a000-8b84b000 rwxp 00049000 08:07 2362978
/usr/lib/libpulsecommon-0.9.21.so
8b84b000-8b852000 r-xp 00000000 08:07 2362153 /usr/lib/libSM.so.6.0.1
8b852000-8b853000 r-xp 00006000 08:07 2362153 /usr/lib/libSM.so.6.0.1
8b853000-8b854000 rwxp 00007000 08:07 2362153 /usr/lib/libSM.so.6.0.1
8b854000-8b869000 r-xp 00000000 08:07 2362124 /usr/lib/libICE.so.6.3.0
8b869000-8b86a000 r-xp 00014000 08:07 2362124 /usr/lib/libICE.so.6.3.0
8b86a000-8b86b000 rwxp 00015000 08:07 2362124 /usr/lib/libICE.so.6.3.0
8b86b000-8b86d000 rwxp 00000000 00:00 0
8b86d000-8b870000 ---p 00000000 00:00 0
8b870000-8c06e000 rwxp 00000000 00:00 0
8c09a000-8c09d000 ---p 00000000 00:00 0
8c09d000-8c0eb000 rwxp 00000000 00:00 0
8c0eb000-8c200000 rwxs 00000000 00:04 5668909 /SYSV00000000 (deleted)
8c200000-8c2f5000 rwxp 00000000 00:00 0
8c2f5000-8c300000 ---p 00000000 00:00 0
8c306000-8c346000 r-xp 00000000 08:07 2362977 /usr/lib/libpulse.so.0.12.2
8c346000-8c347000 r-xp 00040000 08:07 2362977 /usr/lib/libpulse.so.0.12.2
8c347000-8c348000 rwxp 00041000 08:07 2362977 /usr/lib/libpulse.so.0.12.2
8c34a000-8c360000 r-xp 00000000 08:07 2375671
/usr/lib/gstreamer-0.10/libgstaudioconvert.so
8c360000-8c361000 r-xp 00015000 08:07 2375671
/usr/lib/gstreamer-0.10/libgstaudioconvert.so
8c361000-8c362000 rwxp 00016000 08:07 2375671
/usr/lib/gstreamer-0.10/libgstaudioconvert.so
8c362000-8c379000 r-xp 00000000 08:07 2359831
/usr/lib/gstreamer-0.10/libgstpulse.so
8c379000-8c37a000 r-xp 00016000 08:07 2359831
/usr/lib/gstreamer-0.10/libgstpulse.so
8c37a000-8c37b000 rwxp 00017000 08:07 2359831
/usr/lib/gstreamer-0.10/libgstpulse.so
8c37b000-8c38b000 rwxs 00000000 08:07 3407898 /tmp/orcexec.4KwPDZ (deleted)
8c38b000-8c3fd000 r-xp 00000000 08:07 2364551 /usr/lib/liborc-0.4.so.0.11.0
8c3fd000-8c3fe000 r-xp 00072000 08:07 2364551 /usr/lib/liborc-0.4.so.0.11.0
8c3fe000-8c401000 rwxp 00073000 08:07 2364551 /usr/lib/liborc-0.4.so.0.11.0
8c401000-8c402000 rwxp 00000000 00:00 0
8c403000-8c40a000 r-xp 00000000 08:07 2375684
/usr/lib/gstreamer-0.10/libgstautodetect.so
8c40a000-8c40b000 r-xp 00006000 08:07 2375684
/usr/lib/gstreamer-0.10/libgstautodetect.so
8c40b000-8c40c000 rwxp 00007000 08:07 2375684
/usr/lib/gstreamer-0.10/libgstautodetect.so
8c40c000-8c41c000 r-xs 00000000 08:07 3407898 /tmp/orcexec.4KwPDZ (deleted)
8c41c000-8c458000 r-xp 00000000 08:07 2362375 /usr/lib/libfaad.so.2.0.0
8c458000-8c459000 r-xp 0003b000 08:07 2362375 /usr/lib/libfaad.so.2.0.0
8c459000-8c45c000 rwxp 0003c000 08:07 2362375 /usr/lib/libfaad.so.2.0.0
8c45c000-8c45f000 ---p 00000000 00:00 0
8c45f000-8cc5d000 rwxp 00000000 00:00 0
8cc5d000-8cc60000 ---p 00000000 00:00 0
8cc60000-8ccae000 rwxp 00000000 00:00 0
8ccae000-8ccb1000 ---p 00000000 00:00 0
8ccb1000-8ccff000 rwxp 00000000 00:00 0
8ccff000-8cd0f000 r-xp 00000000 08:07 3157719 /lib/libbz2.so.1.0.4
8cd0f000-8cd10000 r-xp 0000f000 08:07 3157719 /lib/libbz2.so.1.0.4
8cd10000-8cd11000 rwxp 00010000 08:07 3157719 /lib/libbz2.so.1.0.4
8cd11000-8d2cb000 r-xp 00000000 08:07 2362640
/usr/lib/gstreamer-0.10/libgstffmpeg.so
8d2cb000-8d2cc000 ---p 005ba000 08:07 2362640
/usr/lib/gstreamer-0.10/libgstffmpeg.so
8d2cc000-8d2d6000 r-xp 005ba000 08:07 2362640
/usr/lib/gstreamer-0.10/libgstffmpeg.so
8d2d6000-8d2e6000 rwxp 005c4000 08:07 2362640
/usr/lib/gstreamer-0.10/libgstffmpeg.so
8d2e6000-8d7c4000 rwxp 00000000 00:00 0
8d7c4000-8d7c5000 ---p 00000000 00:00 0
8d7c5000-8dfc5000 rwxp 00000000 00:00 0
8dfc5000-8dfc8000 ---p 00000000 00:00 0
8dfc8000-8e7c6000 rwxp 00000000 00:00 0
8e7c6000-8e7ea000 r-xp 00000000 08:07 2367311
/usr/lib/libgsttag-0.10.so.0.23.0
8e7ea000-8e7eb000 r-xp 00024000 08:07 2367311
/usr/lib/libgsttag-0.10.so.0.23.0
8e7eb000-8e7ec000 rwxp 00025000 08:07 2367311
/usr/lib/libgsttag-0.10.so.0.23.0
8e7ec000-8e7f8000 r-xp 00000000 08:07 2376043
/usr/lib/libgstriff-0.10.so.0.23.0
8e7f8000-8e7f9000 r-xp 0000b000 08:07 2376043
/usr/lib/libgstriff-0.10.so.0.23.0
8e7f9000-8e7fa000 rwxp 0000c000 08:07 2376043
/usr/lib/libgstriff-0.10.so.0.23.0
8e7fa000-8e82f000 r-xp 00000000 08:07 2376102
/usr/lib/gstreamer-0.10/libgstqtdemux.so
8e82f000-8e830000 r-xp 00035000 08:07 2376102
/usr/lib/gstreamer-0.10/libgstqtdemux.so
8e830000-8e831000 rwxp 00036000 08:07 2376102
/usr/lib/gstreamer-0.10/libgstqtdemux.so
8e831000-8e845000 r-xp 00000000 08:07 2375665
/usr/lib/libgstrtp-0.10.so.0.23.0
8e845000-8e846000 r-xp 00014000 08:07 2375665
/usr/lib/libgstrtp-0.10.so.0.23.0
8e846000-8e847000 rwxp 00015000 08:07 2375665
/usr/lib/libgstrtp-0.10.so.0.23.0
8e847000-8e868000 r-xp 00000000 08:07 2375284
/usr/lib/libgstaudio-0.10.so.0.23.0
8e868000-8e869000 ---p 00021000 08:07 2375284
/usr/lib/libgstaudio-0.10.so.0.23.0
8e869000-8e86a000 r-xp 00021000 08:07 2375284
/usr/lib/libgstaudio-0.10.so.0.23.0
8e86a000-8e86b000 rwxp 00022000 08:07 2375284
/usr/lib/libgstaudio-0.10.so.0.23.0
8e86b000-8e87e000 r-xp 00000000 08:07 2362270 /usr/lib/libbluetooth.so.3.5.0
8e87e000-8e87f000 r-xp 00012000 08:07 2362270 /usr/lib/libbluetooth.so.3.5.0
8e87f000-8e880000 rwxp 00013000 08:07 2362270 /usr/lib/libbluetooth.so.3.5.0
8e883000-8e898000 r-xp 00000000 08:07 2376061
/usr/lib/gstreamer-0.10/libgstvideoscale.so
8e898000-8e899000 r-xp 00015000 08:07 2376061
/usr/lib/gstreamer-0.10/libgstvideoscale.so
8e899000-8e89a000 rwxp 00016000 08:07 2376061
/usr/lib/gstreamer-0.10/libgstvideoscale.so
8e89a000-8e8b3000 r-xp 00000000 08:07 3145896 /lib/libselinux.so.1
8e8b3000-8e8b4000 r-xp 00018000 08:07 3145896 /lib/libselinux.so.1
8e8b4000-8e8b5000 rwxp 00019000 08:07 3145896 /lib/libselinux.so.1
8e8b5000-8e8c5000 r-xp 00000000 08:07 3152101
/lib/tls/i686/cmov/libresolv-2.11.1.so
8e8c5000-8e8c6000 r-xp 00010000 08:07 3152101
/lib/tls/i686/cmov/libresolv-2.11.1.so
8e8c6000-8e8c7000 rwxp 00011000 08:07 3152101
/lib/tls/i686/cmov/libresolv-2.11.1.so
8e8c7000-8e8c9000 rwxp 00000000 00:00 0
8e8c9000-8e963000 r-xp 00000000 08:07 2367604 /usr/lib/libgio-2.0.so.0.2400.1
8e963000-8e964000 ---p 0009a000 08:07 2367604 /usr/lib/libgio-2.0.so.0.2400.1
8e964000-8e965000 r-xp 0009a000 08:07 2367604 /usr/lib/libgio-2.0.so.0.2400.1
8e965000-8e966000 rwxp 0009b000 08:07 2367604 /usr/lib/libgio-2.0.so.0.2400.1
8e966000-8e967000 rwxp 00000000 00:00 0
8e967000-8e9ab000 r-xp 00000000 08:07 2376045
/usr/lib/gstreamer-0.10/libgstffmpegcolorspace.so
8e9ab000-8e9ac000 r-xp 00043000 08:07 2376045
/usr/lib/gstreamer-0.10/libgstffmpegcolorspace.so
8e9ac000-8e9ae000 rwxp 00044000 08:07 2376045
/usr/lib/gstreamer-0.10/libgstffmpegcolorspace.so
8e9ae000-8e9af000 rwxp 00000000 00:00 0
8e9af000-8e9b2000 ---p 00000000 00:00 0
8e9b2000-8ea00000 rwxp 00000000 00:00 0
8ea00000-8eaff000 rwxp 00000000 00:00 0
8eaff000-8eb00000 ---p 00000000 00:00 0
8eb00000-8eb05000 r-xp 00000000 08:07 2362883 /usr/lib/libogg.so.0.6.0
8eb05000-8eb06000 r-xp 00004000 08:07 2362883 /usr/lib/libogg.so.0.6.0
8eb06000-8eb07000 rwxp 00005000 08:07 2362883 /usr/lib/libogg.so.0.6.0
8eb07000-8eb25000 r-xp 00000000 08:07 2366366
/usr/lib/gstreamer-0.10/libgstbluetooth.so
8eb25000-8eb26000 r-xp 0001d000 08:07 2366366
/usr/lib/gstreamer-0.10/libgstbluetooth.so
8eb26000-8eb27000 rwxp 0001e000 08:07 2366366
/usr/lib/gstreamer-0.10/libgstbluetooth.so
8eb27000-8eb40000 r-xp 00000000 08:07 2376046
/usr/lib/gstreamer-0.10/libgstdecodebin2.so
8eb40000-8eb41000 r-xp 00018000 08:07 2376046
/usr/lib/gstreamer-0.10/libgstdecodebin2.so
8eb41000-8eb42000 rwxp 00019000 08:07 2376046
/usr/lib/gstreamer-0.10/libgstdecodebin2.so
8eb42000-8eb45000 ---p 00000000 00:00 0
8eb45000-8eb93000 rwxp 00000000 00:00 0
8eb93000-8eb94000 r-xs 00000000 08:07 3167028
/var/cache/fontconfig/26de28bc8622bbc1fb67fd234c21975f-le32d4.cache-3
8eb94000-8eb97000 r-xs 00000000 08:07 3175012
/var/cache/fontconfig/5e10083637a12ecd1bff191eb66bfa2f-le32d4.cache-3
8eb97000-8eb98000 r-xs 00000000 08:07 3175011
/var/cache/fontconfig/c05880de57d1f5e948fdfacc138775d9-le32d4.cache-3
8eb98000-8eb9b000 r-xs 00000000 08:07 3174834
/var/cache/fontconfig/603b2eb47209ddb3c5269b217a306167-le32d4.cache-3
8eb9b000-8eba1000 r-xs 00000000 08:07 3175009
/var/cache/fontconfig/945677eb7aeaf62f1d50efc3fb3ec7d8-le32d4.cache-3
8eba1000-8eba3000 r-xs 00000000 08:07 3175007
/var/cache/fontconfig/99e8ed0e538f840c565b6ed5dad60d56-le32d4.cache-3
8eba3000-8eba4000 r-xs 00000000 08:07 3175086
/var/cache/fontconfig/0fafd173547752dce4dee1a69e0b3c95-le32d4.cache-3
8eba4000-8eba7000 r-xs 00000000 08:07 3175005
/var/cache/fontconfig/e383d7ea5fbe662a33d9b44caf393297-le32d4.cache-3
8eba7000-8ebac000 r-xs 00000000 08:07 3175162
/var/cache/fontconfig/bddabcf04192498a6a74911686fc6962-le32d4.cache-3
8ebac000-8ebaf000 r-xs 00000000 08:07 3175114
/var/cache/fontconfig/a46337af8a0b4c9b317ad981ec3bdf87-le32d4.cache-3
8ebaf000-8ebb0000 r-xs 00000000 08:07 3175080
/var/cache/fontconfig/79b7902a698c37d747b157374a08587f-le32d4.cache-3
8ebb0000-8ebb2000 r-xs 00000000 08:07 3174716
/var/cache/fontconfig/1b70ff56935fd37e75520e134628df26-le32d4.cache-3
8ebb2000-8ebb7000 r-xs 00000000 08:07 3175068
/var/cache/fontconfig/3fdcac6013931cd7c06449c5f8fab136-le32d4.cache-3
8ebb7000-8ebb8000 r-xs 00000000 08:07 3174998
/var/cache/fontconfig/6edd069ccec3ba28096b368c434fa861-le32d4.cache-3
8ebb8000-8ebba000 r-xs 00000000 08:07 3174997
/var/cache/fontconfig/ea47318ec9849e1a71e80a5d69d13859-le32d4.cache-3
8ebba000-8ebbb000 r-xs 00000000 08:07 3174996
/var/cache/fontconfig/e3fa16a14183b06aa45b3e009278fd14-le32d4.cache-3
8ebbb000-8ebbc000 r-xs 00000000 08:07 3174995
/var/cache/fontconfig/fc14e3aff40829fbb7132d5e06a8168b-le32d4.cache-3
8ebbc000-8ebbe000 r-xs 00000000 08:07 3174994
/var/cache/fontconfig/dc69028cb7d26f67d8024a5e4f94b512-le32d4.cache-3
8ebbe000-8ebbf000 r-xs 00000000 08:07 3174993
/var/cache/fontconfig/52728cdc49031813f272d4aa720952ff-le32d4.cache-3
8ebbf000-8ebc0000 r-xs 00000000 08:07 3174991
/var/cache/fontconfig/acf24f57989d82ed5c91b60ef9c3a050-le32d4.cache-3
8ebc0000-8ebc1000 r-xs 00000000 08:07 3174986
/var/cache/fontconfig/e7071f4a29fa870f4323321c154eba04-le32d4.cache-3
8ebc1000-8ebc2000 r-xs 00000000 08:07 3174689
/var/cache/fontconfig/e0853c5e7e7fc9a9e822b52cb2e640cf-le32d4.cache-3
8ebc2000-8ebc4000 r-xs 00000000 08:07 3174663
/var/cache/fontconfig/946752ae7a90c323083f887d43ff0bb2-le32d4.cache-3
8ebc4000-8ebc8000 r-xs 00000000 08:07 3174656
/var/cache/fontconfig/921a30a17f0be15c70ac14043cb7a739-le32d4.cache-3
8ebc8000-8ebc9000 r-xs 00000000 08:07 3174654
/var/cache/fontconfig/617957603a337376ca8784972c6029f5-le32d4.cache-3
8ebc9000-8ebca000 r-xs 00000000 08:07 3174642
/var/cache/fontconfig/77b18b36891b2c3ee123bc985c86a99d-le32d4.cache-3
8ebca000-8ebcc000 r-xs 00000000 08:07 3174529
/var/cache/fontconfig/b5ea634b0fb353b8ea17632d1f9ef766-le32d4.cache-3
8ebcc000-8ebd4000 r-xs 00000000 08:07 3174528
/var/cache/fontconfig/5aa9259560595826861fba5056bf4850-le32d4.cache-3
8ebd4000-8ebd7000 r-xs 00000000 08:07 3174527
/var/cache/fontconfig/6eb3985aa4124903f6ff08ba781cd364-le32d4.cache-3
8ebd7000-8ebf4000 r-xs 00000000 08:07 3174526
/var/cache/fontconfig/4ca92cf76c0cf3dfa7f011127eff595d-le32d4.cache-3
8ebf4000-8ec13000 r-xs 00000000 08:07 3174524
/var/cache/fontconfig/6abf76b0b4cc7192703d8431ac929b75-le32d4.cache-3
8ec13000-8ec33000 r-xs 00000000 08:07 3174488
/var/cache/fontconfig/f408d08d2fce062ab660f628db78bf96-le32d4.cache-3
8ec33000-8ec34000 r-xs 00000000 08:07 3174487
/var/cache/fontconfig/4c73fe0c47614734b17d736dbde7580a-le32d4.cache-3
8ec34000-8ec35000 r-xs 00000000 08:07 3174486
/var/cache/fontconfig/0d8c3b2ac0904cb8a57a757ad11a4a08-le32d4.cache-3
8ec35000-8ec36000 r-xs 00000000 08:07 3174474
/var/cache/fontconfig/6a53c69dea097a2d716e069445527da8-le32d4.cache-3
8ec36000-8ec37000 r-xs 00000000 08:07 3174458
/var/cache/fontconfig/406bd5c19e5cc517440ee75488dad48e-le32d4.cache-3
8ec37000-8ec3a000 r-xs 00000000 08:07 3174444
/var/cache/fontconfig/dfe01fa16583a856689483e0569db943-le32d4.cache-3
8ec3a000-8ec3e000 r-xs 00000000 08:07 3174443
/var/cache/fontconfig/a755afe4a08bf5b97852ceb7400b47bc-le32d4.cache-3
8ec3e000-8ec3f000 r-xs 00000000 08:07 3174442
/var/cache/fontconfig/7ee55724f82591cb35c3d9771e9e69ed-le32d4.cache-3
8ec3f000-8ec41000 r-xs 00000000 08:07 3174441
/var/cache/fontconfig/f680583fed5bdc90d95a16af47e16528-le32d4.cache-3
8ec41000-8ec42000 r-xs 00000000 08:07 3174440
/var/cache/fontconfig/a8d35ba226d862df35f7c320f882e11a-le32d4.cache-3
8ec42000-8ec43000 r-xs 00000000 08:07 3174439
/var/cache/fontconfig/818fefaf4a9a6d62e9703ad211f6e18f-le32d4.cache-3
8ec43000-8ec44000 r-xs 00000000 08:07 3174438
/var/cache/fontconfig/342245cecc7b46fd40dc20a7c48a9d74-le32d4.cache-3
8ec44000-8ec48000 r-xs 00000000 08:07 3174437
/var/cache/fontconfig/515ca1ebc4b18308bea979be5704f9db-le32d4.cache-3
8ec48000-8ec4f000 r-xs 00000000 08:07 3174436
/var/cache/fontconfig/6d41288fd70b0be22e8c3a91e032eec0-le32d4.cache-3
8ec4f000-8ec52000 r-xs 00000000 08:07 3174433
/var/cache/fontconfig/24cfa87181cfa5a1c0a5ecfd4c14c4b3-le32d4.cache-3
8ec52000-8ec54000 r-xs 00000000 08:07 3174432
/var/cache/fontconfig/4609d6ed693fb2a61c04ed6a1f4c071e-le32d4.cache-3
8ec54000-8ec5a000 r-xs 00000000 08:07 3174429
/var/cache/fontconfig/a6354e3ac43af67bd8d7b8e43c34e49f-le32d4.cache-3
8ec5a000-8ec5b000 r-xs 00000000 08:07 3174347
/var/cache/fontconfig/4c8bd476623eafb6fe862291a3b05f7d-le32d4.cache-3
8ec5b000-8ec66000 r-xs 00000000 08:07 3168772
/var/cache/fontconfig/0f34bcd4b6ee430af32735b75db7f02b-le32d4.cache-3
8ec66000-8ec69000 r-xs 00000000 08:07 3174318
/var/cache/fontconfig/d60319d88cac85ba9e1a07bd06cfbb8c-le32d4.cache-3
8ec69000-8ec6a000 r-xs 00000000 08:07 3174316
/var/cache/fontconfig/9451a55048e8dbe8633e64d34165fdf2-le32d4.cache-3
8ec6a000-8ec6b000 r-xs 00000000 08:07 3174309
/var/cache/fontconfig/4794a0821666d79190d59a36cb4f44b5-le32d4.cache-3
8ec6b000-8ec6d000 r-xs 00000000 08:07 3174308
/var/cache/fontconfig/48b6b01af2a6a6e7e7f3fa61998c4afa-le32d4.cache-3
8ec6d000-8ec8f000 r-xs 00000000 08:07 3174306
/var/cache/fontconfig/365b55f210c0a22e9a19e35191240f32-le32d4.cache-3
8ec8f000-8ec91000 r-xs 00000000 08:07 3174287
/var/cache/fontconfig/85130c034ee6c6a57445579585c0b546-le32d4.cache-3
8ec91000-8ec94000 r-xs 00000000 08:07 3174278
/var/cache/fontconfig/0dad82dbaa6c15cf0806f139d62298a3-le32d4.cache-3
8ec94000-8ec96000 r-xs 00000000 08:07 3174277
/var/cache/fontconfig/2c5ba8142dffc8bf0377700342b8ca1a-le32d4.cache-3
8ec96000-8ec98000 r-xs 00000000 08:07 3174276
/var/cache/fontconfig/ce677e824a231659fde4a3a246a10ea3-le32d4.cache-3
8ec98000-8ec9a000 r-xs 00000000 08:07 3174273
/var/cache/fontconfig/f3eeabf710fa7a302622e448b9e5909a-le32d4.cache-3
8ec9a000-8eca2000 r-xs 00000000 08:07 3174271
/var/cache/fontconfig/d52a8644073d54c13679302ca1180695-le32d4.cache-3
8eca2000-8eca3000 r-xs 00000000 08:07 3174265
/var/cache/fontconfig/ae26c1aac6606cb24499bf89ff8f20df-le32d4.cache-3
8eca3000-8eca8000 r-xs 00000000 08:07 3174262
/var/cache/fontconfig/105b9c7e6f0a4f82d8c9b6e39c52c6f9-le32d4.cache-3
8eca8000-8eca9000 r-xs 00000000 08:07 3174261
/var/cache/fontconfig/ec648e9a1aea82bddd4bd6050028158d-le32d4.cache-3
8eca9000-8ecab000 r-xs 00000000 08:07 3174256
/var/cache/fontconfig/5b0623c2c1e6dea9559ee397e26a7919-le32d4.cache-3
8ecab000-8ecae000 r-xs 00000000 08:07 3174255
/var/cache/fontconfig/fac9d1061ce4dddb2143955f84876fd7-le32d4.cache-3
8ecae000-8ed04000 r-xs 00000000 08:07 3174252
/var/cache/fontconfig/b80ce64a4bd0ac846cde5fbdd290c01c-le32d4.cache-3
8ed04000-8ed23000 r-xs 00000000 08:07 3174637
/var/cache/fontconfig/198d8fcf01c96d0cf813f74fd759bdb7-le32d4.cache-3
8ed23000-8ed3d000 r-xs 00000000 08:07 3174478
/var/cache/fontconfig/e13b20fdb08344e0e664864cc2ede53d-le32d4.cache-3
8ed3d000-8ed40000 r-xp 00000000 08:07 2656249
/usr/share/locale-langpack/en_GB/LC_MESSAGES/pulseaudio.mo
8ed40000-8ed48000 r-xp 00000000 08:07 2364870
/usr/lib/gstreamer-0.10/libgstfaad.so
8ed48000-8ed49000 r-xp 00007000 08:07 2364870
/usr/lib/gstreamer-0.10/libgstfaad.so
8ed49000-8ed4a000 rwxp 00008000 08:07 2364870
/usr/lib/gstreamer-0.10/libgstfaad.so
8ed4a000-8ed89000 r-xp 00000000 08:07 2364947
/usr/lib/gstreamer-0.10/libgstcoreelements.so
8ed89000-8ed8a000 r-xp 0003e000 08:07 2364947
/usr/lib/gstreamer-0.10/libgstcoreelements.so
8ed8a000-8ed8b000 rwxp 0003f000 08:07 2364947
/usr/lib/gstreamer-0.10/libgstcoreelements.so
8ed8b000-8ed8e000 ---p 00000000 00:00 0
8ed8e000-8eddc000 rwxp 00000000 00:00 0
8eddc000-8ede4000 r-xp 00000000 08:07 2362194 /usr/lib/libXrender.so.1.3.0
8ede4000-8ede5000 r-xp 00007000 08:07 2362194 /usr/lib/libXrender.so.1.3.0
8ede5000-8ede6000 rwxp 00008000 08:07 2362194 /usr/lib/libXrender.so.1.3.0
8ede6000-8edee000 r-xp 00000000 08:07 2362166 /usr/lib/libXcursor.so.1.0.2
8edee000-8edef000 r-xp 00007000 08:07 2362166 /usr/lib/libXcursor.so.1.0.2
8edef000-8edf0000 rwxp 00008000 08:07 2362166 /usr/lib/libXcursor.so.1.0.2
8edf1000-8edf4000 r-xp 00000000 08:07 3145922 /lib/libuuid.so.1.3.0
8edf4000-8edf5000 r-xp 00002000 08:07 3145922 /lib/libuuid.so.1.3.0
8edf5000-8edf6000 rwxp 00003000 08:07 3145922 /lib/libuuid.so.1.3.0
8edf6000-8ee07000 r-xp 00000000 08:07 2376058
/usr/lib/gstreamer-0.10/libgsttypefindfunctions.so
8ee07000-8ee08000 r-xp 00010000 08:07 2376058
/usr/lib/gstreamer-0.10/libgsttypefindfunctions.so
8ee08000-8ee0a000 rwxp 00011000 08:07 2376058
/usr/lib/gstreamer-0.10/libgsttypefindfunctions.so
8ee0a000-8ee0d000 ---p 00000000 00:00 0
8ee0d000-8ee5b000 rwxp 00000000 00:00 0
8ee5b000-8eed4000 r-xp 00000000 08:07 2886324
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/libfontmanager.so
8eed4000-8eede000 rwxp 00078000 08:07 2886324
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/libfontmanager.so
8eede000-8eee3000 rwxp 00000000 00:00 0
8eee3000-8effc000 r-xp 00000000 08:07 2362155 /usr/lib/libX11.so.6.3.0
8effc000-8effd000 r-xp 00118000 08:07 2362155 /usr/lib/libX11.so.6.3.0
8effd000-8efff000 rwxp 00119000 08:07 2362155 /usr/lib/libX11.so.6.3.0
8efff000-8f000000 rwxp 00000000 00:00 0
8f000000-8f0fc000 rwxp 00000000 00:00 0
8f0fc000-8f100000 ---p 00000000 00:00 0
8f102000-8f106000 r-xp 00000000 08:07 2362174 /usr/lib/libXfixes.so.3.1.0
8f106000-8f107000 r-xp 00003000 08:07 2362174 /usr/lib/libXfixes.so.3.1.0
8f107000-8f108000 rwxp 00004000 08:07 2362174 /usr/lib/libXfixes.so.3.1.0
8f108000-8f10b000 r-xs 00000000 08:07 3175014
/var/cache/fontconfig/ba022efc551c75e21c690774bbcf5304-le32d4.cache-3
8f10b000-8f10f000 r-xp 00000000 08:07 2362170 /usr/lib/libXdmcp.so.6.0.0
8f10f000-8f110000 r-xp 00003000 08:07 2362170 /usr/lib/libXdmcp.so.6.0.0
8f110000-8f111000 rwxp 00004000 08:07 2362170 /usr/lib/libXdmcp.so.6.0.0
8f111000-8f113000 r-xp 00000000 08:07 2362159 /usr/lib/libXau.so.6.0.0
8f113000-8f114000 r-xp 00001000 08:07 2362159 /usr/lib/libXau.so.6.0.0
8f114000-8f115000 rwxp 00002000 08:07 2362159 /usr/lib/libXau.so.6.0.0
8f115000-8f199000 r-xp 00000000 08:07 2886319
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/libawt.so
8f199000-8f1a0000 rwxp 00084000 08:07 2886319
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/libawt.so
8f1a0000-8f1c4000 rwxp 00000000 00:00 0
8f1c4000-8f1fe000 r-xp 00000000 08:07 2376049
/usr/lib/gstreamer-0.10/libgstplaybin.so
8f1fe000-8f1ff000 r-xp 00039000 08:07 2376049
/usr/lib/gstreamer-0.10/libgstplaybin.so
8f1ff000-8f200000 rwxp 0003a000 08:07 2376049
/usr/lib/gstreamer-0.10/libgstplaybin.so
8f200000-8f300000 rwxp 00000000 00:00 0
8f302000-8f31a000 r-xp 00000000 08:07 2363166 /usr/lib/libxcb.so.1.1.0
8f31a000-8f31b000 r-xp 00017000 08:07 2363166 /usr/lib/libxcb.so.1.1.0
8f31b000-8f31c000 rwxp 00018000 08:07 2363166 /usr/lib/libxcb.so.1.1.0
8f31c000-8f328000 r-xp 00000000 08:07 2362180 /usr/lib/libXi.so.6.1.0
8f328000-8f329000 r-xp 0000c000 08:07 2362180 /usr/lib/libXi.so.6.1.0
8f329000-8f32a000 rwxp 0000d000 08:07 2362180 /usr/lib/libXi.so.6.1.0
8f32a000-8f338000 r-xp 00000000 08:07 2362172 /usr/lib/libXext.so.6.4.0
8f338000-8f339000 r-xp 0000d000 08:07 2362172 /usr/lib/libXext.so.6.4.0
8f339000-8f33a000 rwxp 0000e000 08:07 2362172 /usr/lib/libXext.so.6.4.0
8f33a000-8f37d000 r-xp 00000000 08:07 2886321
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/xawt/libmawt.so
8f37d000-8f37f000 rwxp 00043000 08:07 2886321
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/xawt/libmawt.so
8f37f000-8f380000 rwxp 00000000 00:00 0
8f380000-8f3c0000 r-xp 00000000 08:07 2362874
/usr/lib/libgstbase-0.10.so.0.28.0
8f3c0000-8f3c1000 r-xp 0003f000 08:07 2362874
/usr/lib/libgstbase-0.10.so.0.28.0
8f3c1000-8f3c2000 rwxp 00040000 08:07 2362874
/usr/lib/libgstbase-0.10.so.0.28.0
8f3c2000-8f3d0000 r-xp 00000000 08:07 2375187
/usr/lib/libgstinterfaces-0.10.so.0.23.0
8f3d0000-8f3d1000 r-xp 0000d000 08:07 2375187
/usr/lib/libgstinterfaces-0.10.so.0.23.0
8f3d1000-8f3d2000 rwxp 0000e000 08:07 2375187
/usr/lib/libgstinterfaces-0.10.so.0.23.0
8f3d2000-8f3ee000 r-xp 00000000 08:07 2367312
/usr/lib/libgstpbutils-0.10.so.0.23.0
8f3ee000-8f3ef000 r-xp 0001c000 08:07 2367312
/usr/lib/libgstpbutils-0.10.so.0.23.0
8f3ef000-8f3f0000 rwxp 0001d000 08:07 2367312
/usr/lib/libgstpbutils-0.10.so.0.23.0
8f3f2000-8f3f6000 r-xs 00000000 08:07 3174636
/var/cache/fontconfig/7ef2298fde41cc6eeb7af42e48b7d293-le32d4.cache-3
8f3f6000-8f404000 r-xs 00000000 08:07 3175015
/var/cache/fontconfig/865f88548240fee46819705c6468c165-le32d4.cache-3
8f404000-8f40a000 r-xs 00000000 00:15 1644573
/home/cefn/.fontconfig/86d8afc366a938778649af01d65eaff3-le32d4.cache-3
8f40a000-8f40c000 r-xp 00000000 08:07 2659739
/usr/share/locale-langpack/en_GB/LC_MESSAGES/glib20.mo
8f40c000-8f40d000 r-xp 00000000 08:07 2656351
/usr/share/locale-langpack/en_GB/LC_MESSAGES/libc.mo
8f40d000-8f52b000 r-xp 00000000 08:07 2367250
/usr/lib/locale/en_GB.utf8/LC_COLLATE
8f52b000-8f53e000 r-xp 00000000 08:07 3145929 /lib/libz.so.1.2.3.3
8f53e000-8f53f000 r-xp 00012000 08:07 3145929 /lib/libz.so.1.2.3.3
8f53f000-8f540000 rwxp 00013000 08:07 3145929 /lib/libz.so.1.2.3.3
8f540000-8f664000 r-xp 00000000 08:07 2375144 /usr/lib/libxml2.so.2.7.6
8f664000-8f665000 ---p 00124000 08:07 2375144 /usr/lib/libxml2.so.2.7.6
8f665000-8f669000 r-xp 00124000 08:07 2375144 /usr/lib/libxml2.so.2.7.6
8f669000-8f66a000 rwxp 00128000 08:07 2375144 /usr/lib/libxml2.so.2.7.6
8f66a000-8f66b000 rwxp 00000000 00:00 0
8f66b000-8f733000 r-xp 00000000 08:07 3158043 /lib/libglib-2.0.so.0.2400.1
8f733000-8f734000 r-xp 000c7000 08:07 3158043 /lib/libglib-2.0.so.0.2400.1
8f734000-8f735000 rwxp 000c8000 08:07 3158043 /lib/libglib-2.0.so.0.2400.1
8f735000-8f7fb000 r-xp 00000000 08:07 2364949
/usr/lib/libgstreamer-0.10.so.0.28.0
8f7fb000-8f7fe000 r-xp 000c5000 08:07 2364949
/usr/lib/libgstreamer-0.10.so.0.28.0
8f7fe000-8f7ff000 rwxp 000c8000 08:07 2364949
/usr/lib/libgstreamer-0.10.so.0.28.0
8f7ff000-8f800000 rwxp 00000000 00:00 0
8f800000-8f900000 rwxp 00000000 00:00 0
8f901000-8f905000 r-xp 00000000 08:07 2362200 /usr/lib/libXtst.so.6.1.0
8f905000-8f906000 r-xp 00003000 08:07 2362200 /usr/lib/libXtst.so.6.1.0
8f906000-8f907000 rwxp 00004000 08:07 2362200 /usr/lib/libXtst.so.6.1.0
8f907000-8f908000 rwxs 00000000 08:07 3407897 /tmp/ffirksc5z (deleted)
8f908000-8f937000 r-xp 00000000 08:07 3145872 /lib/libpcre.so.3.12.1
8f937000-8f938000 r-xp 0002e000 08:07 3145872 /lib/libpcre.so.3.12.1
8f938000-8f939000 rwxp 0002f000 08:07 3145872 /lib/libpcre.so.3.12.1
8f939000-8f93c000 r-xp 00000000 08:07 2367600
/usr/lib/libgmodule-2.0.so.0.2400.1
8f93c000-8f93d000 r-xp 00002000 08:07 2367600
/usr/lib/libgmodule-2.0.so.0.2400.1
8f93d000-8f93e000 rwxp 00003000 08:07 2367600
/usr/lib/libgmodule-2.0.so.0.2400.1
8f93e000-8f97b000 r-xp 00000000 08:07 2367597
/usr/lib/libgobject-2.0.so.0.2400.1
8f97b000-8f97c000 r-xp 0003c000 08:07 2367597
/usr/lib/libgobject-2.0.so.0.2400.1
8f97c000-8f97d000 rwxp 0003d000 08:07 2367597
/usr/lib/libgobject-2.0.so.0.2400.1
8f97d000-8f987000 r-xp 00000000 08:07 2375188
/usr/lib/libgstvideo-0.10.so.0.23.0
8f987000-8f988000 ---p 0000a000 08:07 2375188
/usr/lib/libgstvideo-0.10.so.0.23.0
8f988000-8f989000 r-xp 0000a000 08:07 2375188
/usr/lib/libgstvideo-0.10.so.0.23.0
8f989000-8f98a000 rwxp 0000b000 08:07 2375188
/usr/lib/libgstvideo-0.10.so.0.23.0
8f98a000-8f98b000 r-xp 00000000 08:07 2659744
/usr/share/locale-langpack/en_GB/LC_MESSAGES/gstreamer-0.10.mo
8f98b000-8f98f000 r-xp 00000000 08:07 2684582
/usr/share/locale/en_GB/LC_MESSAGES/gstreamer-0.10.mo
8f98f000-8f990000 r-xp 00000000 08:07 2361157
/usr/lib/locale/en_GB.utf8/LC_MONETARY
8f990000-8f991000 r-xp 00000000 08:07 2367078
/usr/lib/locale/en_GB.utf8/LC_MESSAGES/SYS_LC_MESSAGES
8f991000-8f992000 r-xp 00000000 08:07 2367257
/usr/lib/locale/en_GB.utf8/LC_PAPER
8f992000-8f993000 r-xp 00000000 08:07 2367060
/usr/lib/locale/en_GB.utf8/LC_NAME
8f993000-8f994000 r-xp 00000000 08:07 2361158
/usr/lib/locale/en_GB.utf8/LC_ADDRESS
8f994000-8f995000 r-xp 00000000 08:07 2361159
/usr/lib/locale/en_GB.utf8/LC_TELEPHONE
8f995000-8f996000 r-xp 00000000 08:07 2367253
/usr/lib/locale/en_GB.utf8/LC_MEASUREMENT
8f996000-8f997000 r-xp 00000000 08:07 2361160
/usr/lib/locale/en_GB.utf8/LC_IDENTIFICATION
8f997000-8f9aa000 r-xp 00000000 08:07 3407896 /tmp/jna6692525765479352679.tmp
8f9aa000-8f9ab000 rwxp 00013000 08:07 3407896 /tmp/jna6692525765479352679.tmp
8f9ab000-8f9c1000 r-xs 000be000 00:15 3548490
/home/cefn/Downloads/gstreamer-java-read-only/gstreamer-java/dist/gstreamer-java.jar
8f9c1000-8f9c2000 ---p 00000000 00:00 0
8f9c2000-8fa42000 rwxp 00000000 00:00 0
8fa42000-8fa45000 ---p 00000000 00:00 0
8fa45000-8fa93000 rwxp 00000000 00:00 0
8fa93000-8fa96000 ---p 00000000 00:00 0
8fa96000-8fb14000 rwxp 00000000 00:00 0
8fb14000-8fb17000 ---p 00000000 00:00 0
8fb17000-8fb95000 rwxp 00000000 00:00 0
8fb95000-8fb98000 ---p 00000000 00:00 0
8fb98000-8fbe6000 rwxp 00000000 00:00 0
8fbe6000-8fbed000 r-xs 00000000 08:07 2381531
/usr/lib/gconv/gconv-modules.cache
8fbed000-8fc2c000 r-xp 00000000 08:07 2367251
/usr/lib/locale/en_GB.utf8/LC_CTYPE
8fc2c000-8fc2f000 ---p 00000000 00:00 0
8fc2f000-8fc7d000 rwxp 00000000 00:00 0
8fc7d000-8fc80000 ---p 00000000 00:00 0
8fc80000-8fcce000 rwxp 00000000 00:00 0
8fcce000-8fccf000 ---p 00000000 00:00 0
8fccf000-8fd82000 rwxp 00000000 00:00 0
8fd82000-8ff1a000 r-xs 03013000 08:07 2886460
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/rt.jar
8ff1a000-8ff1b000 ---p 00000000 00:00 0
8ff1b000-8ff9b000 rwxp 00000000 00:00 0
8ff9b000-8ff9c000 ---p 00000000 00:00 0
8ff9c000-90024000 rwxp 00000000 00:00 0
90024000-9003c000 rwxp 00000000 00:00 0
9003c000-90047000 rwxp 00000000 00:00 0
90047000-900e4000 rwxp 00000000 00:00 0
900e4000-900ec000 rwxp 00000000 00:00 0
900ec000-90104000 rwxp 00000000 00:00 0
90104000-9010f000 rwxp 00000000 00:00 0
9010f000-901ab000 rwxp 00000000 00:00 0
901ab000-901b1000 rwxp 00000000 00:00 0
901b1000-901ff000 rwxp 00000000 00:00 0
901ff000-91200000 rwxp 00000000 00:00 0
91200000-94200000 rwxp 00000000 00:00 0
94200000-956e0000 rwxp 00000000 00:00 0
956e0000-a90b0000 rwxp 00000000 00:00 0
a90b0000-a9b20000 rwxp 00000000 00:00 0
a9b20000-b3800000 rwxp 00000000 00:00 0
b3800000-b3801000 r-xs 00000000 08:07 3407897 /tmp/ffirksc5z (deleted)
b3801000-b3805000 r-xp 00000000 08:07 2367602
/usr/lib/libgthread-2.0.so.0.2400.1
b3805000-b3806000 r-xp 00003000 08:07 2367602
/usr/lib/libgthread-2.0.so.0.2400.1
b3806000-b3807000 rwxp 00004000 08:07 2367602
/usr/lib/libgthread-2.0.so.0.2400.1
b3807000-b3810000 rwxp 00000000 00:00 0
b3810000-b38c7000 rwxp 00000000 00:00 0
b38c7000-b3b07000 rwxp 00000000 00:00 0
b3b07000-b68c7000 rwxp 00000000 00:00 0
b68c7000-b68d1000 r-xp 00000000 08:07 3152096
/lib/tls/i686/cmov/libnss_files-2.11.1.so
b68d1000-b68d2000 r-xp 00009000 08:07 3152096
/lib/tls/i686/cmov/libnss_files-2.11.1.so
b68d2000-b68d3000 rwxp 0000a000 08:07 3152096
/lib/tls/i686/cmov/libnss_files-2.11.1.so
b68d3000-b68db000 r-xp 00000000 08:07 3152394
/lib/tls/i686/cmov/libnss_nis-2.11.1.so
b68db000-b68dc000 r-xp 00007000 08:07 3152394
/lib/tls/i686/cmov/libnss_nis-2.11.1.so
b68dc000-b68dd000 rwxp 00008000 08:07 3152394
/lib/tls/i686/cmov/libnss_nis-2.11.1.so
b68dd000-b68e3000 r-xp 00000000 08:07 3152333
/lib/tls/i686/cmov/libnss_compat-2.11.1.so
b68e3000-b68e4000 r-xp 00006000 08:07 3152333
/lib/tls/i686/cmov/libnss_compat-2.11.1.so
b68e4000-b68e5000 rwxp 00007000 08:07 3152333
/lib/tls/i686/cmov/libnss_compat-2.11.1.so
b68e5000-b68f8000 r-xp 00000000 08:07 3151301
/lib/tls/i686/cmov/libnsl-2.11.1.so
b68f8000-b68f9000 r-xp 00012000 08:07 3151301
/lib/tls/i686/cmov/libnsl-2.11.1.so
b68f9000-b68fa000 rwxp 00013000 08:07 3151301
/lib/tls/i686/cmov/libnsl-2.11.1.so
b68fa000-b68fc000 rwxp 00000000 00:00 0
b68fc000-b68fd000 r-xp 00000000 08:07 2367256
/usr/lib/locale/en_GB.utf8/LC_NUMERIC
b68fd000-b690c000 r-xp 00000000 08:07 2886303
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/libzip.so
b690c000-b690e000 rwxp 0000e000 08:07 2886303
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/libzip.so
b690e000-b6916000 rwxs 00000000 08:07 3544300 /tmp/hsperfdata_cefn/3615
b6916000-b6939000 r-xp 00000000 08:07 2886301
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/libjava.so
b6939000-b693b000 rwxp 00023000 08:07 2886301
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/libjava.so
b693b000-b6942000 r-xp 00000000 08:07 3152220
/lib/tls/i686/cmov/librt-2.11.1.so
b6942000-b6943000 r-xp 00006000 08:07 3152220
/lib/tls/i686/cmov/librt-2.11.1.so
b6943000-b6944000 rwxp 00007000 08:07 3152220
/lib/tls/i686/cmov/librt-2.11.1.so
b6944000-b6947000 ---p 00000000 00:00 0
b6947000-b6995000 rwxp 00000000 00:00 0
b6995000-b69b9000 r-xp 00000000 08:07 3152181
/lib/tls/i686/cmov/libm-2.11.1.so
b69b9000-b69ba000 r-xp 00023000 08:07 3152181
/lib/tls/i686/cmov/libm-2.11.1.so
b69ba000-b69bb000 rwxp 00024000 08:07 3152181
/lib/tls/i686/cmov/libm-2.11.1.so
b69bb000-b70e7000 r-xp 00000000 08:07 2886291
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/server/libjvm.so
b70e7000-b713a000 rwxp 0072c000 08:07 2886291
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/server/libjvm.so
b713a000-b755a000 rwxp 00000000 00:00 0
b755a000-b76ad000 r-xp 00000000 08:07 3152164
/lib/tls/i686/cmov/libc-2.11.1.so
b76ad000-b76ae000 ---p 00153000 08:07 3152164
/lib/tls/i686/cmov/libc-2.11.1.so
b76ae000-b76b0000 r-xp 00153000 08:07 3152164
/lib/tls/i686/cmov/libc-2.11.1.so
b76b0000-b76b1000 rwxp 00155000 08:07 3152164
/lib/tls/i686/cmov/libc-2.11.1.so
b76b1000-b76b4000 rwxp 00000000 00:00 0
b76b4000-b76b6000 r-xp 00000000 08:07 3151425
/lib/tls/i686/cmov/libdl-2.11.1.so
b76b6000-b76b7000 r-xp 00001000 08:07 3151425
/lib/tls/i686/cmov/libdl-2.11.1.so
b76b7000-b76b8000 rwxp 00002000 08:07 3151425
/lib/tls/i686/cmov/libdl-2.11.1.so
b76b8000-b76bf000 r-xp 00000000 08:07 2886302
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/jli/libjli.so
b76bf000-b76c1000 rwxp 00006000 08:07 2886302
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/jli/libjli.so
b76c1000-b76c2000 rwxp 00000000 00:00 0
b76c2000-b76d7000 r-xp 00000000 08:07 3152043
/lib/tls/i686/cmov/libpthread-2.11.1.so
b76d7000-b76d8000 r-xp 00014000 08:07 3152043
/lib/tls/i686/cmov/libpthread-2.11.1.so
b76d8000-b76d9000 rwxp 00015000 08:07 3152043
/lib/tls/i686/cmov/libpthread-2.11.1.so
b76d9000-b76db000 rwxp 00000000 00:00 0
b76db000-b76dc000 r-xp 00000000 08:07 2367064
/usr/lib/locale/en_GB.utf8/LC_TIME
b76dc000-b76e0000 r-xs 000e4000 00:15 6553989
/home/cefn/Documents/Processing/libraries/GSVideo/library/jna.jar
b76e0000-b76e6000 r-xp 00000000 08:07 2886290
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/native_threads/libhpi.so
b76e6000-b76e7000 rwxp 00006000 08:07 2886290
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/native_threads/libhpi.so
b76e7000-b76e8000 rwxp 00000000 00:00 0
b76e8000-b76e9000 r-xp 00000000 00:00 0
b76e9000-b76f4000 r-xp 00000000 08:07 2886299
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/libverify.so
b76f4000-b76f5000 rwxp 0000b000 08:07 2886299
/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/libverify.so
b76f5000-b76f7000 rwxp 00000000 00:00 0
b76f7000-b76f8000 r-xp 00000000 00:00 0 [vdso]
b76f8000-b7713000 r-xp 00000000 08:07 3151768 /lib/ld-2.11.1.so
b7713000-b7714000 r-xp 0001a000 08:07 3151768 /lib/ld-2.11.1.so
b7714000-b7715000 rwxp 0001b000 08:07 3151768 /lib/ld-2.11.1.so
bf8f5000-bf90a000 rwxp 00000000 00:00 0 [stack]

VM Arguments:
jvm_args: -Dfile.encoding=UTF-8
java_command: com.cefn.gstreamer.App /home/cefn/Videos/ted/noise_orig.mp4
Launcher Type: SUN_STANDARD

Environment Variables:
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
USERNAME=cefn
LD_LIBRARY_PATH=/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/server:/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386:/usr/lib/jvm/java-6-sun-1.6.0.22/jre/../lib/i386:/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386/client:/usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/i386:/usr/lib/xulrunner-1.9.2.13:/usr/lib/xulrunner-1.9.2.13
SHELL=/bin/bash
DISPLAY=:0.0

Signal Handlers:
SIGSEGV: [libjvm.so+0x6a9f20], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGBUS: [libjvm.so+0x6a9f20], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGFPE: [libjvm.so+0x5781e0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGPIPE: [libjvm.so+0x5781e0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGXFSZ: [libjvm.so+0x5781e0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGILL: [libjvm.so+0x5781e0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
SIGUSR2: [libjvm.so+0x57ae20], sa_mask[0]=0x00000004, sa_flags=0x10000004
SIGHUP: [libjvm.so+0x57ab50], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGINT: [libjvm.so+0x57ab50], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGTERM: [libjvm.so+0x57ab50], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGQUIT: [libjvm.so+0x57ab50], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004


--------------- S Y S T E M ---------------

OS:squeeze/sid

uname:Linux 2.6.32-27-generic #49-Ubuntu SMP Wed Dec 1 23:52:12 UTC 2010 i686
libc:glibc 2.11.1 NPTL 2.11.1
rlimit: STACK 8192k, CORE 0k, NPROC infinity, NOFILE 1024, AS infinity
load average:2.66 2.14 1.30

CPU:total 2 (2 cores per cpu, 1 threads per core) family 6 model 15
stepping 13, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3

Memory: 4k page, physical 2052032k(147952k free), swap 4016208k(4016208k free)

vm_info: Java HotSpot(TM) Server VM (17.1-b03) for linux-x86 JRE
(1.6.0_22-b04), built on Sep 15 2010 01:02:09 by "java_re" with gcc
3.2.1-7a (J2SE release)

time: Sat Jan 15 15:44:55 2011
elapsed time: 10 seconds

> --
> You received this message because you are subscribed to the Google Groups "gstreamer-java" group.
> To post to this group, send email to gstream...@googlegroups.com.

> To unsubscribe from this group, send email to gstreamer-jav...@googlegroups.com.

Cefn Hoile

unread,
Jan 17, 2011, 6:18:38 PM1/17/11
to gstream...@googlegroups.com
I also get a segfault with the example video player from pygst, with a
thread added to trigger volume changes, using the code at this
pastebin http://pastebin.com/MWg7dGu8 based on the video player
example at http://pygstdocs.berlios.de/pygst-tutorial/playbin.html

Based on this extra information, where should I go next to follow the
problem upstream?

Cefn
http://cefn.com

Tal Shalif

unread,
Jan 18, 2011, 1:15:24 AM1/18/11
to gstream...@googlegroups.com
Go to http://www.gstreamer.net/bugs/ and select 'File a Bug' from sidebar on left. You will be asked to create a bugzilla user account to continue.

Farkas Levente

unread,
Jan 23, 2011, 6:17:34 PM1/23/11
to gstream...@googlegroups.com, ac
would you fill an issue for this?
with the source crash log etc...

Farkas Levente

unread,
Jan 23, 2011, 6:23:11 PM1/23/11
to gstream...@googlegroups.com
if it's happened both with java and python then it's not a bug in
gstreamer-java but probably in gstreamer itself.
it'd be useful to report upstream (as python has official binding,
probably a python example would be enough):
http://gstreamer.freedesktop.org/bugs/
and please send us the bz entry too.
thanks.

Cefn Hoile

unread,
Jan 23, 2011, 6:30:38 PM1/23/11
to gstream...@googlegroups.com
I agree with your interpretation Farkas. I filed an issue at gstreamer...
https://bugzilla.gnome.org/show_bug.cgi?id=639800
...but they're saying it's not proven to be a gstreamer bug until I
can recreate it in C, which is probably beyond me just to prove this
bug.

I haven't built any desktop programs for C in about 10 years. Since
the beginning of my career I've been working in interpreted and VM
languages, and it would take a bunch of work to get back to the C
model. It's one reason I use Processing rather than OpenFrameworks.
Perhaps it's time I reopened the C box, but would take some time, and
for the sake of this bug report I think it's stalled.

Cefn

On Jan 23, 11:17 pm, Farkas Levente <lfar...@lfarkas.org> wrote:
> would you fill an issue for this?
> with the source crash log etc...
>

> ...
>
> read more »

Cefn Hoile

unread,
Jan 23, 2011, 6:33:07 PM1/23/11
to gstream...@googlegroups.com
As a workaround, could it be as simple as recompiling my own version
of Gstreamer-java which rolls back to Playbin instead of Playbin2, or
could that lead to worse problems down the line?

Andres Colubri

unread,
Jan 24, 2011, 9:17:18 AM1/24/11
to gstream...@googlegroups.com
I did use Playbin instead of Playbin2 for a while and I didn't find any
problem. It was stable and didn't experience any crashes related to
volume change.

>>> read more �

Andres Colubri

unread,
Jan 24, 2011, 9:21:30 AM1/24/11
to gstream...@googlegroups.com
I'll try to put together in the next few days a small C program
reproducing this crash.

>> read more �

Cefn Hoile

unread,
Jan 24, 2011, 11:55:10 AM1/24/11
to gstream...@googlegroups.com
Thanks for helping out, Andres. I'd love to see the result.

I can build and run it on my machine to verify if it's something to do
with Ubuntu.

Cefn
http://cefn.com

>>> read more »

ac

unread,
Jan 25, 2011, 10:37:29 AM1/25/11
to gstreamer-java
I think it will take me more time that I originally thought to put
together a simple C example reproducing this volume issue...

From this short tutorial: http://felipec.wordpress.com/2008/01/19/gstreamer-hello-world/
you can get a minimal audio playback app done very quickly,

Then just pass "playbin2" instead of "playbin" to
gst_element_factory_make() to have a playbin2 pipeline.

And the C code to set the volume property is:
g_object_set(G_OBJECT(pipeline), "volume", v, NULL);

The problem is that once you get into the main loop with
g_main_loop_run(), you have no way to call g_object_set() as the audio
is played back. Seems like you need at least two threads, one with the
gloop playing the audio, and another to set the volume from. But I
don't know how to do this in plain C.

Maybe using this information, and asking the guys at the bugzilla
website, you can figure out how to complete this program.

I hope this helps.

On Jan 25, 1:55 am, Cefn Hoile <google....@cefn.com> wrote:
> Thanks for helping out, Andres.  I'd love to see the result.
>
> I can build and run it on my machine to verify if it's something to do
> with Ubuntu.
>
> Cefnhttp://cefn.com
> ...
>
> read more »
Reply all
Reply to author
Forward
0 new messages