Bug#601652: need to delete cache or libffado2 fails

2010-10-28 Thread Max Kellermann
Package: libffado2
Version: 2.0.1+svn1856-5
Severity: important

The attached program fails when the libffado2 cache exists
(~/.ffado/cache).  It spills the following error message in
ffado_streaming_start():

libiec61883 warning: iec61883_cmp_create_p2p_output: Failed to set the oPCR[0] 
plug for node 0.
ERROR: messagebuffer not initialized: 1248856282860: Error 
(ieee1394service.cpp)[1413] allocateIsoChannelCMP: Could not do CMP from 
FFC0:00 to FFC1:-1
ERROR: messagebuffer not initialized: 1248856282871: Error (avc_avdevice.cpp)[ 
816] startStreamByIndex: Could not allocate ISO channel for SP 0
ERROR: messagebuffer not initialized: 1248856282877: Warning 
(devicemanager.cpp)[ 863] startStreamingOnDevice: Could not start stream 0 of 
device 0x464300
ERROR: messagebuffer not initialized: 1248856282884: Warning 
(devicemanager.cpp)[ 900] startStreaming: Could not start streaming on device 
0x464300!
ERROR: messagebuffer not initialized: 1248856282890: Fatal (ffado.cpp)[ 211] 
ffado_streaming_start: Could not start the streaming system

Deleting the cache (rm -r ~/.ffado/cache) will resolve the issue.

As far as I can see, there is no option to disable the cache.  A
shared library writing to the user's home directory is not exactly
good programming style anyway.

Severity important because it renders the library useless, unless you
delete the cache each time before you run a libffado2 application.



___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Re: [SCM] xvidcore/master: Set CFLAGS via DEB_CFLAGS, otherwise let xvidcore's build system chose CFLAGS.

2010-10-28 Thread Fabian Greffrath

Am 28.10.2010 07:32, schrieb Jonas Smedegaard:

+# Set CFLAGS from DEB_CFLAGS if defined, otherwise let xvidcore's
build system
+# set CFLAGS to use.
+CFLAGS = $(or $(DEB_CFLAGS),)

Simpler:
CFLAGS = $(DEB_CFLAGS)


By the way, what's the purpose of these changes at all?!

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Bug#601652: missing file

2010-10-28 Thread Max Kellermann
Here's the missing C program.

It turns out clearing the cache does not affect the issue; just my
first few tries showed a correlation.  Now it seems to fail always.  I
will update this bug report as soon as I know more.
#include libffado/ffado.h
#include stdbool.h
#include string.h
#include assert.h
#include stdio.h

enum {
MAX_STREAMS = 16,
PERIOD_SIZE = 1024,
NB_BUFFERS = 3,
};

static float buffer[PERIOD_SIZE];

static bool
configure_stream(ffado_device_t *dev, int number)
{
return ffado_streaming_set_playback_stream_buffer(dev, number, (char *)buffer) == 0 
ffado_streaming_playback_stream_onoff(dev, number, 1) == 0;
}

int main(int argc, char **argv) {
ffado_device_t *dev;

ffado_device_info_t device_info;
memset(device_info, 0, sizeof(device_info));
ffado_options_t options;
memset(options, 0, sizeof(options));
options.sample_rate = 44100;
options.period_size = PERIOD_SIZE;
options.nb_buffers = NB_BUFFERS;
options.verbose = 5;

dev = ffado_streaming_init(device_info, options);
assert(dev != NULL);

ffado_streaming_set_audio_datatype(dev, ffado_audio_datatype_float);

int num_streams = ffado_streaming_get_nb_playback_streams(dev);
assert(num_streams  0);

int streams[MAX_STREAMS], configured_streams = 0;
for (int i = 0; i  num_streams; ++i) {
char name[256];
ffado_streaming_get_playback_stream_name(dev, i, name,
 sizeof(name) - 1);

ffado_streaming_stream_type type =
ffado_streaming_get_playback_stream_type(dev, i);
if (type != ffado_stream_type_audio)
continue;

printf(stream %d name='%s'\n, i, name);

streams[configured_streams++] = i;
configure_stream(dev, i);
}

if (ffado_streaming_prepare(dev) != 0) {
fprintf(stderr, ffado_streaming_prepare() failed\n);
return 1;
}

if (ffado_streaming_start(dev) != 0) {
fprintf(stderr, ffado_streaming_start() failed\n);
return 1;
}

while (true) {
switch (ffado_streaming_wait(dev)) {
case ffado_wait_ok:
break;

case ffado_wait_xrun:
printf(xrun\n);
break;

default:
fprintf(stderr, ffado_streaming_wait() failed);
return 1;
}

if (ffado_streaming_transfer_playback_buffers(dev) != 0) {
fprintf(stderr, ffado_streaming_transfer_playback_buffers() failed\n);
return 1;
}

printf(.\n);
}

return 0;
}
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Processing of pd-iemnet_0.1-1_i386.changes

2010-10-28 Thread Debian FTP Masters
pd-iemnet_0.1-1_i386.changes uploaded successfully to localhost
along with the files:
  pd-iemnet_0.1-1.dsc
  pd-iemnet_0.1.orig.tar.gz
  pd-iemnet_0.1-1.debian.tar.gz
  pd-iemnet_0.1-1_i386.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Processing of pd-earplug_0.2-1_i386.changes

2010-10-28 Thread Debian FTP Masters
pd-earplug_0.2-1_i386.changes uploaded successfully to localhost
along with the files:
  pd-earplug_0.2-1.dsc
  pd-earplug_0.2.orig.tar.gz
  pd-earplug_0.2-1.debian.tar.gz
  pd-earplug_0.2-1_i386.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Re: [SCM] pd-iemnet/master: watch file sourceforge

2010-10-28 Thread IOhannes m zmoelnig
On 2010-10-27 21:31, Reinhard Tartler wrote:
 On Mi, Okt 20, 2010 at 11:04:28 (CEST), 
 zmoelnig-gu...@users.alioth.debian.org wrote:
 
 The following commit has been merged in the master branch:
 commit 615adb5ed59a6770c787fb4492a1ec1b84a41724
 Author: IOhannes m zmölnig zmoel...@iem.at
 Date:   Wed Oct 20 11:03:43 2010 +0200

 watch file sourceforge

 diff --git a/debian/watch b/debian/watch
 new file mode 100644
 index 000..2689757
 --- /dev/null
 +++ b/debian/watch
 @@ -0,0 +1,2 @@
 +version=3
 +http://sf.net/pure-data/iemnet-(.*)\.tar\.gz
 
 siret...@debian:~/packages/pd-iemnet/pd-iemnet$ uscan --verbose
 -- Scanning for watchfiles in .
 -- Found watchfile in ./debian
 -- In debian/watch, processing watchfile line:
http://sf.net/pure-data/iemnet-(.*)\.tar\.gz
 uscan warning: In debian/watch,
   no matching hrefs for watch line
   http://sf.net/pure-data/iemnet-(.*)\.tar\.gz
 -- Scan finished
 
 siret...@debian:~/packages/pd-iemnet/pd-iemnet$ more debian/watch 
 # Run the uscan command to check for upstream updates and more. 
 version=3
 http://sf.net/pure-data/iemnet-(.*)\.tar\.gz
 
 Seems this watchfile is wrong or broken. Uh?
 
 

well, not really.
the problem seems to be that the package still does not show up in the
redirector. when i wrote the watch-file i was pretty confident, that it
would show up within the next hours, and now i find myself puzzled that
it did not.

probably i misunderstood, how the redirector works (i thought it would
be enough to just upload a file to sourceforge, and eventually it would
show up automatically in the redirector). any clues?

fgamsdr
IOhannes



smime.p7s
Description: S/MIME Cryptographic Signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


pd-earplug_0.2-1_i386.changes is NEW

2010-10-28 Thread Debian FTP Masters
(new) pd-earplug_0.2-1.debian.tar.gz optional sound
(new) pd-earplug_0.2-1.dsc optional sound
(new) pd-earplug_0.2-1_i386.deb optional sound
binaural filter based on KEMAR impulse measurement for Pd
 earplug~ is a realtime binaural filter based on KEMAR impulse measurement.
 It allows you to spatialize a sound in realtime. It basically takes the KEMAR
 data set, and interpolates 366 locations where HRTF measurement exists in a
 spherical surface. you get azimuth control 0-360 and elevation -40 - 90.
(new) pd-earplug_0.2.orig.tar.gz optional sound
Changes: pd-earplug (0.2-1) unstable; urgency=low
 .
  * Initial release (Closes: #591846)


Override entries for your package:

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 591846 


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


pd-iemnet_0.1-1_i386.changes is NEW

2010-10-28 Thread Debian FTP Masters
(new) pd-iemnet_0.1-1.debian.tar.gz optional sound
(new) pd-iemnet_0.1-1.dsc optional sound
(new) pd-iemnet_0.1-1_i386.deb optional sound
A Pd library for low-level networking
 This library adds Pure Data objects that allow to build a networking
 infrastructure within Pd on OSI-Layer 4 (transport layer).
 The objects use threads to allow for non-blocking network communication within
 an audio-realtime environment.
 .
 [tcpreceive], [tcpsend]: unidirectional communication over TCP/IP
 [tcpserver], [tcpclient]: bidirectional communication over TCP/IP
 [udpreceive], [udpsend]: unidirectional communication over UDP
 [udpclient]: bidirectional communication over UDP
 .
 Since these objects only send/receive lists of bytes, you will most likely need
 to add some glue to implement higher-level protocols (and transmit meaningful
 data).
(new) pd-iemnet_0.1.orig.tar.gz optional sound
Changes: pd-iemnet (0.1-1) unstable; urgency=low
 .
  * Initial release. (Closes: #599229)


Override entries for your package:

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 599229 


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Bug#601657: libffado2 thread crashes with assertion failure

2010-10-28 Thread Max Kellermann
Package: libffado2   
Version: 2.0.1+svn1856-5
   
Severity: serious

The attached test program can trigger a (timing?) bug in libffado2,
which causes an assertion failure (i.e. crash of the whole
application).
#include libffado/ffado.h
#include stdbool.h
#include string.h
#include assert.h
#include stdio.h

enum {
MAX_STREAMS = 16,
PERIOD_SIZE = 1024,
NB_BUFFERS = 3,
};

static float buffer[PERIOD_SIZE];

static bool
configure_stream(ffado_device_t *dev, int number)
{
return ffado_streaming_set_playback_stream_buffer(dev, number, (char *)buffer) == 0 
ffado_streaming_playback_stream_onoff(dev, number, 1) == 0;
}

int main(int argc, char **argv) {
ffado_device_t *dev;

ffado_device_info_t device_info;
memset(device_info, 0, sizeof(device_info));
ffado_options_t options;
memset(options, 0, sizeof(options));
options.sample_rate = 44100;
options.period_size = PERIOD_SIZE;
options.nb_buffers = NB_BUFFERS;
options.verbose = 4;

dev = ffado_streaming_init(device_info, options);
assert(dev != NULL);

ffado_streaming_set_audio_datatype(dev, ffado_audio_datatype_float);

int num_streams = ffado_streaming_get_nb_playback_streams(dev);
assert(num_streams  0);

int streams[MAX_STREAMS], configured_streams = 0;
for (int i = 0; i  num_streams; ++i) {
if (configured_streams = 2)
break;

char name[256];
ffado_streaming_get_playback_stream_name(dev, i, name,
 sizeof(name) - 1);

ffado_streaming_stream_type type =
ffado_streaming_get_playback_stream_type(dev, i);
if (type != ffado_stream_type_audio)
continue;

printf(stream %d name='%s'\n, i, name);

streams[configured_streams++] = i;
configure_stream(dev, i);
}

if (ffado_streaming_prepare(dev) != 0) {
fprintf(stderr, ffado_streaming_prepare() failed\n);
return 1;
}

if (ffado_streaming_start(dev) != 0) {
fprintf(stderr, ffado_streaming_start() failed\n);
return 1;
}

getchar();

return 0;
}
Cannot create thread 1 Operation not permitted
ERROR: messagebuffer not initialized: 1250338856552:  (ffado.cpp)[  92] 
ffado_streaming_init: libffado 2.999.0- built Oct 16 2010 22:29:48
ERROR: messagebuffer not initialized: 1250338856611: Warning (ffado.cpp)[ 
121] ffado_streaming_init: Realtime scheduling is not enabled. This will cause 
significant reliability issues.
ERROR: messagebuffer not initialized: 1250339089620: Debug 
(devicemanager.cpp)[ 358] discover: Starting discovery...
ERROR: messagebuffer not initialized: 1250339197751: Debug (Configuration.cpp)[ 
163] showSetting:   Group: (null)
ERROR: messagebuffer not initialized: 1250339197771: Debug (Configuration.cpp)[ 
185] showSetting: vendorid = 3436 (0x0D6C)
ERROR: messagebuffer not initialized: 125033919: Debug (Configuration.cpp)[ 
185] showSetting: modelid = 65634 (0x00010062)
ERROR: messagebuffer not initialized: 1250339197783: Debug (Configuration.cpp)[ 
209] showSetting: vendorname = M-Audio
ERROR: messagebuffer not initialized: 1250339197787: Debug (Configuration.cpp)[ 
209] showSetting: modelname = FW Solo
ERROR: messagebuffer not initialized: 1250339197791: Debug (Configuration.cpp)[ 
185] showSetting: driver = 1 (0x0001)
ERROR: messagebuffer not initialized: 1250339197796: Debug (Configuration.cpp)[ 
185] showSetting: xmit_max_cycles_early_transmit = 4 (0x0004)
ERROR: messagebuffer not initialized: 1250339197885: Debug (devicemanager.cpp)[ 
620] discover: driver found for device 0
ERROR: messagebuffer not initialized: 1250339218779: Debug 
(bebob_avdevice.cpp)[ 734] loadFromCache: filename 
/home/max/.ffado/cache/000d6c0b0076ee12/006001040403.xml
ERROR: messagebuffer not initialized: 1250339224945: Debug 
(serialize_libxml.cpp)[ 230] checkVersion: Cache version: 2.999.0-, expected: 
2.999.0-.
ERROR: messagebuffer not initialized: 1250339374980: Debug (avc_unit.cpp)[ 489] 
discoverPlugConnections: Discovering PCR plug connections...
ERROR: messagebuffer not initialized: 1250339412532: Debug (avc_unit.cpp)[ 500] 
discoverPlugConnections: Discovering External plug connections...
ERROR: messagebuffer not initialized: 1250339451864: Debug 
(bebob_avdevice_subunit.cpp)[ 102] discoverConnections: Discovering 
connections...
ERROR: messagebuffer not initialized: 1250339451876: Debug (avc_subunit.cpp)[ 
148] discoverConnections: Discovering connections...
ERROR: messagebuffer not initialized: 1250339451882: Debug (avc_subunit.cpp)[ 
148] discoverConnections: Discovering connections...
ERROR: messagebuffer not initialized: 1250339451885: Debug 
(bebob_avdevice_subunit.cpp)[ 102] discoverConnections: Discovering 
connections...
ERROR: messagebuffer not 

Processing of pd-freeverb_1.2-1_i386.changes

2010-10-28 Thread Debian FTP Masters
pd-freeverb_1.2-1_i386.changes uploaded successfully to localhost
along with the files:
  pd-freeverb_1.2-1.dsc
  pd-freeverb_1.2.orig.tar.gz
  pd-freeverb_1.2-1.debian.tar.gz
  pd-freeverb_1.2-1_i386.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Processing of pd-plugin_0.2.1-1_i386.changes

2010-10-28 Thread Debian FTP Masters
pd-plugin_0.2.1-1_i386.changes uploaded successfully to localhost
along with the files:
  pd-plugin_0.2.1-1.dsc
  pd-plugin_0.2.1.orig.tar.gz
  pd-plugin_0.2.1-1.debian.tar.gz
  pd-plugin_0.2.1-1_i386.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Bug#601660: Error [..] (Success)

2010-10-28 Thread Max Kellermann
Package: libffado2
Version: 2.0.1+svn1856-5

libffado2 prints this very obscure error message to stderr:

 ERROR: messagebuffer not initialized: 1250953428115: Error (PosixThread.cpp)[ 
254] DropRealTime: Cannot switch to normal scheduling priority(Success)

This does not make sense at all.



___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


pd-freeverb_1.2-1_i386.changes is NEW

2010-10-28 Thread Debian FTP Masters
(new) pd-freeverb_1.2-1.debian.tar.gz optional sound
(new) pd-freeverb_1.2-1.dsc optional sound
(new) pd-freeverb_1.2-1_i386.deb optional sound
studio-quality Schroeder/Moorer reverb as a Pd object
 Freeverb is a simple implementation of the standard Schroeder/Moorer
 reverb model. It uses 8 comb filters on both the left and right
 channels. Note that this version of Freeverb doesn't contain
 predelay, or any EQ.  It is implemented as a Pd object, so it can
 easily be inserted into a Pd patch.
(new) pd-freeverb_1.2.orig.tar.gz optional sound
Changes: pd-freeverb (1.2-1) unstable; urgency=low
 .
  * Initial release (Closes: #591843)


Override entries for your package:

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 591843 


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


pd-plugin_0.2.1-1_i386.changes is NEW

2010-10-28 Thread Debian FTP Masters
(new) pd-plugin_0.2.1-1.debian.tar.gz optional sound
(new) pd-plugin_0.2.1-1.dsc optional sound
(new) pd-plugin_0.2.1-1_i386.deb optional sound
LADSPA and VST plug-in hosting for Pd
 This is a Pd tilde object for hosting LADSPA audio plug-ins. The
 LADSPA plug-in interface is supported completely. The object will
 search your LADSPA path for plugins, which are loadable by name as an
 argument to the plugin~ object.
(new) pd-plugin_0.2.1.orig.tar.gz optional sound
Changes: pd-plugin (0.2.1-1) unstable; urgency=low
 .
  * Initial release (Closes: #596461)


Override entries for your package:

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 596461 


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Bug#601661: Documentation refers to ffado_streaming_write()

2010-10-28 Thread Max Kellermann
Package: libffado2
Version: 2.0.1+svn1856-5

The documentation in /usr/include/libffado/ffado.h refers to the
function ffado_streaming_write(), but this function does not exist.



___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Bug#601663: libffado2 reads from freed memory

2010-10-28 Thread Max Kellermann
Package: libffado2
Version: 2.0.1+svn1856-5
Severity: serious

libffado2 reads a lot of values from freed or uninitialized memory.
That is obviously a crash waiting to happen.  See attached valgrind
log file.

Thread 10:
Conditional jump or move depends on uninitialised value(s)
   at 0xAEE9C75: CycleTimerHelper::getCycleTimerTicks(unsigned long) (in 
/usr/lib/libffado.so.2.999.0)
   by 0xAEEB8A9: CycleTimerHelper::Execute() (in /usr/lib/libffado.so.2.999.0)
   by 0xAF15829: Util::PosixThread::ThreadHandler(void*) (in 
/usr/lib/libffado.so.2.999.0)
   by 0xB4748B9: start_thread (pthread_create.c:300)
   by 0xCACC02C: clone (clone.S:112)
 Uninitialised value was created by a heap allocation
   at 0x4C24DFA: operator new(unsigned long) (vg_replace_malloc.c:261)
   by 0xAEF0D8B: Ieee1394Service::Ieee1394Service() (in 
/usr/lib/libffado.so.2.999.0)
   by 0xAED67B0: DeviceManager::initialize() (in /usr/lib/libffado.so.2.999.0)
   by 0xAEDCC4A: ffado_streaming_init (in /usr/lib/libffado.so.2.999.0)
   by 0x431A65: ffado_open (ffado_output_plugin.c:240)
   by 0x42CAB2: ao_plugin_open (output_plugin.h:196)
   by 0x42D384: ao_open (output_thread.c:164)
   by 0x42E269: audio_output_task (output_thread.c:549)
   by 0x7A40783: g_thread_create_proxy (gthread.c:1893)
   by 0xB4748B9: start_thread (pthread_create.c:300)
   by 0xCACC02C: clone (clone.S:112)

Conditional jump or move depends on uninitialised value(s)
   at 0xAEE9C7A: CycleTimerHelper::getCycleTimerTicks(unsigned long) (in 
/usr/lib/libffado.so.2.999.0)
   by 0xAEEB8A9: CycleTimerHelper::Execute() (in /usr/lib/libffado.so.2.999.0)
   by 0xAF15829: Util::PosixThread::ThreadHandler(void*) (in 
/usr/lib/libffado.so.2.999.0)
   by 0xB4748B9: start_thread (pthread_create.c:300)
   by 0xCACC02C: clone (clone.S:112)
 Uninitialised value was created by a heap allocation
   at 0x4C24DFA: operator new(unsigned long) (vg_replace_malloc.c:261)
   by 0xAEF0D8B: Ieee1394Service::Ieee1394Service() (in 
/usr/lib/libffado.so.2.999.0)
   by 0xAED67B0: DeviceManager::initialize() (in /usr/lib/libffado.so.2.999.0)
   by 0xAEDCC4A: ffado_streaming_init (in /usr/lib/libffado.so.2.999.0)
   by 0x431A65: ffado_open (ffado_output_plugin.c:240)
   by 0x42CAB2: ao_plugin_open (output_plugin.h:196)
   by 0x42D384: ao_open (output_thread.c:164)
   by 0x42E269: audio_output_task (output_thread.c:549)
   by 0x7A40783: g_thread_create_proxy (gthread.c:1893)
   by 0xB4748B9: start_thread (pthread_create.c:300)
   by 0xCACC02C: clone (clone.S:112)

Conditional jump or move depends on uninitialised value(s)
   at 0xAEEB8DA: CycleTimerHelper::Execute() (in /usr/lib/libffado.so.2.999.0)
   by 0xAF15829: Util::PosixThread::ThreadHandler(void*) (in 
/usr/lib/libffado.so.2.999.0)
   by 0xB4748B9: start_thread (pthread_create.c:300)
   by 0xCACC02C: clone (clone.S:112)
 Uninitialised value was created by a heap allocation
   at 0x4C24DFA: operator new(unsigned long) (vg_replace_malloc.c:261)
   by 0xAEF0D8B: Ieee1394Service::Ieee1394Service() (in 
/usr/lib/libffado.so.2.999.0)
   by 0xAED67B0: DeviceManager::initialize() (in /usr/lib/libffado.so.2.999.0)
   by 0xAEDCC4A: ffado_streaming_init (in /usr/lib/libffado.so.2.999.0)
   by 0x431A65: ffado_open (ffado_output_plugin.c:240)
   by 0x42CAB2: ao_plugin_open (output_plugin.h:196)
   by 0x42D384: ao_open (output_thread.c:164)
   by 0x42E269: audio_output_task (output_thread.c:549)
   by 0x7A40783: g_thread_create_proxy (gthread.c:1893)
   by 0xB4748B9: start_thread (pthread_create.c:300)
   by 0xCACC02C: clone (clone.S:112)

Conditional jump or move depends on uninitialised value(s)
   at 0xAEEB8F7: CycleTimerHelper::Execute() (in /usr/lib/libffado.so.2.999.0)
   by 0xAF15829: Util::PosixThread::ThreadHandler(void*) (in 
/usr/lib/libffado.so.2.999.0)
   by 0xB4748B9: start_thread (pthread_create.c:300)
   by 0xCACC02C: clone (clone.S:112)
 Uninitialised value was created by a heap allocation
   at 0x4C24DFA: operator new(unsigned long) (vg_replace_malloc.c:261)
   by 0xAEF0D8B: Ieee1394Service::Ieee1394Service() (in 
/usr/lib/libffado.so.2.999.0)
   by 0xAED67B0: DeviceManager::initialize() (in /usr/lib/libffado.so.2.999.0)
   by 0xAEDCC4A: ffado_streaming_init (in /usr/lib/libffado.so.2.999.0)
   by 0x431A65: ffado_open (ffado_output_plugin.c:240)
   by 0x42CAB2: ao_plugin_open (output_plugin.h:196)
   by 0x42D384: ao_open (output_thread.c:164)
   by 0x42E269: audio_output_task (output_thread.c:549)
   by 0x7A40783: g_thread_create_proxy (gthread.c:1893)
   by 0xB4748B9: start_thread (pthread_create.c:300)
   by 0xCACC02C: clone (clone.S:112)

Conditional jump or move depends on uninitialised value(s)
   at 0xAEEB96F: CycleTimerHelper::Execute() (in /usr/lib/libffado.so.2.999.0)
   by 0xAF15829: Util::PosixThread::ThreadHandler(void*) (in 
/usr/lib/libffado.so.2.999.0)
   by 0xB4748B9: start_thread (pthread_create.c:300)
   by 0xCACC02C: clone (clone.S:112)
 Uninitialised value was created by a heap allocation
   at 0x4C24DFA: operator 

Bug#601665: libva1: Please package 1.0.5. Needed for acceleration on Intel platform.

2010-10-28 Thread valette
Package: libva1
Version: 1.0.4-1
Severity: wishlist


The recommended Intel version is 1.0.5.

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.36 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=fr_FR.UTF8, LC_CTYPE=fr_FR.UTF8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libva1 depends on:
ii  libc6 2.11.2-6   Embedded GNU C Library: Shared lib

libva1 recommends no packages.

libva1 suggests no packages.

-- no debconf information





___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Bug#601652: marked as done (need to delete cache or libffado2 fails)

2010-10-28 Thread Debian Bug Tracking System
Your message dated Thu, 28 Oct 2010 10:58:22 +0200
with message-id 20101028085821.gq14...@ltw.loris.tv
and subject line Re: Bug#601652: need to delete cache or libffado2 fails
has caused the Debian Bug report #601652,
regarding need to delete cache or libffado2 fails
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
601652: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=601652
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libffado2
Version: 2.0.1+svn1856-5
Severity: important

The attached program fails when the libffado2 cache exists
(~/.ffado/cache).  It spills the following error message in
ffado_streaming_start():

libiec61883 warning: iec61883_cmp_create_p2p_output: Failed to set the oPCR[0] 
plug for node 0.
ERROR: messagebuffer not initialized: 1248856282860: Error 
(ieee1394service.cpp)[1413] allocateIsoChannelCMP: Could not do CMP from 
FFC0:00 to FFC1:-1
ERROR: messagebuffer not initialized: 1248856282871: Error (avc_avdevice.cpp)[ 
816] startStreamByIndex: Could not allocate ISO channel for SP 0
ERROR: messagebuffer not initialized: 1248856282877: Warning 
(devicemanager.cpp)[ 863] startStreamingOnDevice: Could not start stream 0 of 
device 0x464300
ERROR: messagebuffer not initialized: 1248856282884: Warning 
(devicemanager.cpp)[ 900] startStreaming: Could not start streaming on device 
0x464300!
ERROR: messagebuffer not initialized: 1248856282890: Fatal (ffado.cpp)[ 211] 
ffado_streaming_start: Could not start the streaming system

Deleting the cache (rm -r ~/.ffado/cache) will resolve the issue.

As far as I can see, there is no option to disable the cache.  A
shared library writing to the user's home directory is not exactly
good programming style anyway.

Severity important because it renders the library useless, unless you
delete the cache each time before you run a libffado2 application.


---End Message---
---BeginMessage---
On Thu, Oct 28, 2010 at 09:07:06AM +0200, Max Kellermann wrote:

 The attached program fails when the libffado2 cache exists
 (~/.ffado/cache).  It spills the following error message in

You'd be the first who experiences such a problem.

 ERROR: messagebuffer not initialized: 1248856282871: Error
 (avc_avdevice.cpp)[ 816] startStreamByIndex: Could not allocate ISO
 channel for SP 0

Looks like your device got locked by a previous run. You need to
power-cycle it or run ffado-test BusReset.


Note that FFADO can be pretty picky about the components involved.
Firstly, it's advisable to run it on Linux 2.6.36 when using the new
Juju firewire stack (or stick to the old ieee1394 stack).

Second, the Firewire controller in use is important:

   http://subversion.ffado.org/wiki/HostControllers

Also the version in Debian is outdated, you clearly want to use FFADO
svn trunk. We're in freeze and I've already discussed it with the
release team, there's no chance to update anymore.


With regard to all your other bugreports: we more or less know the game.
There's probably no use in filing more bug reports against Debian, you
better instantly go upstream, there's a developer mailinglist:

   https://lists.sourceforge.net/lists/listinfo/ffado-devel


Last but not least: I'm not entirely convinced about writing a
player-specific output plugin for hardware-specific devices. This should
all be abstracted via some common layer, and the preferred way of
running FFADO at the moment is via jackd and then to bridge with
pulseaudio-module-jack to consumer-level applications like mpd.

Given that mpd already has a jack output plugin, there's even no need
for pulseaudio.


Note that there is some work to move FFADO into the kernel, at least the
streaming processors. It will then be exposed as an ALSA device.


HTH

-- 
mail: a...@thur.de  http://adi.thur.de  PGP/GPG: key via keyserver

---End Message---
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Bug#601657: marked as done (libffado2 thread crashes with assertion failure)

2010-10-28 Thread Debian Bug Tracking System
Your message dated Thu, 28 Oct 2010 11:08:19 +0200
with message-id 20101028090819.gr14...@ltw.loris.tv
and subject line Re: Bug#601657: libffado2 thread crashes with assertion failure
has caused the Debian Bug report #601657,
regarding libffado2 thread crashes with assertion failure
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
601657: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=601657
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libffado2   
Version: 2.0.1+svn1856-5
   
Severity: serious

The attached test program can trigger a (timing?) bug in libffado2,
which causes an assertion failure (i.e. crash of the whole
application).
#include libffado/ffado.h
#include stdbool.h
#include string.h
#include assert.h
#include stdio.h

enum {
MAX_STREAMS = 16,
PERIOD_SIZE = 1024,
NB_BUFFERS = 3,
};

static float buffer[PERIOD_SIZE];

static bool
configure_stream(ffado_device_t *dev, int number)
{
return ffado_streaming_set_playback_stream_buffer(dev, number, (char *)buffer) == 0 
ffado_streaming_playback_stream_onoff(dev, number, 1) == 0;
}

int main(int argc, char **argv) {
ffado_device_t *dev;

ffado_device_info_t device_info;
memset(device_info, 0, sizeof(device_info));
ffado_options_t options;
memset(options, 0, sizeof(options));
options.sample_rate = 44100;
options.period_size = PERIOD_SIZE;
options.nb_buffers = NB_BUFFERS;
options.verbose = 4;

dev = ffado_streaming_init(device_info, options);
assert(dev != NULL);

ffado_streaming_set_audio_datatype(dev, ffado_audio_datatype_float);

int num_streams = ffado_streaming_get_nb_playback_streams(dev);
assert(num_streams  0);

int streams[MAX_STREAMS], configured_streams = 0;
for (int i = 0; i  num_streams; ++i) {
if (configured_streams = 2)
break;

char name[256];
ffado_streaming_get_playback_stream_name(dev, i, name,
 sizeof(name) - 1);

ffado_streaming_stream_type type =
ffado_streaming_get_playback_stream_type(dev, i);
if (type != ffado_stream_type_audio)
continue;

printf(stream %d name='%s'\n, i, name);

streams[configured_streams++] = i;
configure_stream(dev, i);
}

if (ffado_streaming_prepare(dev) != 0) {
fprintf(stderr, ffado_streaming_prepare() failed\n);
return 1;
}

if (ffado_streaming_start(dev) != 0) {
fprintf(stderr, ffado_streaming_start() failed\n);
return 1;
}

getchar();

return 0;
}
Cannot create thread 1 Operation not permitted
ERROR: messagebuffer not initialized: 1250338856552:  (ffado.cpp)[  92] 
ffado_streaming_init: libffado 2.999.0- built Oct 16 2010 22:29:48
ERROR: messagebuffer not initialized: 1250338856611: Warning (ffado.cpp)[ 
121] ffado_streaming_init: Realtime scheduling is not enabled. This will cause 
significant reliability issues.
ERROR: messagebuffer not initialized: 1250339089620: Debug 
(devicemanager.cpp)[ 358] discover: Starting discovery...
ERROR: messagebuffer not initialized: 1250339197751: Debug (Configuration.cpp)[ 
163] showSetting:   Group: (null)
ERROR: messagebuffer not initialized: 1250339197771: Debug (Configuration.cpp)[ 
185] showSetting: vendorid = 3436 (0x0D6C)
ERROR: messagebuffer not initialized: 125033919: Debug (Configuration.cpp)[ 
185] showSetting: modelid = 65634 (0x00010062)
ERROR: messagebuffer not initialized: 1250339197783: Debug (Configuration.cpp)[ 
209] showSetting: vendorname = M-Audio
ERROR: messagebuffer not initialized: 1250339197787: Debug (Configuration.cpp)[ 
209] showSetting: modelname = FW Solo
ERROR: messagebuffer not initialized: 1250339197791: Debug (Configuration.cpp)[ 
185] showSetting: driver = 1 (0x0001)
ERROR: messagebuffer not initialized: 1250339197796: Debug (Configuration.cpp)[ 
185] showSetting: xmit_max_cycles_early_transmit = 4 (0x0004)
ERROR: messagebuffer not initialized: 1250339197885: Debug (devicemanager.cpp)[ 
620] discover: driver found for device 0
ERROR: messagebuffer not initialized: 1250339218779: Debug 
(bebob_avdevice.cpp)[ 734] loadFromCache: filename 
/home/max/.ffado/cache/000d6c0b0076ee12/006001040403.xml
ERROR: messagebuffer not initialized: 1250339224945: Debug 
(serialize_libxml.cpp)[ 230] checkVersion: Cache version: 2.999.0-, expected: 
2.999.0-.

Bug#601659: Double free bug in libffado2

2010-10-28 Thread Adrian Knoth
severity 601659 normal
forwarded 601659 http://subversion.ffado.org/ticket/306
thanks

 While trying to write a ffado output plugin, MPD crashed with the
 following double free bug (backtrace shows it's inside libraw1394, but
 my guess is that libffado calls libraw1394 with an invalid pointer):

I bet it happens upon termination. That's

   http://subversion.ffado.org/ticket/306

and is something weird on the new Juju firewire stack. It won't happen
on the old ieee1394.

We know it since Linux-2.6.32-rcX, when we were first able to run FFADO
on the new stack.

I've spent many hours trying to find the culprit, and so did two kernel
firewire developers and one FFADO dev.

I bet it's a race condition that could be fixed with a lock.


If you like to debug this issue, many FFADO users would be glad. ;)


Cheerio

-- 
mail: a...@thur.de  http://adi.thur.de  PGP/GPG: key via keyserver



___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Processed: Re: Bug#601659: Double free bug in libffado2

2010-10-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 601659 normal
Bug #601659 [libffado2] Double free bug in libffado2
Severity set to 'normal' from 'serious'

 forwarded 601659 http://subversion.ffado.org/ticket/306
Bug #601659 [libffado2] Double free bug in libffado2
Set Bug forwarded-to-address to 'http://subversion.ffado.org/ticket/306'.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
601659: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=601659
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Re: [SCM] gpac packaging branch, master, updated. debian/0.4.5-0.3ubuntu6-10-gd82a40b

2010-10-28 Thread Reinhard Tartler
On Di, Mai 04, 2010 at 06:36:20 (CEST), ceros-gu...@users.alioth.debian.org 
wrote:

 The following commit has been merged in the master branch:
 commit 5e80fd9045ea31f2c2108bd390de5a0788485630
 Author: Andres Mejia mcita...@gmail.com
 Date:   Tue May 4 00:23:50 2010 -0400

 Create package for modules.

 diff --git a/debian/control b/debian/control
 index a57815a..2b324c8 100644
 --- a/debian/control
 +++ b/debian/control
 @@ -50,3 +50,14 @@ Description: multimedia framework based on the MPEG-4 
 Systems standard
   MPEG-4 Reference software is indeed a very large piece of software,
   designed to verify the standard rather than provide a small,
   production-stable software.
 +
 +Package: gpac-modules
 +Architecture: any
 +Depends: ${shlibs:Depends}, ${misc:Depends}
 +Description: multimedia framework based on the MPEG-4 Systems standard
 + The main development goal is to provide a clean (a.k.a. readable by as many
 + people as possible), small and flexible alternative to the MPEG-4 Systems
 + reference software (known as IM1 and distributed in ISO/IEC 14496-5). The
 + MPEG-4 Reference software is indeed a very large piece of software,
 + designed to verify the standard rather than provide a small,
 + production-stable software.
 diff --git a/debian/gpac-modules.install b/debian/gpac-modules.install
 new file mode 100644
 index 000..caf071a
 --- /dev/null
 +++ b/debian/gpac-modules.install
 @@ -0,0 +1 @@
 +usr/lib/gpac

Can you please elaborate why an extra package? what are these modules
used for and they just be included in the libgpac0.4.5 package?

-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Re: [SCM] gpac packaging branch, master, updated. debian/0.4.5-0.3ubuntu6-10-gd82a40b

2010-10-28 Thread Reinhard Tartler
On Do, Okt 28, 2010 at 11:46:47 (CEST), Reinhard Tartler wrote:

 On Di, Mai 04, 2010 at 06:36:20 (CEST), ceros-gu...@users.alioth.debian.org 
 wrote:

 The following commit has been merged in the master branch:
 commit 5e80fd9045ea31f2c2108bd390de5a0788485630
 Author: Andres Mejia mcita...@gmail.com
 Date:   Tue May 4 00:23:50 2010 -0400

 Create package for modules.

 diff --git a/debian/control b/debian/control
 index a57815a..2b324c8 100644
 --- a/debian/control
 +++ b/debian/control
 @@ -50,3 +50,14 @@ Description: multimedia framework based on the MPEG-4 
 Systems standard
   MPEG-4 Reference software is indeed a very large piece of software,
   designed to verify the standard rather than provide a small,
   production-stable software.
 +
 +Package: gpac-modules
 +Architecture: any
 +Depends: ${shlibs:Depends}, ${misc:Depends}
 +Description: multimedia framework based on the MPEG-4 Systems standard
 + The main development goal is to provide a clean (a.k.a. readable by as many
 + people as possible), small and flexible alternative to the MPEG-4 Systems
 + reference software (known as IM1 and distributed in ISO/IEC 14496-5). The
 + MPEG-4 Reference software is indeed a very large piece of software,
 + designed to verify the standard rather than provide a small,
 + production-stable software.
 diff --git a/debian/gpac-modules.install b/debian/gpac-modules.install
 new file mode 100644
 index 000..caf071a
 --- /dev/null
 +++ b/debian/gpac-modules.install
 @@ -0,0 +1 @@
 +usr/lib/gpac

 Can you please elaborate why an extra package? what are these modules
 used for and they just be included in the libgpac0.4.5 package?

Upon further investigation it turns out that these modules are already
included in the 'gpac' package.

Andres, I guess we can safely revert this commit. OK?



-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Bug#601657: libffado2 thread crashes with assertion failure

2010-10-28 Thread Max Kellermann
reopen 601657
thanks

On 2010/10/28 11:08, Adrian Knoth a...@drcomp.erfurt.thur.de wrote:
 On Thu, Oct 28, 2010 at 09:31:48AM +0200, Max Kellermann wrote:
 
  The attached test program can trigger a (timing?) bug in libffado2,
 
 Welcome to userlevel device drivers. For some reasons, the packets were
 not delivered or received in time.
 
 Might be a combination of period-size (lower is sometimes better),
 firewire controllers and so on.
 
 As always, svn trunk might have a fix if it's really a device specific
 error, i.e. misunderstanding of the samplerate in use.
 
  ERROR: messagebuffer not initialized: 1250338856611: Warning
  (ffado.cpp)[ 121] ffado_streaming_init: Realtime scheduling is not
  enabled. This will cause significant reliability issues.
 
 You're running it without realtime priorities? Now I see why you get
 the timing issues mentioned above.

You seem to be misunderstanding the problem here.  This is not about a
buffer xrun because the application didn't submit enough PCM samples
in time; this is about a crash due to an assertion failure, i.e. a bug
in libffado2.

Please do not close this bug report until there is a new Debian
revision which does not crash (or until there is evidence that my test
program is bugged, indirectly causing the crash).

Max



___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Processed: Re: Bug#601657: libffado2 thread crashes with assertion failure

2010-10-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reopen 601657
Bug #601657 {Done: Adrian Knoth a...@drcomp.erfurt.thur.de} [libffado2] 
libffado2 thread crashes with assertion failure
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
601657: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=601657
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Processed: severity of 601657 is normal

2010-10-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 601657 normal
Bug #601657 [libffado2] libffado2 thread crashes with assertion failure
Severity set to 'normal' from 'serious'

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
601657: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=601657
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Espero que a sua comunicação urgente.

2010-10-28 Thread Mr.Soumano Traore


Da mesa de Mr.Soumano Traore,

O auditor sênior responsável

UNIDADE REMESSA EXTERNA,

BANK OF AFRICA (BOA).

Ouagadougou, Burkina Faso.



Caro amigo,



I presume que está tudo bem com você e sua família. Por favor, que isto não 
seja uma mensagem surpresa para você, porque eu tenho suas informações de 
contato de semana o diretório internacional há pouco antes de eu decidi entrar 
em contato com você sobre esta magnitude e operação lucrativa para o nosso 
presente e futuro da sobrevivência da vida.



Eu sou o auditor sênior encarregado da unidade de remessas estrangeiras do 
nosso banco e eu decidi entrar em contato com você para essa operação 
financeira no valor de (5,3milhões de dólares E.U.) para o nosso sucesso 
presente e futuro. Este é um fundo de abandonado que pertence a um dos nossos 
clientes estrangeiros, que morreu junto com toda a sua família através de 
acidente de avião há alguns anos.



Enquanto isso, fiquei muito feliz de vir em todo o arquivo morto, quando eu 
estava organizando o velho e abandonado do cliente em outros arquivos para 
assinar e encaminhar à administração do banco inteiro para um funcionário 
re-documentação e auditoria do ano.



Foi dito claramente nas nossas regras e regulamentos bancários estrangeiros que 
foi assinado legalmente que, se esse fundo não reclamados até o prazo de quatro 
anos, iniciado a partir da data em que o beneficiário morreu, o dinheiro será 
transferido para o Tesouro, fundos não reclamados no entanto, é não autorizadas 
pelas disposições que regem o nosso banco de um cidadão de Burkina Faso para 
fazer o pedido do fundo a menos que você é estrangeiro, não importa o país.



Assim, o pedido de você como um estrangeiro, é necessário solicitar o pedido e 
transferência do fundo de bom em sua conta bancária de confiança como o parente 
mais próximo do falecido. quando o fundo é transferido para sua

conta de 45% será para você em relação a toda a assistência para a sua 
transferência do fundo em sua conta e prestação de conta bancária em que o 
banco irá remeter o fundo, 50% serão para mim ser o pioneiro da empresa, 
enquanto o restante de 5% será compartilhado com organizações respeitáveis, 
como caridade e as casas miseráveis em torno de nós no mundo.



Se você estiver realmente certo da sua idoneidade, responsabilidade e 
confidencialidade sobre esta transação contato comigo e não aceita mudar a sua 
mente para enganar ou me decepcionar quando o fundo é transferido para sua 
conta. Assim que você responder, eu vou deixar você sabe o próximo passo e 
procedimento a seguir para concluir esta transação com êxito.



Espero que a sua comunicação urgente,



Atenciosamente,

Mr. Soumano Traore

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Bug#601659: Double free bug in libffado2

2010-10-28 Thread Max Kellermann
On 2010/10/28 11:18, Adrian Knoth a...@drcomp.erfurt.thur.de wrote:
 I bet it happens upon termination. That's
 
http://subversion.ffado.org/ticket/306

Yes it looks similar, and actually I was able to reproduce the JACK
crash easily with MPD as a JACK client - after I closed qjackctl, JACK
also terminated the connection to MPD (why??), and shut itself down.
(Understand now why I would want to remove JACK from the equation?
It's yet another piece of software that can cause trouble.)

But this bug report was not upon termination.  MPD would have lived on
happily after, had it not been killed by libffado2.

 and is something weird on the new Juju firewire stack. It won't happen
 on the old ieee1394.
 
 We know it since Linux-2.6.32-rcX, when we were first able to run FFADO
 on the new stack.

Which means this applies to the official Debian kernel.  Not good.

 I've spent many hours trying to find the culprit, and so did two kernel
 firewire developers and one FFADO dev.
 
 I bet it's a race condition that could be fixed with a lock.
 
 
 If you like to debug this issue, many FFADO users would be glad. ;)

I would be glad if I didn't have to clean up yet another crappy
library.  And ffado doesn't exactly like a fun project - over complex
(creates 8 threads! wtf?), bad documentation, badly designed API, full
of invalid memory accesses and uninitialized variables (according to
valgrind).



___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Bug#601657: libffado2 thread crashes with assertion failure

2010-10-28 Thread Adrian Knoth
On Thu, Oct 28, 2010 at 11:41:50AM +0200, Max Kellermann wrote:

   ERROR: messagebuffer not initialized: 1250338856611: Warning
   (ffado.cpp)[ 121] ffado_streaming_init: Realtime scheduling is not
   enabled. This will cause significant reliability issues.
  
  You're running it without realtime priorities? Now I see why you get
  the timing issues mentioned above.
 
 You seem to be misunderstanding the problem here.  This is not about a
 buffer xrun because the application didn't submit enough PCM samples
 in time; this is about a crash due to an assertion failure, i.e. a bug
 in libffado2.

Oh, you're right. At least something is wrong. It's also throwing this
failed assertion on my known-to-be-working setup.

Given that jackd can successfully use libffado, it might be still your
program.

I'm CCing ffado-devel.

When I compare

   
http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;filename=test.c;att=1;bug=601657

to the code in jackd1's drivers/firewire/ directory or to ffado's
tests/streaming/teststreaming3.cpp, I wonder if you might simply miss to
fill the buffers or to iterate/wait for FFADO.

For ffado-devel: log is at

   
http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;filename=log;att=2;bug=601657



-- 
mail: a...@thur.de  http://adi.thur.de  PGP/GPG: key via keyserver



___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Bug#601657: libffado2 thread crashes with assertion failure

2010-10-28 Thread Max Kellermann
On 2010/10/28 13:44, Adrian Knoth a...@drcomp.erfurt.thur.de wrote:
 When I compare
 

 http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;filename=test.c;att=1;bug=601657
 
 to the code in jackd1's drivers/firewire/ directory or to ffado's
 tests/streaming/teststreaming3.cpp, I wonder if you might simply miss to
 fill the buffers or to iterate/wait for FFADO.

It is intentionally missing.  It is a timing related bug, it triggers
only under certain circumstances.  It seems this happens when the
application does not fill the buffers quickly enough after
initialization.  I simulated that by blocking the main thread forever
with getchar().  This triggers the crash reliably.

While setting realtime may (or may not) reduce the chances to hit that
bug, it is not a solution.

When libffado2 notices that a buffer hasn't been filled in time, I
would expect it to report that error to the application, instead of
crashing.

Max



___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Processed (with 66 errors): Please change me email address

2010-10-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 submitter 341249 javibarr...@gmail.com
Failed to set submitter on 341249: Not altering archived bugs; see unarchive.

 submitter 368069 javibarr...@gmail.com
Failed to set submitter on 368069: Not altering archived bugs; see unarchive.

 submitter 374675 javibarr...@gmail.com
Failed to set submitter on 374675: Not altering archived bugs; see unarchive.

 submitter 374962 javibarr...@gmail.com
Failed to set submitter on 374962: Not altering archived bugs; see unarchive.

 submitter 383461 javibarr...@gmail.com
Failed to set submitter on 383461: Not altering archived bugs; see unarchive.

 submitter 400722 javibarr...@gmail.com
Failed to set submitter on 400722: Not altering archived bugs; see unarchive.

 submitter 403185 javibarr...@gmail.com
Failed to set submitter on 403185: Not altering archived bugs; see unarchive.

 submitter 408379 javibarr...@gmail.com
Bug #408379 [apt-file] apt-file download to download a file from archive
Changed Bug submitter to 'javibarr...@gmail.com' from 'Javier Barroso 
javier.barr...@isotrol.com'
 submitter 409278 javibarr...@gmail.com
Failed to set submitter on 409278: Not altering archived bugs; see unarchive.

 submitter 422882 javibarr...@gmail.com
Bug #422882 [openssl] openssl: mistake in note on x509v3_config manual page
Changed Bug submitter to 'javibarr...@gmail.com' from 'Javier Barroso 
javier.barr...@isotrol.com'
 submitter 428036 javibarr...@gmail.com
Failed to set submitter on 428036: Not altering archived bugs; see unarchive.

 submitter 469639 javibarr...@gmail.com
Failed to set submitter on 469639: Not altering archived bugs; see unarchive.

 submitter 472505 javibarr...@gmail.com
Failed to set submitter on 472505: Not altering archived bugs; see unarchive.

 submitter 473570 javibarr...@gmail.com
Failed to set submitter on 473570: Not altering archived bugs; see unarchive.

 submitter 477351 javibarr...@gmail.com
Bug #477351 [rsyslog] rsyslog: outchannel doesn't get variable from template
Changed Bug submitter to 'javibarr...@gmail.com' from 'root 
javier.barr...@isotrol.com'
 submitter 481075 javibarr...@gmail.com
Bug #481075 [openoffice.org-calc] /usr/bin/oocalc: CTRL-F12 doesn't ungroup 
groups of files
Changed Bug submitter to 'javibarr...@gmail.com' from 'Javier Barroso 
javier.barr...@isotrol.com'
 submitter 481458 javibarr...@gmail.com
Failed to set submitter on 481458: Not altering archived bugs; see unarchive.

 submitter 486845 javibarr...@gmail.com
Failed to set submitter on 486845: Not altering archived bugs; see unarchive.

 submitter 498611 javibarr...@gmail.com
Failed to set submitter on 498611: Not altering archived bugs; see unarchive.

 submitter 498811 javibarr...@gmail.com
Failed to set submitter on 498811: Not altering archived bugs; see unarchive.

 submitter 499811 javibarr...@gmail.com
Failed to set submitter on 499811: Not altering archived bugs; see unarchive.

 submitter 505575 javibarr...@gmail.com
Bug #505575 [phpldapadmin] phpldapadmin: http auth is not working. Recursive 
redirections
Changed Bug submitter to 'javibarr...@gmail.com' from 'Javier Barroso 
javier.barr...@isotrol.com'
 submitter 505578 javibarr...@gmail.com
Bug #505578 [phpldapadmin] phpldapadmin wants to remove password and I didn't 
change it
Changed Bug submitter to 'javibarr...@gmail.com' from 'Javier Barroso 
javier.barr...@isotrol.com'
 submitter 506076 javibarr...@gmail.com
Failed to set submitter on 506076: Not altering archived bugs; see unarchive.

 submitter 506437 javibarr...@gmail.com
Failed to set submitter on 506437: Not altering archived bugs; see unarchive.

 submitter 507023 javibarr...@gmail.com
Failed to set submitter on 507023: Not altering archived bugs; see unarchive.

 submitter 508536 javibarr...@gmail.com
Failed to set submitter on 508536: Not altering archived bugs; see unarchive.

 submitter 508896 javibarr...@gmail.com
Bug #508896 [acl] acl: INSTALL file should be available in the doc
Changed Bug submitter to 'javibarr...@gmail.com' from 'Javier Barroso 
javier.barr...@isotrol.com'
 submitter 508991 javibarr...@gmail.com
Failed to set submitter on 508991: Not altering archived bugs; see unarchive.

 submitter 511080 javibarr...@gmail.com
Bug #511080 [otrs2] Illegal mix of collations
Bug #572515 [otrs2] otrs2: Crash OTRS-Update form 2.3.2-2 to 2.4.7-2
Bug #573951 [otrs2] Illegal mix of collations
Changed Bug submitter to 'javibarr...@gmail.com' from 
'ingo.rauschenb...@hu-berlin.de'
 submitter 514625 javibarr...@gmail.com
Failed to set submitter on 514625: Not altering archived bugs; see unarchive.

 submitter 515975 javibarr...@gmail.com
Failed to set submitter on 515975: Not altering archived bugs; see unarchive.

 submitter 516296 javibarr...@gmail.com
Failed to set submitter on 516296: Not altering archived bugs; see unarchive.

 submitter 518144 javibarr...@gmail.com
Failed to set submitter on 518144: Not altering archived bugs; see unarchive.

 submitter 518318 

Processed: severity of 601663 is normal

2010-10-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 601663 normal
Bug #601663 [libffado2] libffado2 reads from freed memory
Severity set to 'normal' from 'serious'

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
601663: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=601663
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Processed: bug 601660 is forwarded to http://subversion.ffado.org/ticket/312

2010-10-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forwarded 601660 http://subversion.ffado.org/ticket/312
Bug #601660 [libffado2] Error [..] (Success)
Set Bug forwarded-to-address to 'http://subversion.ffado.org/ticket/312'.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
601660: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=601660
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Bug#601660: Patch upstream

2010-10-28 Thread Adrian Knoth
Hi!


Can you try the proposed patch in

   http://subversion.ffado.org/attachment/ticket/312/error-success.patch

if it fixes your problem? I don't know how to trigger the bug, but I
guess you do. ;)


TIA

-- 
mail: a...@thur.de  http://adi.thur.de  PGP/GPG: key via keyserver



___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Re: [SCM] pd-iemnet/master: watch file sourceforge

2010-10-28 Thread Hans-Christoph Steiner


On Oct 28, 2010, at 3:29 AM, IOhannes m zmoelnig wrote:


On 2010-10-27 21:31, Reinhard Tartler wrote:
On Mi, Okt 20, 2010 at 11:04:28 (CEST), zmoelnig-gu...@users.alioth.debian.org 
 wrote:



The following commit has been merged in the master branch:
commit 615adb5ed59a6770c787fb4492a1ec1b84a41724
Author: IOhannes m zmölnig zmoel...@iem.at
Date:   Wed Oct 20 11:03:43 2010 +0200

   watch file sourceforge

diff --git a/debian/watch b/debian/watch
new file mode 100644
index 000..2689757
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://sf.net/pure-data/iemnet-(.*)\.tar\.gz


siret...@debian:~/packages/pd-iemnet/pd-iemnet$ uscan --verbose
-- Scanning for watchfiles in .
-- Found watchfile in ./debian
-- In debian/watch, processing watchfile line:
  http://sf.net/pure-data/iemnet-(.*)\.tar\.gz
uscan warning: In debian/watch,
 no matching hrefs for watch line
 http://sf.net/pure-data/iemnet-(.*)\.tar\.gz
-- Scan finished

siret...@debian:~/packages/pd-iemnet/pd-iemnet$ more debian/watch
# Run the uscan command to check for upstream updates and more.
version=3
http://sf.net/pure-data/iemnet-(.*)\.tar\.gz

Seems this watchfile is wrong or broken. Uh?




well, not really.
the problem seems to be that the package still does not show up in the
redirector. when i wrote the watch-file i was pretty confident, that  
it
would show up within the next hours, and now i find myself puzzled  
that

it did not.

probably i misunderstood, how the redirector works (i thought it would
be enough to just upload a file to sourceforge, and eventually it  
would

show up automatically in the redirector). any clues?

fgamsdr
IOhannes



I have debian/watch files in all my packages, and I've posted the  
tarballs in the same place as I think you have.  Check for typos? Or  
maybe it takes a few days for soruceforge to sync everything up?


.hc




I spent 33 years and four months in active military service and during  
that period I spent most of my time as a high class muscle man for Big  
Business, for Wall Street and the bankers.  - General Smedley Butler




___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


bristol 0.60.5-3 MIGRATED to testing

2010-10-28 Thread Debian testing watch
FYI: The status of the bristol source package
in Debian's testing distribution has changed.

  Previous version: 0.60.5-2
  Current version:  0.60.5-3

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Re: next, two small, weird-ish packages: puredata-import and pd-libdir

2010-10-28 Thread Felipe Sateler
On Mon, Oct 25, 2010 at 01:28, Hans-Christoph Steiner h...@at.or.at wrote:

 Hey all,

 So the plan for puredata-dev has been pushed off until Pure Data 0.43 is
 released and packaged, so I think that the approach used in these two
 packages is going to be necessary for the timebeing.

 Can anyone upload these two?  They are needed as deps for the rest of the
 packages that I have ITP'ed.

Why did you put the DMUA field before starting your DM application? I
will upload them, although with the field removed until you get your
DM status approved.

And another question, why does puredata-import depends on puredata (
0.43)? I just uploaded pd-libdir for now.


-- 

Saludos,
Felipe Sateler

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Processing of pd-libdir_1.9-1_amd64.changes

2010-10-28 Thread Debian FTP Masters
pd-libdir_1.9-1_amd64.changes uploaded successfully to localhost
along with the files:
  pd-libdir_1.9-1.dsc
  pd-libdir_1.9.orig.tar.gz
  pd-libdir_1.9-1.debian.tar.gz
  pd-libdir_1.9-1_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


pd-libdir_1.9-1_amd64.changes is NEW

2010-10-28 Thread Debian FTP Masters
(new) pd-libdir_1.9-1.debian.tar.gz optional sound
(new) pd-libdir_1.9-1.dsc optional sound
(new) pd-libdir_1.9-1_amd64.deb optional sound
provides support for the libdir library format for Pd
 The 'libdir' loader is a Pure Data loader which supports the libdir
 library format.  The libdir library format aims to be a common
 library format for Pd which works with objects written in any
 language, including Pd. This library format was designed to be easy
 to create, install, and use. It should work when installed into the
 global path (i.e. pd/extra) or when copied locally into a project
 folder. It should work with objects written in any supported language
 (i.e. binaries, .pd, and the various loaders like pdlua and tclpd).
(new) pd-libdir_1.9.orig.tar.gz optional sound
Changes: pd-libdir (1.9-1) unstable; urgency=low
 .
  [ Hans-Christoph Steiner ]
  * Initial release (Closes: #595972)
 .
  [ Felipe Sateler ]
  * Include the whole BSD text in the copyright file


Override entries for your package:

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 595972 


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


Ofertas Print Line 28/10/2010

2010-10-28 Thread Print Line International









































































































































































































































































































































































































No est conseguindo
visualizar este e-mail? Clique aqui para visualizar no browser







 



























OS
MELHORES PRODUTOS PELOS MELHORES PREOSCONFIRA NOSSAS
OFERTAS

















Monitor LCD Samsung
20" SyncMaster B2030N
Monitor
LED LCD LG 18.5 Polegadas - E1950T
HD Samsung
SATA II - 500 GB - Cache 16 MB - 5400 RPM - HD502HI 


R$
399,00
R$
474,50
R$
135,00





















HD Seagate
SATA II Barracuda 500GB 7200.12 RPM 16MB Cache - ST3500418AS

Pen Drive Data
Traveler 101Kingston 04 GB - Azul
Roteador Wireless
Tenda W311R+ 150 Mbps


R$
143,00
R$
28,90
R$
78,00




 

















Processador AMD Athlon II X2 245 - Dual Core2.9 GHz
Box
Processador AMD Phenom II X4 Black Edition - Quad Core 3.2 GHz
Box
Memria Kingston 2 GB - DDR3 - 1333 MHz 


R$
159,90
R$
405,00
R$
78,00




 

















Memria Markvision 2 GB - DDR3 - 1333 MHz
Mini PC
Intel Dual CoreAtom 330 - 1.6 GHzHD 320GB -
2GB
Mouse Microsoft -
Wireless Mobile Mouse 3500 Cinza 


R$
110,00
R$
999,00
R$
107,90




 











Remover | Entre em contato conosco
atravs do e-mail i...@printline.com.brPRINT LINE INTERNATIONAL COMRCIO LTDAAv. Rio Branco 181/3204 - Centro20040-918 - Rio de Janeiro -
RJ
Tel - (21) 4063-4454 




















___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers