Bug#796201: Diable sid.so as a work-around

2015-08-22 Thread Michael Rasmussen
Doing this will make audacious start again:
sudo
mv /usr/lib/x86_64-linux-gnu/audacious/Input/sid.so 
/usr/lib/x86_64-linux-gnu/audacious/Input/sid.so.bak

-- 
Hilsen/Regards
Michael Rasmussen

Get my public GnuPG keys:
michael at rasmussen dot cc
http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0xD3C9A00E
mir at datanom dot net
http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0xE501F51C
mir at miras dot org
http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0xE3E80917
--
/usr/games/fortune -es says:
I can just see it now: nomination-terrorism ;-)
-- Manoj

haha!  i nominate manoj.
-- seeS


pgpeBfnf49DKZ.pgp
Description: OpenPGP digital signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#796238: libavcodec56: video players seg fault when using libavcodec for decoding video

2015-08-22 Thread Fabian Greffrath
Hi Andreas,

sorry for misspelling your name, I was really tired yesterday evening!

Am Freitag, den 21.08.2015, 22:17 +0200 schrieb Andreas Cadhalpun:
 Since we're using FFmpeg in stretch, these problems shouldn't
 happen anymore in the future (unless dmo starts using Libav).

this may be true. However, I think we should prevent our users from
installing mixtures of Debian's and dmo's packages. The trick is really
easy, it's either a modified dh_makeshlibs/dh_shlibdeps/dh_makeshlibs
sequence in debian/rules or a debian/shlibs.local file.

Cheers,

Fabian


signature.asc
Description: This is a digitally signed message part
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#796532: kodi: FTBFS on arm64

2015-08-22 Thread Edmund Grimley Evans
Source: kodi
Version: 15.1+dfsg1-2
Tags: patch

Thanks for sorting out the configuration on unknown architectures.

Here's a patch for arm64. You should probably reverse some of the
tests: test for Intel instead of listing all the non-Intel
architectures we can think of. But this patch did get it to build for
me on arm64.
diff -ru kodi-15.1+dfsg1.orig/xbmc/cores/DllLoader/DllLoader.h kodi-15.1+dfsg1/xbmc/cores/DllLoader/DllLoader.h
--- kodi-15.1+dfsg1.orig/xbmc/cores/DllLoader/DllLoader.h
+++ kodi-15.1+dfsg1/xbmc/cores/DllLoader/DllLoader.h
@@ -23,7 +23,7 @@
 #include coffldr.h
 #include LibraryLoader.h
 
-#if defined(__linux__)  !defined(__powerpc__)  !defined(__arm__)  !defined(__mips__)
+#if defined(__linux__)  !defined(__powerpc__)  !defined(__arm__)  !defined(__mips__)  !defined(__aarch64__)
 #define USE_LDT_KEEPER
 #include ldt_keeper.h
 #endif
diff -ru kodi-15.1+dfsg1.orig/xbmc/cores/DllLoader/ldt_keeper.c kodi-15.1+dfsg1/xbmc/cores/DllLoader/ldt_keeper.c
--- kodi-15.1+dfsg1.orig/xbmc/cores/DllLoader/ldt_keeper.c
+++ kodi-15.1+dfsg1/xbmc/cores/DllLoader/ldt_keeper.c
@@ -19,7 +19,7 @@
  */
 
 //#ifndef __powerpc__
-#if !defined(__powerpc__)  !defined(__ppc__)  !defined(__arm__)  !defined(__mips__)
+#if !defined(__powerpc__)  !defined(__ppc__)  !defined(__arm__)  !defined(__mips__)  !defined(__aarch64__)
 
 #include ldt_keeper.h
 
diff -ru kodi-15.1+dfsg1.orig/xbmc/cores/VideoRenderers/LinuxRendererGL.h kodi-15.1+dfsg1/xbmc/cores/VideoRenderers/LinuxRendererGL.h
--- kodi-15.1+dfsg1.orig/xbmc/cores/VideoRenderers/LinuxRendererGL.h
+++ kodi-15.1+dfsg1/xbmc/cores/VideoRenderers/LinuxRendererGL.h
@@ -323,7 +323,7 @@
 
 
 inline int NP2( unsigned x ) {
-#if defined(TARGET_POSIX)  !defined(__POWERPC__)  !defined(__PPC__)  !defined(__arm__)  !defined(__mips__)
+#if defined(TARGET_POSIX)  !defined(__POWERPC__)  !defined(__PPC__)  !defined(__arm__)  !defined(__mips__)  !defined(__aarch64__)
   // If there are any issues compiling this, just append a '  0'
   // to the above to make it '#if defined(TARGET_POSIX)  0'
 
diff -ru kodi-15.1+dfsg1.orig/xbmc/threads/Atomics.cpp kodi-15.1+dfsg1/xbmc/threads/Atomics.cpp
--- kodi-15.1+dfsg1.orig/xbmc/threads/Atomics.cpp
+++ kodi-15.1+dfsg1/xbmc/threads/Atomics.cpp
@@ -106,7 +106,7 @@
 ///
 long long cas2(volatile long long* pAddr, long long expectedVal, long long swapVal)
 {
-#if defined(__ppc__) || defined(__powerpc__) || defined(__arm__)// PowerPC and ARM
+#if defined(__ppc__) || defined(__powerpc__) || defined(__arm__) || defined(__aarch64__) // PowerPC and ARM
 // Not available/required
 // Hack to allow compilation
   throw cas2 is not implemented;
diff -ru kodi-15.1+dfsg1.orig/xbmc/utils/MathUtils.h kodi-15.1+dfsg1/xbmc/utils/MathUtils.h
--- kodi-15.1+dfsg1.orig/xbmc/utils/MathUtils.h
+++ kodi-15.1+dfsg1/xbmc/utils/MathUtils.h
@@ -35,7 +35,7 @@
 #if defined(__ppc__) || \
 defined(__powerpc__) || \
 defined(__mips__) || \
-defined(__arm__)
+defined(__arm__) || defined(__aarch64__)
   #define DISABLE_MATHUTILS_ASM_ROUND_INT
 #endif
 
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#796238: libavcodec56: video players seg fault when using libavcodec for decoding video

2015-08-22 Thread Andreas Cadhalpun
Hi Fabian,

On 22.08.2015 14:00, Fabian Greffrath wrote:
 sorry for misspelling your name, I was really tired yesterday evening!

No problem, such things can happen.

 Am Freitag, den 21.08.2015, 22:17 +0200 schrieb Andreas Cadhalpun:
 Since we're using FFmpeg in stretch, these problems shouldn't
 happen anymore in the future (unless dmo starts using Libav).
 
 this may be true. However, I think we should prevent our users from
 installing mixtures of Debian's and dmo's packages.

I don't see a point in doing this, when such mixtures just work.

 The trick is really
 easy, it's either a modified dh_makeshlibs/dh_shlibdeps/dh_makeshlibs
 sequence in debian/rules or a debian/shlibs.local file.

It would probably be simpler to add a 'Breaks: libavutilNN (= 9:0)'
to our libavutilNN, as dmo uses epoch 10.
But I don't understand why you want to prevent such mixtures.

Anyway, that will become only relevant, once we drop the '-ffmpeg'
suffix from the libraries, i.e. with the next SOVERSION bump in
FFmpeg 2.8.

Best regards,
Andreas

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


PARTNERSHIP BUSINESS WITH YOU IN YOUR COUNTRY.

2015-08-22 Thread ANN Hayford
Hello Friend,
As you read this, don't feel sorry for me, because it is the destiny
of everybody to die someday. I am Mrs. Ann Hayford.,a naturalized
Briton by birth and a
business merchant based in the United States. suffering from a long
term Esophageal Cancer.

It has defiled all forms of medical treatment, and right now I have
only about a few months to live, according to medical experts. I
regret that I have not
particularly lived my life so well, as I never really cared for
anyone, but my trade. Though I am very well to do, I was never open
handed; I was always hostile to
people and regarded them like they never had hopes of becoming as
successful as myself.

Now I know that there is a lot more to life than just prosperity. I
believe that when I am given a second chance to come to this world, I
would live my life a different way from how I have lived it. Now that
death is eminent, I have willed and given most of my belonging to
immediate and extended family members, as well as a few close friends.
I want God to be merciful to me and accept my soul. Hence I have
decided to support charity work. this is what i want to be remembered
for. So far, I have been able to reach out to a few charity
organizations in the Singapore, Algeria and Malaysia. Now that my
health has deteriorated so badly, I cannot do this myself anymore.

I once asked members of my family to aid me in giving of alms to those
organizations catering for the less privileged in America and
Pakistan; they refused and kept
the resources to themselves. Hence, I do not trust them anymore, as
they seem not to be contented with what I have given to them.

I sold all my remaining belongings and deposited all the sum that I
have in a safe keeping company abroad, The total amount is US$15.4M
deposited with a security Financial company in Lome Togo with a ware
house in Ghana.. I don't want a situation where this money will be
used in an ungodly manner, hence my bold decision to contact you, a
total stranger. Since my health is regressing by the minute, you will
have to tell me a little about yourself. why I have decided to contact
you is because I have no child or devoted relation who could reliably
execute my will,i only had an adopted child who is 16 yrs now.
With the information, I will make arrangement to prepare the
Authorization for you to get possession of the Deposit.
Until I hear from you, I pray that this letter bring you and your
family good tidings.All replies should be forwarded to My adopted son via his 
email andersonjimm...@yahoo.com
Sincerely,
Ann Hayford___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#796238: libavcodec56: video players seg fault when using libavcodec for decoding video

2015-08-22 Thread Fabian Greffrath
Am Samstag, den 22.08.2015, 14:38 +0200 schrieb Andreas Cadhalpun:
 I don't see a point in doing this, when such mixtures just work.

To preserve relevance of our bug reports. What e.g. if dmo's packages
introduce a bug that our version doesn't have? 

 - Fabian


signature.asc
Description: This is a digitally signed message part
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#796238: libavcodec56: video players seg fault when using libavcodec for decoding video

2015-08-22 Thread Andreas Cadhalpun
On 22.08.2015 15:12, Fabian Greffrath wrote:
 Am Samstag, den 22.08.2015, 14:38 +0200 schrieb Andreas Cadhalpun:
 I don't see a point in doing this, when such mixtures just work.
 
 To preserve relevance of our bug reports.

Maybe you have a point there, but I don't think it will change much
in that respect.

 What e.g. if dmo's packages introduce a bug that our version doesn't have?

Such a bug report would just get closed, which is probably less
maintenance burden than adapting the dependencies.

We can discuss this again, once such a bug has been filed.
(Currently, that's not possible, because the package names are different.)

Best regards,
Andreas

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


1 новоe соoбщение от пoльзoвателя Рада

2015-08-22 Thread Аношкина Рада
facеbook

Рада пишет:

Бинарные опционы, заработок не выходя из дома - только ленивый сегодня не 
зарабатывает на падении рубля!

Начать зарабатывать

Сообщение было отправлено на 
pkg-multimedia-maintainers@lists.alioth.debian.org. Если вы не хотите получать 
эти эл. письма от Facebook, либо если вы не хотите, чтобы ваш адрес 
использовался для создания рекомендаций друзей, пожалуйста, откажитесь от 
подписки.
Facebook, Inc., Attention: Department 815, PO Box 334365, Palo Alto, CA 23195
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Comments regarding pd-iemguts_0.1-1_amd64.changes

2015-08-22 Thread Thorsten Alteholz
Hi,

LICENSE.txt says it is GPL-2+ but the file header say it is only GPL-2.
Is this intentional?

 Thorsten


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


Re: Timestretching task, now Audio Utilities task

2015-08-22 Thread Felipe Sateler
On 22 August 2015 at 14:01, Ross Gammon r...@the-gammons.net wrote:
 Hi All,

 Previously, the timestretching blends task only had a few packages that
 fitted that small theme. Meanwhile there were loads of other audio
 utilities that were scattered around other tasks (like recording, mixing
 and players) and tending to add a lot of clutter.

 I have now widened the scope of the timestretching task so that it is
 about Audio Utilities (e.g. audio conversion, chopping, pitch shifting,
 tagging, silence detection etc.).

 http://blends.debian.org/multimedia/tasks/timestretching

 Take a look and let me know what you think. If there are no objections,
 I will rename the meta-package as well, ready for the next upload.

Looks good to me, much better than the single-purpose timestretch task.


-- 

Saludos,
Felipe Sateler

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


pd-hexloader_1.7-1_amd64.changes ACCEPTED into unstable, unstable

2015-08-22 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 17 Aug 2015 23:25:52 +0200
Source: pd-hexloader
Binary: pd-hexloader
Architecture: source amd64
Version: 1.7-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintainers@lists.alioth.debian.org
Changed-By: IOhannes m zmölnig (Debian/GNU) umlae...@debian.org
Description:
 pd-hexloader - enable Pd-objects with funny characters
Closes: 795896
Changes:
 pd-hexloader (1.7-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #795896)
Checksums-Sha1:
 2b9bdddaaab8cc4050eed86c977b275f6aaf973a 2030 pd-hexloader_1.7-1.dsc
 51a795e5eac8d8994aa647b513f6c5249ef6fd38 14593 pd-hexloader_1.7.orig.tar.gz
 1cf16d329d0fac255898f93112794a4b0296a385 2676 pd-hexloader_1.7-1.debian.tar.xz
 064c7ecad1e6a00f5d44e5c12ff5e95272f124fd 11738 pd-hexloader_1.7-1_amd64.deb
Checksums-Sha256:
 242c51629aff7ae4faf154e5b0f5692087375c9625d408d775b624fb57a13ab9 2030 
pd-hexloader_1.7-1.dsc
 efbc8ae07967c7fe01605e232520ce68322d5a4587914af5c2db3aa2c6c3bae8 14593 
pd-hexloader_1.7.orig.tar.gz
 9da0cea49f8edffd95ec879e4b2ea1b33e568e321d57bce3a2d8c0d3ee146e75 2676 
pd-hexloader_1.7-1.debian.tar.xz
 a5fd929f4cac7b8e87cd984c9209b18ce61c3cd5d1638edabca18ed270901e6a 11738 
pd-hexloader_1.7-1_amd64.deb
Files:
 f809dba641a184e63d674cc576924315 2030 sound optional pd-hexloader_1.7-1.dsc
 54c547ee096e6435cea4c3307e617b17 14593 sound optional 
pd-hexloader_1.7.orig.tar.gz
 42863547c643932314c57b7e8cf9966b 2676 sound optional 
pd-hexloader_1.7-1.debian.tar.xz
 7aef560fb861a993cb77ae922f714bcc 11738 sound optional 
pd-hexloader_1.7-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJV0lH1AAoJELZQGcR/ejb45JkP/0lkU9M8ad8A2WvfUi/8cTC2
3V2/IUxCvJEShVBdWygue6zm/PlmkSKkSbjhpOs+JsV8yHYT8jnHwo9Sx3BDT9rE
Qkr4b3x0pUVk2RxqUVC8ailvmFl+LwIeM/qnyNn8ii/ditIbUpQr/ist+bqIhte6
rhLqaT/KukQdBHlwgsuadLlk6SY1mWCsM5fzvxi2kRUPgpaEM4gO7nq8vsgqEPD1
DBx8Qs8p5FtAkBlNsJiKKHWuZrqz2DvLrkivN+d6DQfZcjCyfTWpwlrKGZiJY7Qa
hx8kTo4yUSdi8n0I+9hkAq/VZRbUcvHiEfIR2E16zfLaJU18s+ZljF23344vxuWs
mplLFEeX6fDJ5vum/rXQXWusAHjVh+lAdqmKjpcgz6RhAqd/OlJNmR93/2QkgsRq
hVLKfd9FQz2+T0D6wxSQDQqaVuUINTsoPMcbKlmKBoY1dxcq88mXiNPVAvppuy5K
hfyAURGbtXMYO7gIiH1gGgAf1rgEqEeunVzizEAMO/QywCl/qYgY+0F3Dr+OVjd3
4BykAVhL6p9Sp5bKU3464zZp8H+3CJTEs7+NAbskz5aeGj7bvpxVpKF8WAOkUvBl
qokDRq1nkfnCesX2DwgXph+A5lqz3GFK/S60b8x+ZtcWN8YE+hz6YVY7hp1LgJ8y
BF0klsGcdlXqXq5N/sc7
=Tj7T
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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

pd-syslog_0.1-1_amd64.changes ACCEPTED into unstable, unstable

2015-08-22 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 17 Aug 2015 16:07:49 +0200
Source: pd-syslog
Binary: pd-syslog
Architecture: source amd64
Version: 0.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintainers@lists.alioth.debian.org
Changed-By: IOhannes m zmölnig (Debian/GNU) umlae...@debian.org
Description:
 pd-syslog  - syslog facilities for Pd
Closes: 603177
Changes:
 pd-syslog (0.1-1) unstable; urgency=low
 .
   * Initial release. (Closes: #603177)
Checksums-Sha1:
 6c1e721f37a5b712d230b40298ab43fef5a99a3f 1991 pd-syslog_0.1-1.dsc
 8b5919cef345e2c4802697540a9e3307bca76c7b 6867 pd-syslog_0.1.orig.tar.gz
 ccbb8cea25adadd82705dbfb5420affdf6991d1b 2184 pd-syslog_0.1-1.debian.tar.xz
 6b1e1cba1d63b5afdff0c587d6e64b9aeb689825 7254 pd-syslog_0.1-1_amd64.deb
Checksums-Sha256:
 8a6a933e0a39ae1763ed09fbbe68f14bf9a8c9457aee1d1e734ac2b1b278c319 1991 
pd-syslog_0.1-1.dsc
 7553a7c7601fca5488a0939d1784d0c0329515d454f9f4d02ba70b91f8319e09 6867 
pd-syslog_0.1.orig.tar.gz
 b1a51023dce5bda006287c9ee01ecc2590c5722ea452ac43d842bdbed703b23d 2184 
pd-syslog_0.1-1.debian.tar.xz
 90bffa5043ddd8f4ce0b6cea2b700de75a769f5686866eb5468abe8e6b64bfb4 7254 
pd-syslog_0.1-1_amd64.deb
Files:
 40a179b1af732f4686b9e13d626fca59 1991 sound optional pd-syslog_0.1-1.dsc
 60a23b3c575870b53b7b4624a6be0eca 6867 sound optional pd-syslog_0.1.orig.tar.gz
 f7cc90b034fb33428adca70b20bbb9cd 2184 sound optional 
pd-syslog_0.1-1.debian.tar.xz
 6bb69dd6ad58bf3b0fa0e2a6fa22e989 7254 sound optional pd-syslog_0.1-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJV0esQAAoJELZQGcR/ejb4HHkQAIyK6x3qYj+CANjUq+1Srl7P
1EkSv4RG7mZJQgJFPv7SfG0428/u8LlSQntiOTQFcAW3HcH59bKdu69NNzNf829J
KE/jDJoGKRYuywRr9onAVXmhJDy6ilo5XfZUoGL4/dldP+67rnFwrkHUOyc51sx5
7o9gQZdXSH4Fkkau/8na1FzCYzDhUUN6ANONsGBO42krj3BifaMDpt4KH4RAyR39
ueXA5ZGiYVucmG1lnJS2mya76njft+OahSz5FepWq0hHWC4JlAuLbp6q/zEPpwjX
CFpdWX5UBsOBYQ9yvZHeWp6oo9l4ZwAt8jfHHXSvdlS9FFQukSi+tsSTA7YpDomp
/iXqYpZlHHRm4Cf2evL5CJrybmj2Mmd4kiYa0+vjCAacawY+Zy6j21f4s798lFRh
fq8zSFd6+qDOuyBVZH/a2kriM+A8t9vDBg6+XWE9XkAnKM35hlL9zOvtqO2ozc3T
JZokYHXYTT1dgq6ZHBIckfGaNaR/cfR8Z0lk4goiNheYYbCVLuxs2h2dB+sIvtWa
uSgKM0QQ/BKZEqsaVBQNn0jF2gtJ/5kwH3UUbKKE+66LNXb37JDf4hO1tuS/VXTE
8naeNgYtBDF12QeluD/RxiRHuTIoF8LKGfkTkhznPljTlI2bHFo5ihG7/hDhvJ33
PSOzsG1w7gJsGAyZL35I
=4R0w
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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

Timestretching task, now Audio Utilities task

2015-08-22 Thread Ross Gammon
Hi All,

Previously, the timestretching blends task only had a few packages that
fitted that small theme. Meanwhile there were loads of other audio
utilities that were scattered around other tasks (like recording, mixing
and players) and tending to add a lot of clutter.

I have now widened the scope of the timestretching task so that it is
about Audio Utilities (e.g. audio conversion, chopping, pitch shifting,
tagging, silence detection etc.).

http://blends.debian.org/multimedia/tasks/timestretching

Take a look and let me know what you think. If there are no objections,
I will rename the meta-package as well, ready for the next upload.

Regards,

Ross



signature.asc
Description: OpenPGP digital signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#796238: libavcodec56: video players seg fault when using libavcodec for decoding video

2015-08-22 Thread Christian Hödl
Hi,

 now Im using the official debian packages and it works!

 I dont know how I managed to get so many inofficial packages installed...



 Thanks a lot for your help.



Best Regards,

 Christian

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

From western union pick up your $5,000 today

2015-08-22 Thread Mrs. Sandra Steve



This is to inform you that your $5.5 M USD will be send to you via western 
union money transfer. The total amount mentioned above is with western union 
out let and they will send the money via western union to you. Note they will 
be sending $5000 every day to you.

Therefore i want you to email Mr.Paul Frank the western union supervisor and 
ask him to give you the MTCN you need to pick up the first $5000 today.Call 
Mr.Paul Frank now and ask him to give you mtcn and every other information you 
need to pick up your $5000 today. Here is what he may require from you.

Your Receiver Name..
Tel;
Country..
Address.
PERMANENT ADDRESS:-...
text Question...
Answer...

Contact him now on this webmail address: 
(westernunion_moneytransfer2...@kimo.com
) +229 98088765. Contact person Mr.Paul Frank

Thanks,

Mrs. Sandra Steve

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


deken 0.1-1 MIGRATED to testing

2015-08-22 Thread Debian testing watch
FYI: The status of the deken source package
in Debian's testing distribution has changed.

  Previous version: (not in testing)
  Current version:  0.1-1

-- 
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 https://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/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


libpostproc REMOVED from testing

2015-08-22 Thread Debian testing watch
FYI: The status of the libpostproc source package
in Debian's testing distribution has changed.

  Previous version: 6:0.git20120821-4
  Current version:  (not in testing)
  Hint: Package not in unstable

The script that generates this mail tries to extract removal
reasons from comments in the britney hint files. Those comments
were not originally meant to be machine readable, so if the
reason for removing your package seems to be nonsense, it is
probably the reporting script that got confused. Please check the
actual hints file before you complain about meaningless removals.

-- 
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 https://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/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers