Your message dated Mon, 01 Nov 2010 10:32:26 +0000
with message-id <e1pcrgg-00020f...@franck.debian.org>
and subject line Bug#601657: fixed in libffado 2.0.1+svn1856-6
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
--- Begin Message ---
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: [31mWarning (ffado.cpp)[
121] ffado_streaming_init: Realtime scheduling is not enabled. This will cause
significant reliability issues.
[0mERROR: 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 (0x00000D6C)
ERROR: messagebuffer not initialized: 1250339197777: 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 (0x00000001)
ERROR: messagebuffer not initialized: 1250339197796: Debug (Configuration.cpp)[
185] showSetting: xmit_max_cycles_early_transmit = 4 (0x00000004)
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/0000006001040403.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 initialized: 1250339451888: Debug (avc_subunit.cpp)[
148] discoverConnections: Discovering connections...
ERROR: messagebuffer not initialized: 1250339451891: Debug (avc_subunit.cpp)[
148] discoverConnections: Discovering connections...
ERROR: messagebuffer not initialized: 1250339451904: Debug
(bebob_avdevice.cpp)[ 758] loadFromCache: could create valid bebob driver from
/home/max/.ffado/cache/000d6c0b0076ee12/0000006001040403.xml
ERROR: messagebuffer not initialized: 1250339453437: Debug (devicemanager.cpp)[
657] discover: discovery of node 0 on port 0 done...
ERROR: messagebuffer not initialized: 1250339453448: Debug (devicemanager.cpp)[
665] discover: Discovery finished...
ERROR: messagebuffer not initialized: 1250339453453: Debug
(devicemanager.cpp)[1252] showDeviceInfo: ===== Device Manager =====
ERROR: messagebuffer not initialized: 1250339453458: Debug (Element.cpp)[ 121]
show: Element DeviceManager
ERROR: messagebuffer not initialized: 1250339453461: Debug
(devicemanager.cpp)[1260] showDeviceInfo: --- IEEE1394 Service 0 ---
ERROR: messagebuffer not initialized: Iso handler info:
ERROR: messagebuffer not initialized: Dumping IsoHandlerManager Stream handler
information...
ERROR: messagebuffer not initialized: State: 2
ERROR: messagebuffer not initialized: 1250339453478: Debug
(devicemanager.cpp)[1270] showDeviceInfo: --- Device 0 ---
ERROR: messagebuffer not initialized: 1250339453482: Debug
(bebob_avdevice.cpp)[ 480] showDevice: Device is a BeBoB device
ERROR: messagebuffer not initialized: 1250339453488: Debug (ffadodevice.cpp)[
214] showDevice: Attached to port.......: 0 (/dev/fw1)
ERROR: messagebuffer not initialized: 1250339453492: Debug (ffadodevice.cpp)[
215] showDevice: Node...................: 0
ERROR: messagebuffer not initialized: 1250339453496: Debug (ffadodevice.cpp)[
217] showDevice: Vendor name............: M-Audio
ERROR: messagebuffer not initialized: 1250339453500: Debug (ffadodevice.cpp)[
219] showDevice: Model name.............: FW Solo
ERROR: messagebuffer not initialized: 1250339453504: Debug (ffadodevice.cpp)[
221] showDevice: GUID...................: 000d6c0b0076ee12
ERROR: messagebuffer not initialized: 1250339453509: Debug (ffadodevice.cpp)[
226] showDevice: Assigned ID....: 000d6c0b0076ee12
ERROR: messagebuffer not initialized: 1250339453516: Debug
(devicemanager.cpp)[1273] showDeviceInfo: Clock sync sources:
ERROR: messagebuffer not initialized: 1250339453526: Debug (avc_unit.cpp)[ 815]
getActiveSyncInfo: Active Sync Connection: Internal (CSP), 'MSU Synch Output'
-> 'MSU Synch Input'
ERROR: messagebuffer not initialized: 1250339453532: Debug (avc_unit.cpp)[ 815]
getActiveSyncInfo: Active Sync Connection: Internal (CSP), 'MSU Synch Output'
-> 'MSU Synch Input'
ERROR: messagebuffer not initialized: 1250339453542: Debug (avc_unit.cpp)[ 815]
getActiveSyncInfo: Active Sync Connection: Internal (CSP), 'MSU Synch Output'
-> 'MSU Synch Input'
ERROR: messagebuffer not initialized: 1250339453548: Debug
(devicemanager.cpp)[1282] showDeviceInfo: Type: Compound Syt Match, Id: 34,
Valid: 1, Active: 0, Locked 1, Slipping: 0, Description: Syt Match
ERROR: messagebuffer not initialized: 1250339453552: Debug
(devicemanager.cpp)[1282] showDeviceInfo: Type: Internal , Id: 31,
Valid: 1, Active: 1, Locked 1, Slipping: 0, Description: Internal (CSP)
ERROR: messagebuffer not initialized: 1250339453557: Debug
(devicemanager.cpp)[1282] showDeviceInfo: Type: WordClock , Id: 39,
Valid: 1, Active: 0, Locked 1, Slipping: 0, Description: Ext Spdif Input
ERROR: messagebuffer not initialized: 1250339487137: Debug (Configuration.cpp)[
163] showSetting: Group: (null)
ERROR: messagebuffer not initialized: 1250339487148: Debug (Configuration.cpp)[
185] showSetting: vendorid = 3436 (0x00000D6C)
ERROR: messagebuffer not initialized: 1250339487153: Debug (Configuration.cpp)[
185] showSetting: modelid = 65634 (0x00010062)
ERROR: messagebuffer not initialized: 1250339487158: Debug (Configuration.cpp)[
209] showSetting: vendorname = M-Audio
ERROR: messagebuffer not initialized: 1250339487162: Debug (Configuration.cpp)[
209] showSetting: modelname = FW Solo
ERROR: messagebuffer not initialized: 1250339487167: Debug (Configuration.cpp)[
185] showSetting: driver = 1 (0x00000001)
ERROR: messagebuffer not initialized: 1250339487171: Debug (Configuration.cpp)[
185] showSetting: xmit_max_cycles_early_transmit = 4 (0x00000004)
ERROR: messagebuffer not initialized: 1250339487203: Debug (Configuration.cpp)[
163] showSetting: Group: (null)
ERROR: messagebuffer not initialized: 1250339487210: Debug (Configuration.cpp)[
185] showSetting: vendorid = 3436 (0x00000D6C)
ERROR: messagebuffer not initialized: 1250339487214: Debug (Configuration.cpp)[
185] showSetting: modelid = 65634 (0x00010062)
ERROR: messagebuffer not initialized: 1250339487219: Debug (Configuration.cpp)[
209] showSetting: vendorname = M-Audio
ERROR: messagebuffer not initialized: 1250339487222: Debug (Configuration.cpp)[
209] showSetting: modelname = FW Solo
ERROR: messagebuffer not initialized: 1250339487226: Debug (Configuration.cpp)[
185] showSetting: driver = 1 (0x00000001)
ERROR: messagebuffer not initialized: 1250339487230: Debug (Configuration.cpp)[
185] showSetting: xmit_max_cycles_early_transmit = 4 (0x00000004)
ERROR: messagebuffer not initialized: 1250339487260: Debug (Configuration.cpp)[
163] showSetting: Group: (null)
ERROR: messagebuffer not initialized: 1250339487266: Debug (Configuration.cpp)[
185] showSetting: vendorid = 3436 (0x00000D6C)
ERROR: messagebuffer not initialized: 1250339487270: Debug (Configuration.cpp)[
185] showSetting: modelid = 65634 (0x00010062)
ERROR: messagebuffer not initialized: 1250339487275: Debug (Configuration.cpp)[
209] showSetting: vendorname = M-Audio
ERROR: messagebuffer not initialized: 1250339487279: Debug (Configuration.cpp)[
209] showSetting: modelname = FW Solo
ERROR: messagebuffer not initialized: 1250339487283: Debug (Configuration.cpp)[
185] showSetting: driver = 1 (0x00000001)
ERROR: messagebuffer not initialized: 1250339487286: Debug (Configuration.cpp)[
185] showSetting: xmit_max_cycles_early_transmit = 4 (0x00000004)
ERROR: messagebuffer not initialized: 1250339487310: Debug (Configuration.cpp)[
163] showSetting: Group: (null)
ERROR: messagebuffer not initialized: 1250339487315: Debug (Configuration.cpp)[
185] showSetting: vendorid = 3436 (0x00000D6C)
ERROR: messagebuffer not initialized: 1250339487320: Debug (Configuration.cpp)[
185] showSetting: modelid = 65634 (0x00010062)
ERROR: messagebuffer not initialized: 1250339487324: Debug (Configuration.cpp)[
209] showSetting: vendorname = M-Audio
ERROR: messagebuffer not initialized: 1250339487328: Debug (Configuration.cpp)[
209] showSetting: modelname = FW Solo
ERROR: messagebuffer not initialized: 1250339487331: Debug (Configuration.cpp)[
185] showSetting: driver = 1 (0x00000001)
ERROR: messagebuffer not initialized: 1250339487335: Debug (Configuration.cpp)[
185] showSetting: xmit_max_cycles_early_transmit = 4 (0x00000004)
ERROR: messagebuffer not initialized: 1250339487364: Debug (Configuration.cpp)[
163] showSetting: Group: (null)
ERROR: messagebuffer not initialized: 1250339487370: Debug (Configuration.cpp)[
185] showSetting: vendorid = 3436 (0x00000D6C)
ERROR: messagebuffer not initialized: 1250339487374: Debug (Configuration.cpp)[
185] showSetting: modelid = 65634 (0x00010062)
ERROR: messagebuffer not initialized: 1250339487379: Debug (Configuration.cpp)[
209] showSetting: vendorname = M-Audio
ERROR: messagebuffer not initialized: 1250339487383: Debug (Configuration.cpp)[
209] showSetting: modelname = FW Solo
ERROR: messagebuffer not initialized: 1250339487386: Debug (Configuration.cpp)[
185] showSetting: driver = 1 (0x00000001)
ERROR: messagebuffer not initialized: 1250339487390: Debug (Configuration.cpp)[
185] showSetting: xmit_max_cycles_early_transmit = 4 (0x00000004)
ERROR: messagebuffer not initialized: Handler type................: Receive
ERROR: messagebuffer not initialized: Port, Channel...............: 0, 0
ERROR: messagebuffer not initialized: Buffer, MaxPacketSize, IRQ..: 128,
200, 64
ERROR: messagebuffer not initialized: Last cycle, dropped.........: -1,
0, 0
ERROR: messagebuffer not initialized: Handler type................: Transmit
ERROR: messagebuffer not initialized: Port, Channel...............: 0, 1
ERROR: messagebuffer not initialized: Buffer, MaxPacketSize, IRQ..: 128,
144, 64
ERROR: messagebuffer not initialized: Speed ..................: 2
ERROR: messagebuffer not initialized: Min ISOXMT bufferfill : 7999
ERROR: messagebuffer not initialized: Last cycle, dropped.........: -1,
0, 0
ERROR: messagebuffer not initialized: 1250340177875: [31mWarning
(StreamProcessor.cpp)[ 707] getPacket: Instantanous samplerate more than 1% off
nominal. [Nom fs: 44100.000000, Instantanous fs: 22051.144011, diff:
22048.855989 ( 0.499974)]
[0mERROR: messagebuffer not initialized: 1250340746132: [31mWarning
(TimestampedBuffer.cpp)[ 507] writeFrames: ringbuffer full, 128, 127
[0mERROR: messagebuffer not initialized: 1250340746144: Debug
(StreamProcessor.cpp)[ 497] putPacket: processPacketData xrun
ERROR: messagebuffer not initialized: 1250340754077: [31mWarning
(StreamProcessor.cpp)[ 389] putPacket: Instantanous samplerate more than 1% off
nominal. [Nom fs: 44100.000000, Instantanous fs: 1913.217792, diff:
42186.782208 ( 0.956616)]
[0mERROR: messagebuffer not initialized: 1250340754102: [31mWarning
(TimestampedBuffer.cpp)[1053] incrementFrameCounter: (0x7fc19002dba0)
difference rather large (+): diff= 102800.632, max= 1536.000,
1404404981.000, 1404302180.368
[0mtest: src/libutil/TimestampedBuffer.cpp:1029: void
Util::TimestampedBuffer::incrementFrameCounter(unsigned int,
ffado_timestamp_t): Assertion `nbframes == m_update_period' failed.
stream 0 name='000d6c0b0076ee12_SpdifOut L'
stream 1 name='000d6c0b0076ee12_SpdifOut R'
--- End Message ---
--- Begin Message ---
Source: libffado
Source-Version: 2.0.1+svn1856-6
We believe that the bug you reported is fixed in the latest version of
libffado, which is due to be installed in the Debian FTP archive:
ffado-dbus-server_2.0.1+svn1856-6_i386.deb
to main/libf/libffado/ffado-dbus-server_2.0.1+svn1856-6_i386.deb
ffado-mixer-qt4_2.0.1+svn1856-6_all.deb
to main/libf/libffado/ffado-mixer-qt4_2.0.1+svn1856-6_all.deb
ffado-tools_2.0.1+svn1856-6_i386.deb
to main/libf/libffado/ffado-tools_2.0.1+svn1856-6_i386.deb
libffado-dev_2.0.1+svn1856-6_i386.deb
to main/libf/libffado/libffado-dev_2.0.1+svn1856-6_i386.deb
libffado2_2.0.1+svn1856-6_i386.deb
to main/libf/libffado/libffado2_2.0.1+svn1856-6_i386.deb
libffado_2.0.1+svn1856-6.debian.tar.gz
to main/libf/libffado/libffado_2.0.1+svn1856-6.debian.tar.gz
libffado_2.0.1+svn1856-6.dsc
to main/libf/libffado/libffado_2.0.1+svn1856-6.dsc
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to 601...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Adrian Knoth <a...@drcomp.erfurt.thur.de> (supplier of updated libffado package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Mon, 01 Nov 2010 10:11:27 +0100
Source: libffado
Binary: libffado-dev libffado2 ffado-tools ffado-dbus-server ffado-mixer-qt4
Architecture: source all i386
Version: 2.0.1+svn1856-6
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers
<pkg-multimedia-maintainers@lists.alioth.debian.org>
Changed-By: Adrian Knoth <a...@drcomp.erfurt.thur.de>
Description:
ffado-dbus-server - FFADO D-Bus server
ffado-mixer-qt4 - FFADO D-Bus mixer applets (QT4)
ffado-tools - FFADO debugging and firmware tools
libffado-dev - FFADO API - development files
libffado2 - FFADO API
Closes: 601657
Changes:
libffado (2.0.1+svn1856-6) unstable; urgency=low
.
* Provide new command ffado-debug.
* Include ffado-debug and the corresponding debug-enabled lib in
libffado2.
* Compile libffado2 w/ and w/o debugging code. (Closes: #601657)
Checksums-Sha1:
98cfed98807900876f0b82802d1cccc99f217485 2426 libffado_2.0.1+svn1856-6.dsc
ecbc7f902c8cd0fadeca8350535890e60f867e1b 7977
libffado_2.0.1+svn1856-6.debian.tar.gz
500d96c1d5d89df4493ce1275187e702136d96b1 103652
ffado-mixer-qt4_2.0.1+svn1856-6_all.deb
e4d2e719d69fbc4019503030520fbd4580876ca7 17928
libffado-dev_2.0.1+svn1856-6_i386.deb
2db3d104182e985ba25a37d4aeadc223f55435d3 1462034
libffado2_2.0.1+svn1856-6_i386.deb
b3f9ebd16115e6bb041811a6c7f5b221624adae4 59298
ffado-tools_2.0.1+svn1856-6_i386.deb
6224e5c26a2bdf38a2bbbc72700cddca860e5258 109920
ffado-dbus-server_2.0.1+svn1856-6_i386.deb
Checksums-Sha256:
7ee26cd23ba95945da27156de213cfbbce98c4e7924cc2592d6967e31c9fe2fc 2426
libffado_2.0.1+svn1856-6.dsc
1f55f77d1654429fd8cb458bf67d8c739c699b2270dc29537a98f7e66484bf62 7977
libffado_2.0.1+svn1856-6.debian.tar.gz
71ead4a62e18afa48a1ad8b0e0623384bd29b358dbbcfc41d0f5259a645f1b88 103652
ffado-mixer-qt4_2.0.1+svn1856-6_all.deb
3d80fbaa7ae6b32ca8550a54e1dcc62d600fae1008e8c101bf485aefa2f63b83 17928
libffado-dev_2.0.1+svn1856-6_i386.deb
76f445d92b816764b4bb368e1def46666cb0d04511cb1f36f80d82ac8beb2263 1462034
libffado2_2.0.1+svn1856-6_i386.deb
a114b94e65bcf24fa2a4917493ef4057f6b80d2a96b7fb2bc98e4f2e4945764f 59298
ffado-tools_2.0.1+svn1856-6_i386.deb
69d0a833f46146aaef890e07c4c340bc37f6ef924d94b05838e7a34b37e601a0 109920
ffado-dbus-server_2.0.1+svn1856-6_i386.deb
Files:
2f5699bb7744b8531b4dc314d639fb66 2426 libs optional
libffado_2.0.1+svn1856-6.dsc
e986e3b2a3090a15a4162672aedacdee 7977 libs optional
libffado_2.0.1+svn1856-6.debian.tar.gz
470d78d9113fc336b88eb3576795dee3 103652 sound optional
ffado-mixer-qt4_2.0.1+svn1856-6_all.deb
3423128451e00bccca37ca4bd4bd0f95 17928 libdevel optional
libffado-dev_2.0.1+svn1856-6_i386.deb
b01d257a95ee8a5ad8ec5cfc34ba740b 1462034 libs optional
libffado2_2.0.1+svn1856-6_i386.deb
7da0c8aff9ca549fc10a238fb4c2a211 59298 sound optional
ffado-tools_2.0.1+svn1856-6_i386.deb
2638312fe5dbb1b767eda80837df6ed1 109920 sound optional
ffado-dbus-server_2.0.1+svn1856-6_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iQIcBAEBCAAGBQJMzpH4AAoJEI8ytEIvUhB/dMIQAIfFDXRKEs+I+pYZK67ajhX/
l0TRpe+XIQPQYAL2clE5eFoM+Lwg1a2X0gAB0g6oVrnG7LQXa+xnMZpbx9iOlzVO
cwKxeGAqXcbIJ/nvUD1QubTosAiG/ZdJol8BmeHZcROqCPQMuiKa3ykAEME2XWSY
okwynHTr0IYJPsvnT+smLshz4NqEMwEzsf92DcsjIZHhuJQJWGj474rDb1MF0Pl2
k/iK04gjm+TtYBCsommDd0iSe7QVAqOoBALhAhwZDUcKPNiGJ7T7mGWviuk2ykUq
5Oq+I3F3tivZJaMlejl90lFj9LRgcnHYijF8UhudqBlUxfBEJNCyyxI8cnUuY+v7
RkiM1gLJV24qJFgArcYb+59p/nA5yUkRlETvuh0JmCxycpoIPh6vemPvOeSfuswv
7rTjkyGLkvgI4EJGBmnmOlXmi8cTVRQiMN9X0PgfYhl6+ni+f6OECEBLEizh5RGT
ATWSuBgmSShc2ZJOOJBSRjbhyg8hEH5V6VrZRMs6p2ZE1HBwCibDt2gRPPwJPIKF
8RVT1dICgjIq91X4pvL26Gp+IQSelV15rreFCdSoVr4o4/TLmtGADcruj/H8SnoX
Zt9P/KOx0F3fe8mJDRXpsvqaubEV/uhmO7inaNqNSl3Ps0/WyJO1DVK9lyoPVRyc
x28g7iOhwN71SqnRhBCx
=/4AU
-----END PGP SIGNATURE-----
--- End Message ---
_______________________________________________
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers