Bug#628201: audacity: FTBFS against Libav 0.7

2011-05-28 Thread Reinhard Tartler
Package: audacity
Version: 1.3.13-3
Severity: important

I've made a preliminary patch to allow building against Libav 0.7. It
requires a bit polishing and upstreaming!

Libav 0.7 is currently in experimental and awaits the release team's OK
to be uploaded to unstable.

-- System Information:
Debian Release: squeeze/sid
  APT prefers natty-updates
  APT policy: (500, 'natty-updates'), (500, 'natty-security'), (500, 'natty')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.38-8-generic (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
---BeginMessage---
Note: The change in src/export/ExportFFmpeg.cpp is incomplete, as it
disables functionality!

Index: audacity-1.3.13/src/FFmpeg.cpp
===
--- audacity-1.3.13.orig/src/FFmpeg.cpp 2011-05-28 10:31:34.000899463 +0200
+++ audacity-1.3.13/src/FFmpeg.cpp  2011-05-28 10:38:01.490923503 +0200
@@ -316,7 +316,7 @@
pd.buf_size = 0;
pd.buf = (unsigned char *) av_malloc(PROBE_BUF_MAX + AVPROBE_PADDING_SIZE);
if (pd.buf == NULL) {
-  err = AVERROR_NOMEM;
+  err = AVERROR(ENOMEM);
   goto fail;
}
 
@@ -381,7 +381,7 @@
 
// Didn't find a suitable format, so bail
if (!fmt) {
-  err = AVERROR_NOFMT;
+  err = AVERROR(EILSEQ);
   goto fail;
}
 
Index: audacity-1.3.13/src/export/ExportFFmpeg.cpp
===
--- audacity-1.3.13.orig/src/export/ExportFFmpeg.cpp2011-05-28 
10:41:06.200916455 +0200
+++ audacity-1.3.13/src/export/ExportFFmpeg.cpp 2011-05-28 10:45:40.950922555 
+0200
@@ -352,7 +352,7 @@
avcodec_get_context_defaults(mEncAudioCodecCtx);
 
mEncAudioCodecCtx-codec_id = ExportFFmpegOptions::fmts[mSubFormat].codecid;
-   mEncAudioCodecCtx-codec_type = CODEC_TYPE_AUDIO;
+   mEncAudioCodecCtx-codec_type = AVMEDIA_TYPE_AUDIO;
mEncAudioCodecCtx-codec_tag = av_codec_get_tag((const AVCodecTag 
**)mEncFormatCtx-oformat-codec_tag,mEncAudioCodecCtx-codec_id);
mSampleRate = (int)project-GetRate();
mEncAudioCodecCtx-global_quality = -9; //quality mode is off by 
default;
@@ -403,7 +403,8 @@
   mEncAudioCodecCtx-flags2 = 0;
   if (gPrefs-Read(wxT(/FileFormats/FFmpegBitReservoir),true)) 
mEncAudioCodecCtx-flags2 |= CODEC_FLAG2_BIT_RESERVOIR;
   if (gPrefs-Read(wxT(/FileFormats/FFmpegVariableBlockLen),true)) 
mEncAudioCodecCtx-flags2 |= 0x0004; //WMA only?
-  mEncAudioCodecCtx-use_lpc = 
gPrefs-Read(wxT(/FileFormats/FFmpegUseLPC),true);
+  // Fixme: This needs UI changes so that the user can select the number 
of passes and type!
+  // mEncAudioCodecCtx-use_lpc = 
gPrefs-Read(wxT(/FileFormats/FFmpegUseLPC),true);
   mEncAudioCodecCtx-compression_level = 
gPrefs-Read(wxT(/FileFormats/FFmpegCompLevel),-1);
   mEncAudioCodecCtx-frame_size = 
gPrefs-Read(wxT(/FileFormats/FFmpegFrameSize),(long)0);
   mEncAudioCodecCtx-lpc_coeff_precision = 
gPrefs-Read(wxT(/FileFormats/FFmpegLPCCoefPrec),(long)0);
@@ -569,7 +570,7 @@
   pkt.stream_index = mEncAudioStream-index;
   pkt.data = mEncAudioEncodedBuf;
   pkt.size = nEncodedBytes;
-  pkt.flags |= PKT_FLAG_KEY;
+  pkt.flags |= AV_PKT_FLAG_KEY;
 
   // Set presentation time of frame (currently in the codec's timebase) in 
the stream timebase.
   if(mEncAudioCodecCtx-coded_frame  mEncAudioCodecCtx-coded_frame-pts 
!= int64_t(AV_NOPTS_VALUE))
@@ -656,7 +657,7 @@
 
   pkt.stream_index = mEncAudioStream-index;
   pkt.data = mEncAudioEncodedBuf;
-  pkt.flags |= PKT_FLAG_KEY;
+  pkt.flags |= AV_PKT_FLAG_KEY;
 
   // Write the encoded audio frame to the output file.
   if ((ret = av_interleaved_write_frame(mEncFormatCtx, pkt)) != 0)
Index: audacity-1.3.13/src/export/ExportFFmpegDialogs.cpp
===
--- audacity-1.3.13.orig/src/export/ExportFFmpegDialogs.cpp 2011-05-28 
10:41:19.140922960 +0200
+++ audacity-1.3.13/src/export/ExportFFmpegDialogs.cpp  2011-05-28 
10:46:04.050922730 +0200
@@ -1288,7 +1288,7 @@
while ((codec = av_codec_next(codec)))
{
   // We're only interested in audio and only in encoders
-  if (codec-type == CODEC_TYPE_AUDIO  codec-encode)
+  if (codec-type == AVMEDIA_TYPE_AUDIO  codec-encode)
   {
  mCodecNames.Add(wxString::FromUTF8(codec-name));
  mCodecLongNames.Add(wxString::Format(wxT(%s - 
%s),mCodecNames.Last().c_str(),wxString::FromUTF8(codec-long_name).c_str()));
@@ -1528,7 +1528,7 @@
  // Find the codec, that is claimed to be compatible
  AVCodec *codec = avcodec_find_encoder(CompatibilityList[i].codec);
  // If it exists, is audio and has encoder
- if (codec != NULL  (codec-type == CODEC_TYPE_AUDIO)  
codec-encode)
+ if (codec != NULL  (codec-type == AVMEDIA_TYPE_AUDIO)  
codec-encode)
  {
 // If it was selected - 

Processed: tagging 625798

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

 tags 625798 + pending
Bug #625798 {Done: Alessio Treglia ales...@debian.org} [qtractor] qtractor: 
Track names with slashes cause MIDI recording to silently fail
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
625798: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=625798
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/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#628224: enabling hardware acceleration crashes vlc with segmentation fault

2011-05-28 Thread Timo Z.
Package: vlc
Version: 1.1.9-1+b1
Severity: normal
Tags: sid

Hi there,

vlc is working nicely, but when I enable the gpu acceleration vlc crashes with
every video. Music files are still fine.

My console says:

strahler@rincewind:~$ vlc
VLC media player 1.1.9 The Luggage (revision exported)
Blocked: call to unsetenv(DBUS_ACTIVATION_ADDRESS)
Blocked: call to unsetenv(DBUS_ACTIVATION_BUS_TYPE)
[0x86818fc] main libvlc: VLC wird mit dem Standard-Interface ausgefÃŒhrt.
Benutzen Sie 'cvlc', um VLC ohne Interface zu verwenden.
Blocked: call to setlocale(6, )
Blocked: call to setlocale(6, )
libva: libva version 0.32.0
Xlib:  extension XFree86-DRI missing on display :0.
libva: va_getDriverName() returns 0
Speicherzugriffsfehler


Speicherzugriffsfehler means segmentation fault.

As far as I can tell there's something wrong with the communication between vlc
and libva.

Cheers
Strahler



-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.39-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=de_DE@euro, LC_CTYPE=de_DE@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages vlc depends on:
ii  libaa1  1.4p5-38+b1  ascii art library
ii  libavcodec525:0.6.2-0.4  library to encode decode multimedi
ii  libavutil50 5:0.6.2-0.4  avutil shared libraries - runtime 
ii  libc6   2.13-4   Embedded GNU C Library: Shared lib
ii  libfreetype62.4.4-1  FreeType 2 font engine, shared lib
ii  libfribidi0 0.19.2-1 Free Implementation of the Unicode
ii  libgcc1 1:4.6.0-9GCC support library
ii  libgl1-mesa-glx [libgl1 7.10.2-2 free implementation of the OpenGL 
ii  libqtcore4  4:4.7.3-1Qt 4 core module
ii  libqtgui4   4:4.7.3-1Qt 4 GUI module
ii  libsdl-image1.2 1.2.10-2+b2  image loading library for Simple D
ii  libsdl1.2debian 1.2.14-6.4   Simple DirectMedia Layer
ii  libstdc++6  4.6.0-9  The GNU Standard C++ Library v3
ii  libtar0 1.2.11-8 C library for manipulating tar arc
ii  libva-x11-1 1.0.12-2 Video Acceleration (VA) API for Li
ii  libva1  1.0.12-2 Video Acceleration (VA) API for Li
ii  libvlccore4 1.1.9-1+b1   base library for VLC and its modul
ii  libx11-62:1.4.3-1X11 client-side library
ii  libx11-xcb1 2:1.4.3-1Xlib/XCB interface library
ii  libxcb-keysyms1 0.3.8-1  utility libraries for X C Binding 
ii  libxcb-randr0   1.7-2X C Binding, randr extension
ii  libxcb-shm0 1.7-2X C Binding, shm extension
ii  libxcb-xv0  1.7-2X C Binding, xv extension
ii  libxcb1 1.7-2X C Binding
ii  libxext62:1.3.0-1X11 miscellaneous extension librar
ii  libxpm4 1:3.5.9-1X11 pixmap library
ii  ttf-freefont20100919-1   Freefont Serif, Sans and Mono True
ii  vlc-nox 1.1.9-1+b1   multimedia player and streamer (wi
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages vlc recommends:
ii  vlc-plugin-notify1.1.9-1+b1  LibNotify plugin for VLC
ii  vlc-plugin-pulse 1.1.9-1+b1  PulseAudio plugin for VLC
ii  xdg-utils1.1.0~rc1-2 desktop integration utilities from

Versions of packages vlc suggests:
ii  mozilla-plugin-vlc1.1.9-1+b1 multimedia plugin for web browsers
pn  videolan-doc  none (no description available)

Versions of packages vlc-nox depends on:
ii  liba52-0.7.40.7.4-16 library for decoding ATSC A/52 str
ii  libasound2  1.0.23-4 shared library for ALSA applicatio
ii  libass4 0.9.11-1 library for SSA/ASS subtitles rend
ii  libavahi-client30.6.30-3 Avahi client library
ii  libavahi-common30.6.30-3 Avahi common library
ii  libavc1394-00.5.3-1+b2   control IEEE 1394 audio/video devi
ii  libavcodec525:0.6.2-0.4  library to encode decode multimedi
ii  libavformat52   5:0.6.2-0.4  ffmpeg file format library
ii  libavutil50 5:0.6.2-0.4  avutil shared libraries - runtime 
ii  libc6   2.13-4   Embedded GNU C Library: Shared lib
ii  libcaca00.99.beta17-1colour ASCII art library
ii  libcddb21.3.2-3  library to access CDDB data - runt
ii  libcdio10   0.81-4   library to read and control CD-ROM
ii  libdbus-1-3 1.4.8-3  simple interprocess messaging syst
ii  libdc1394-22

Processing of lilv_0.4.2-1_amd64.changes

2011-05-28 Thread Debian FTP Masters
lilv_0.4.2-1_amd64.changes uploaded successfully to localhost
along with the files:
  lilv_0.4.2-1.dsc
  lilv_0.4.2.orig.tar.bz2
  lilv_0.4.2-1.debian.tar.gz
  liblilv-0-0_0.4.2-1_amd64.deb
  python-lilv_0.4.2-1_amd64.deb
  liblilv-dev_0.4.2-1_all.deb
  liblilv-doc_0.4.2-1_all.deb
  lilv-utils_0.4.2-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/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#628315: kmetronome: FTBFS: index.docbook:8: warning: failed to load external entity dtd/kdex.dtd

2011-05-28 Thread Lucas Nussbaum
Source: kmetronome
Version: 0.10.0-2
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20110528 qa-ftbfs
Justification: FTBFS on amd64

Hi,

During a rebuild of all packages in sid, your package failed to build on
amd64.

Relevant part:
 make[3]: Entering directory 
 `/build/user-kmetronome_0.10.0-2-amd64-6ZIX2Y/kmetronome-0.10.0/obj-x86_64-linux-gnu'
 /usr/bin/cmake -E cmake_progress_report 
 /build/user-kmetronome_0.10.0-2-amd64-6ZIX2Y/kmetronome-0.10.0/obj-x86_64-linux-gnu/CMakeFiles
  
 [ 92%] Generating index.cache.bz2
 cd /build/user-kmetronome_0.10.0-2-amd64-6ZIX2Y/kmetronome-0.10.0/doc  
 /usr/bin/meinproc4 --check --cache 
 /build/user-kmetronome_0.10.0-2-amd64-6ZIX2Y/kmetronome-0.10.0/obj-x86_64-linux-gnu/doc/index.cache.bz2
  
 /build/user-kmetronome_0.10.0-2-amd64-6ZIX2Y/kmetronome-0.10.0/doc/index.docbook
 index.docbook:8: warning: failed to load external entity dtd/kdex.dtd
 ]
   ^
 index.docbook:10: parser error : Entity 'language' not defined
 book lang=language;
   ^
 index.docbook:10: element book: validity error : No declaration for attribute 
 lang of element book
 book lang=language;
^
 index.docbook:13: element application: validity error : No declaration for 
 element application
 titleThe kmetronome; Handbook/title
^
 index.docbook:13: element title: validity error : No declaration for element 
 title
 titleThe kmetronome; Handbook/title
 ^
 index.docbook:16: element firstname: validity error : No declaration for 
 element firstname
 firstnamePedro/firstname
 ^
 index.docbook:17: element othername: validity error : No declaration for 
 element othername
 othername/othername
^
 index.docbook:18: element surname: validity error : No declaration for 
 element surname
 surnameLopez#45;Cabanillas/surname
^
 index.docbook:20: element email: validity error : No declaration for element 
 email
 addressemailplcl#64;users#46;sourceforge#46;net/email/address
   ^
 index.docbook:20: element address: validity error : No declaration for 
 element address
 addressemailplcl#64;users#46;sourceforge#46;net/email/address
 ^
 index.docbook:21: element affiliation: validity error : No declaration for 
 element affiliation
 /affiliation
   ^
 index.docbook:22: element author: validity error : No declaration for element 
 author
 /author
  ^
 index.docbook:23: element authorgroup: validity error : No declaration for 
 element authorgroup
 /authorgroup
   ^
 index.docbook:26: element year: validity error : No declaration for element 
 year
 year2005-2010/year
   ^
 index.docbook:27: element holder: validity error : No declaration for element 
 holder
 holderPedro Lopez#45;Cabanillas/holder
^
 index.docbook:28: element copyright: validity error : No declaration for 
 element copyright
 /copyright
 ^
 index.docbook:34: parser error : Entity 'FDLNotice' not defined
 legalnoticeFDLNotice;/legalnotice
 ^
 index.docbook:34: element legalnotice: validity error : No declaration for 
 element legalnotice
 legalnoticeFDLNotice;/legalnotice
   ^
 index.docbook:43: element date: validity error : No declaration for element 
 date
 date2010-06-06/date
^
 index.docbook:44: element releaseinfo: validity error : No declaration for 
 element releaseinfo
 releaseinfo0#46;10#46;0/releaseinfo
  ^
 index.docbook:51: element para: validity error : No declaration for element 
 para
 /para
^
 index.docbook:52: element abstract: validity error : No declaration for 
 element abstract
 /abstract
^
 index.docbook:55: element keyword: validity error : No declaration for 
 element keyword
 keywordKDE/keyword
   ^
 index.docbook:56: element keyword: validity error : No declaration for 
 element keyword
 keywordKMetronome/keyword
  ^
 index.docbook:57: element keyword: validity error : No declaration for 
 element keyword
 keywordMetronome/keyword
 ^
 index.docbook:58: element keyword: validity error : No declaration for 
 element keyword
 keywordALSA/keyword
^
 index.docbook:59: element keyword: validity error : No declaration for 
 element keyword
 keywordMIDI/keyword
^
 index.docbook:60: element keywordset: validity error : No declaration for 
 element keywordset
 /keywordset
  ^
 index.docbook:62: element bookinfo: validity error : No declaration for 
 element bookinfo
 /bookinfo

Bug#628315: kmetronome: FTBFS: index.docbook:8: warning: failed to load external entity dtd/kdex.dtd

2011-05-28 Thread we we

-BEGIN PGP PUBLIC KEY BLOCK-
Version: PGPfreeware 5.5.2 for non-commercial use http://www.pgp.com

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
=GNXC
-END PGP PUBLIC KEY BLOCK-



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


audacity_1.3.13-4_amd64.changes ACCEPTED into unstable

2011-05-28 Thread Debian FTP Masters



Accepted:
audacity-data_1.3.13-4_all.deb
  to main/a/audacity/audacity-data_1.3.13-4_all.deb
audacity-dbg_1.3.13-4_amd64.deb
  to main/a/audacity/audacity-dbg_1.3.13-4_amd64.deb
audacity_1.3.13-4.debian.tar.gz
  to main/a/audacity/audacity_1.3.13-4.debian.tar.gz
audacity_1.3.13-4.dsc
  to main/a/audacity/audacity_1.3.13-4.dsc
audacity_1.3.13-4_amd64.deb
  to main/a/audacity/audacity_1.3.13-4_amd64.deb


Override entries for your package:
audacity-data_1.3.13-4_all.deb - optional sound
audacity-dbg_1.3.13-4_amd64.deb - extra debug
audacity_1.3.13-4.dsc - source sound
audacity_1.3.13-4_amd64.deb - optional sound

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


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


Bug#628138: marked as done (audacity: incomplete build-dependencies)

2011-05-28 Thread Debian Bug Tracking System
Your message dated Sat, 28 May 2011 16:32:24 +
with message-id e1qqmr6-0003y7...@franck.debian.org
and subject line Bug#628138: fixed in audacity 1.3.13-4
has caused the Debian Bug report #628138,
regarding audacity: incomplete build-dependencies
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.)


-- 
628138: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628138
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: audacity
Version: 1.3.13-3
Severity: normal

I am trying to backport audacity 1.3.13 to squeeze. Because of the
build-dependencies I also backported portaudio19, portsmf and
soundtouch.

Backporting audacity still failed with the following error message:

-
g++ -c -g -O2 -I../lib-src/portmixer/include -g -O2  -Wall
-I/usr/lib/wx/include/gtk2-unicode-release-2.8 -I/usr/include/wx-2.8
-D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -pthread
-I../lib-src/FileDialog
-I/mnt/sda8/backports/squeeze/src/audacity-1.3.13/lib-src/lib-widget-extra  
  -I../lib-src/sbsms/include -I/usr/include/soundtouch   
-I../lib-src/libnyquist-g -O2 -Wall -I/usr/include/portSMF   
-pthread -fno-strict-aliasing -I./include -I. -DLIBDIR=\/usr/lib\ 
-D__STDC_CONSTANT_MACROS   -Wall -pthread -I/usr/include/gtk-2.0 
-I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo 
-I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/pixman-1 
-I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include FileNames.cpp -o FileNames.o
FFmpeg.cpp: In function 'int64_t ufile_seek(URLContext*, int64_t, int)':
FFmpeg.cpp:225: error: 'AVSEEK_FORCE' was not declared in this scope
FFmpeg.cpp: In function 'int ufile_fopen_input(AVFormatContext**,
wxString)':
FFmpeg.cpp:366: error: 'match_ext' was not declared in this scope
make[2]: *** [FFmpeg.o] Error 1
make[2]: *** Waiting for unfinished jobs
make[2]: Leaving directory
`/mnt/sda8/backports/squeeze/src/audacity-1.3.13/src'
make[1]: *** [audacity] Error 2
make[1]: Leaving directory
`/mnt/sda8/backports/squeeze/src/audacity-1.3.13'
dh_auto_build: make -j3 returned exit code 2
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
debuild: fatal error at line 1325:
dpkg-buildpackage -rfakeroot -D -us -uc -j3 -nc failed
-

Looks like the build-dependencies of audacity need to be updated
regarding ffmpeg/libav.

Regards

Ronny Standtke



---End Message---
---BeginMessage---
Source: audacity
Source-Version: 1.3.13-4

We believe that the bug you reported is fixed in the latest version of
audacity, which is due to be installed in the Debian FTP archive:

audacity-data_1.3.13-4_all.deb
  to main/a/audacity/audacity-data_1.3.13-4_all.deb
audacity-dbg_1.3.13-4_amd64.deb
  to main/a/audacity/audacity-dbg_1.3.13-4_amd64.deb
audacity_1.3.13-4.debian.tar.gz
  to main/a/audacity/audacity_1.3.13-4.debian.tar.gz
audacity_1.3.13-4.dsc
  to main/a/audacity/audacity_1.3.13-4.dsc
audacity_1.3.13-4_amd64.deb
  to main/a/audacity/audacity_1.3.13-4_amd64.deb



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 628...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Benjamin Drung bdr...@debian.org (supplier of updated audacity 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: SHA512

Format: 1.8
Date: Sat, 28 May 2011 13:41:09 +0200
Source: audacity
Binary: audacity audacity-data audacity-dbg
Architecture: source amd64 all
Version: 1.3.13-4
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintainers@lists.alioth.debian.org
Changed-By: Benjamin Drung bdr...@debian.org
Description: 
 audacity   - fast, cross-platform audio editor
 audacity-data - fast, cross-platform audio editor (data)
 audacity-dbg - fast, cross-platform audio editor (debug)
Closes: 628138 628201
Changes: 
 audacity (1.3.13-4) unstable; urgency=low
 .
   * libav-0.7.patch: Unbreak compilation against libav 0.7.
 Thanks to Reinhard Tartler for the patch (Closes: #628201)
   * Bump required libav version to 0.6 (Closes: #628138)
Checksums-Sha1: 
 

Bug#628201: marked as done (audacity: FTBFS against Libav 0.7)

2011-05-28 Thread Debian Bug Tracking System
Your message dated Sat, 28 May 2011 16:32:24 +
with message-id e1qqmr6-0003yd...@franck.debian.org
and subject line Bug#628201: fixed in audacity 1.3.13-4
has caused the Debian Bug report #628201,
regarding audacity: FTBFS against Libav 0.7
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.)


-- 
628201: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628201
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: audacity
Version: 1.3.13-3
Severity: important

I've made a preliminary patch to allow building against Libav 0.7. It
requires a bit polishing and upstreaming!

Libav 0.7 is currently in experimental and awaits the release team's OK
to be uploaded to unstable.

-- System Information:
Debian Release: squeeze/sid
  APT prefers natty-updates
  APT policy: (500, 'natty-updates'), (500, 'natty-security'), (500, 'natty')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.38-8-generic (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
---BeginMessage---
Note: The change in src/export/ExportFFmpeg.cpp is incomplete, as it
disables functionality!

Index: audacity-1.3.13/src/FFmpeg.cpp
===
--- audacity-1.3.13.orig/src/FFmpeg.cpp 2011-05-28 10:31:34.000899463 +0200
+++ audacity-1.3.13/src/FFmpeg.cpp  2011-05-28 10:38:01.490923503 +0200
@@ -316,7 +316,7 @@
pd.buf_size = 0;
pd.buf = (unsigned char *) av_malloc(PROBE_BUF_MAX + AVPROBE_PADDING_SIZE);
if (pd.buf == NULL) {
-  err = AVERROR_NOMEM;
+  err = AVERROR(ENOMEM);
   goto fail;
}
 
@@ -381,7 +381,7 @@
 
// Didn't find a suitable format, so bail
if (!fmt) {
-  err = AVERROR_NOFMT;
+  err = AVERROR(EILSEQ);
   goto fail;
}
 
Index: audacity-1.3.13/src/export/ExportFFmpeg.cpp
===
--- audacity-1.3.13.orig/src/export/ExportFFmpeg.cpp2011-05-28 
10:41:06.200916455 +0200
+++ audacity-1.3.13/src/export/ExportFFmpeg.cpp 2011-05-28 10:45:40.950922555 
+0200
@@ -352,7 +352,7 @@
avcodec_get_context_defaults(mEncAudioCodecCtx);
 
mEncAudioCodecCtx-codec_id = ExportFFmpegOptions::fmts[mSubFormat].codecid;
-   mEncAudioCodecCtx-codec_type = CODEC_TYPE_AUDIO;
+   mEncAudioCodecCtx-codec_type = AVMEDIA_TYPE_AUDIO;
mEncAudioCodecCtx-codec_tag = av_codec_get_tag((const AVCodecTag 
**)mEncFormatCtx-oformat-codec_tag,mEncAudioCodecCtx-codec_id);
mSampleRate = (int)project-GetRate();
mEncAudioCodecCtx-global_quality = -9; //quality mode is off by 
default;
@@ -403,7 +403,8 @@
   mEncAudioCodecCtx-flags2 = 0;
   if (gPrefs-Read(wxT(/FileFormats/FFmpegBitReservoir),true)) 
mEncAudioCodecCtx-flags2 |= CODEC_FLAG2_BIT_RESERVOIR;
   if (gPrefs-Read(wxT(/FileFormats/FFmpegVariableBlockLen),true)) 
mEncAudioCodecCtx-flags2 |= 0x0004; //WMA only?
-  mEncAudioCodecCtx-use_lpc = 
gPrefs-Read(wxT(/FileFormats/FFmpegUseLPC),true);
+  // Fixme: This needs UI changes so that the user can select the number 
of passes and type!
+  // mEncAudioCodecCtx-use_lpc = 
gPrefs-Read(wxT(/FileFormats/FFmpegUseLPC),true);
   mEncAudioCodecCtx-compression_level = 
gPrefs-Read(wxT(/FileFormats/FFmpegCompLevel),-1);
   mEncAudioCodecCtx-frame_size = 
gPrefs-Read(wxT(/FileFormats/FFmpegFrameSize),(long)0);
   mEncAudioCodecCtx-lpc_coeff_precision = 
gPrefs-Read(wxT(/FileFormats/FFmpegLPCCoefPrec),(long)0);
@@ -569,7 +570,7 @@
   pkt.stream_index = mEncAudioStream-index;
   pkt.data = mEncAudioEncodedBuf;
   pkt.size = nEncodedBytes;
-  pkt.flags |= PKT_FLAG_KEY;
+  pkt.flags |= AV_PKT_FLAG_KEY;
 
   // Set presentation time of frame (currently in the codec's timebase) in 
the stream timebase.
   if(mEncAudioCodecCtx-coded_frame  mEncAudioCodecCtx-coded_frame-pts 
!= int64_t(AV_NOPTS_VALUE))
@@ -656,7 +657,7 @@
 
   pkt.stream_index = mEncAudioStream-index;
   pkt.data = mEncAudioEncodedBuf;
-  pkt.flags |= PKT_FLAG_KEY;
+  pkt.flags |= AV_PKT_FLAG_KEY;
 
   // Write the encoded audio frame to the output file.
   if ((ret = av_interleaved_write_frame(mEncFormatCtx, pkt)) != 0)
Index: audacity-1.3.13/src/export/ExportFFmpegDialogs.cpp
===
--- audacity-1.3.13.orig/src/export/ExportFFmpegDialogs.cpp 2011-05-28 
10:41:19.140922960 +0200
+++ audacity-1.3.13/src/export/ExportFFmpegDialogs.cpp  2011-05-28 
10:46:04.050922730 +0200
@@ -1288,7 +1288,7 @@
while ((codec = 

swh-lv2 1.0.15+20110312.git9c9935e-2 MIGRATED to testing

2011-05-28 Thread Debian testing watch
FYI: The status of the swh-lv2 source package
in Debian's testing distribution has changed.

  Previous version: 1.0.15+20091215.git2358739-1
  Current version:  1.0.15+20110312.git9c9935e-2

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


员~工~招~聘~与~面~试~技~巧-893

2011-05-28 Thread 何洁涓

☆ 您想了解华为是如何从人才选聘开始打造这样一支10万人的团队吗?
☆ 您想知道华为公司各级管理干部是如何承担公司的招聘任务吗?
═☆ 又是怎么履行员工招聘的职责?… …
═☆ 如何提高员工招聘的质量?
═☆ 如何科学评价人才的能力和素质?… …
5 月 2 6 - 2 7 日   深 圳   6 月 1 0 - 1 1 日   上 海
6 月 2 9 - 3 0 日   深 圳   6 月 1 7 - 1 8 日北 京
详 细 资 料 请 见 附 件!   请 注 意 查 收 !

员工招聘与面试技巧.xls
Description: MS-Excel spreadsheet
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Processed: tagging 628315

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

 tags 628315 + pending
Bug #628315 [src:kmetronome] kmetronome: FTBFS: index.docbook:8: warning: 
failed to load external entity dtd/kdex.dtd
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
628315: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628315
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/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Processed: Re: Bug#628224: enabling hardware acceleration crashes vlc with segmentation fault

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

 tags 628224 + moreinfo
Bug #628224 [vlc] enabling hardware acceleration crashes vlc with segmentation 
fault
Added tag(s) moreinfo.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
628224: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628224
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/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#413068: Debian etch: vlc plays intermittent alsa surround5.1 stream but gxine plays the same stream fine

2011-05-28 Thread Rémi Denis-Courmont
tags 413068 + moreinfo
thanks

Hello,

Le vendredi 2 mars 2007 02:42:02, vous avez écrit :
 vlc seems not able to play properly 5.1 stream on alsa surround5.1.
 vlc produce intermittent sound. gxine plays the same stream fine.

Is that S/PDIF or normal PCM output? Is it slightly stuttering or just plain 
unrecognizable? Does it still happen with a more up-to-date version of the 
player?

-- 
Rémi Denis-Courmont
http://www.remlab.net/
http://fi.linkedin.com/in/remidenis



___
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#605782: Please add racks (presets) to jack-rack

2011-05-28 Thread Alessio Treglia
Rosea,

could you provide more information about the licensing of those presets?
Under which license are they released?

Regards,

-- 
Alessio Treglia          | www.alessiotreglia.com
Debian Developer         | ales...@debian.org
Ubuntu Core Developer    | quadris...@ubuntu.com
0FEC 59A5 E18E E04F 6D40 593B 45D4 8C7C DCFC 3FD0



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


Processed: Re: Debian etch: vlc plays intermittent alsa surround5.1 stream but gxine plays the same stream fine

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

 tags 413068 + moreinfo
Bug #413068 [vlc] Debian etch: vlc plays intermittent alsa surround5.1 stream 
but gxine plays the same stream fine
Added tag(s) moreinfo.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
413068: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=413068
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/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Processed: your mail

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

 tags 616156 - moreinfo
Bug #616156 [vlc] Subject: vlc: VLC bookmark buffer overflow
Removed tag(s) moreinfo.
 fixed 616156 1.1.3-1
Bug #616156 [vlc] Subject: vlc: VLC bookmark buffer overflow
Bug Marked as fixed in versions vlc/1.1.3-1.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
616156: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=616156
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/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#616156: marked as done (Subject: vlc: VLC bookmark buffer overflow)

2011-05-28 Thread Debian Bug Tracking System
Your message dated Sat, 28 May 2011 23:41:59 +0300
with message-id 201105282341.59810.r...@remlab.net
and subject line 
has caused the Debian Bug report #616156,
regarding Subject: vlc: VLC bookmark buffer overflow
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.)


-- 
616156: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=616156
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: vlc
Version: 1.1.3-1squeeze3
Severity: important
Tags: security

VLC media player is vulnerable to a buffer overflow attack when processing 
.mp3 file and its metadata. It fails to perform boundry checks when creating a 
bookmark from the malicious media file playing, resulting in a crash, 
overwriting ECX register. While the evil .mp3 is playing, you go Playback  
Bookmarks  Manage bookmarks  Create.

I have requested CVE-identifier for this vulnerability: 
http://www.openwall.com/lists/oss-security/2011/03/02/3

Sample evil-file freezed my X and I needed to restart whole X to get control 
over GUI. I can give debug-information/logs if needed.

Can someone update tracker TEMP-000-57DB88? Note obscure exploit scenario, 
not reproducible is not true in my opinion.

References:
http://osvdb.org/show/osvdb/62728

Best regards,
Henri Salo

-- System Information:
Debian Release: 6.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages vlc depends on:
ii  libaa1  1.4p5-38 ascii art library
ii  libc6   2.11.2-10Embedded GNU C Library: Shared lib
ii  libfreetype62.4.2-2.1FreeType 2 font engine, shared lib
ii  libfribidi0 0.19.2-1 Free Implementation of the Unicode
ii  libgcc1 1:4.4.5-8GCC support library
ii  libgl1-mesa-glx [libgl1 7.7.1-4  A free implementation of the OpenG
ii  libqtcore4  4:4.6.3-4Qt 4 core module
ii  libqtgui4   4:4.6.3-4Qt 4 GUI module
ii  libsdl-image1.2 1.2.10-2+b2  image loading library for Simple D
ii  libsdl1.2debian 1.2.14-6.1   Simple DirectMedia Layer
ii  libstdc++6  4.4.5-8  The GNU Standard C++ Library v3
ii  libtar  1.2.11-6 C library for manipulating tar arc
ii  libvlccore4 1.1.3-1squeeze3  base library for VLC and its modul
ii  libx11-62:1.3.3-4X11 client-side library
ii  libx11-xcb1 2:1.3.3-4Xlib/XCB interface library
ii  libxcb-keysyms1 0.3.6-1  utility libraries for X C Binding
ii  libxcb-randr0   1.6-1X C Binding, randr extension
ii  libxcb-shm0 1.6-1X C Binding, shm extension
ii  libxcb-xv0  1.6-1X C Binding, xv extension
ii  libxcb1 1.6-1X C Binding
ii  libxext62:1.1.2-1X11 miscellaneous extension librar
ii  ttf-freefont20090104-7   Freefont Serif, Sans and Mono True
ii  vlc-nox 1.1.3-1squeeze3  multimedia player and streamer (wi
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages vlc recommends:
ii  vlc-plugin-notify1.1.3-1squeeze3 LibNotify plugin for VLC
ii  vlc-plugin-pulse 1.1.3-1squeeze3 PulseAudio plugin for VLC

Versions of packages vlc suggests:
pn  mozilla-plugin-vlcnone (no description available)
pn  videolan-doc  none (no description available)

Versions of packages vlc-nox depends on:
ii  liba52-0.7.4  0.7.4-14   library for decoding ATSC A/52 str
ii  libasound21.0.23-2.1 shared library for ALSA applicatio
ii  libass4   0.9.9-1library for SSA/ASS subtitles rend
ii  libavahi-client3  0.6.27-2+squeeze1  Avahi client library
ii  libavahi-common3  0.6.27-2+squeeze1  Avahi common library
ii  libavc1394-0  0.5.3-1+b2 control IEEE 1394 audio/video devi
ii  libavcodec52  4:0.5.2-6  ffmpeg codec library
ii  libavformat52 4:0.5.2-6  ffmpeg file format library
ii  libavutil49   4:0.5.2-6  ffmpeg utility library
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib
ii  libcaca0  0.99.beta17-1  colour ASCII art library
ii  libcddb2  

Bug#628448: several vulnerabilities: CVE-2011-2162 CVE-2011-2161 CVE-2011-2160

2011-05-28 Thread Steffen Joeris
Package: libav
Severity: grave
Tags: security

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,
the following CVE (Common Vulnerabilities  Exposures) ids were
published for libav.

CVE-2011-2162[0]:
| Multiple unspecified vulnerabilities in FFmpeg 0.4.x through 0.6.x, as
| used in MPlayer 1.0 and other products, in Mandriva Linux 2009.0,
| 2010.0, and 2010.1; Corporate Server 4.0 (aka CS4.0); and Mandriva
| Enterprise Server 5 (aka MES5) have unknown impact and attack vectors,
| related to issues originally discovered by Google Chrome developers.

CVE-2011-2161[1]:
| The ape_read_header function in ape.c in libavformat in FFmpeg before
| 0.5.4, as used in MPlayer, VideoLAN VLC media player, and other
| products, allows remote attackers to cause a denial of service
| (application crash) via an APE (aka Monkey's Audio) file that contains
| a header but no frames.

CVE-2011-2160[2]:
| The VC-1 decoding functionality in FFmpeg before 0.5.4, as used in
| MPlayer and other products, does not properly restrict read
| operations, which allows remote attackers to have an unspecified
| impact via a crafted VC-1 file, a related issue to CVE-2011-0723.

If you fix the vulnerabilities please also make sure to include the
CVE ids in your changelog entry.

Cheers,
Steffen

For further information see:

[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-2162
http://security-tracker.debian.org/tracker/CVE-2011-2162
[1] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-2161
http://security-tracker.debian.org/tracker/CVE-2011-2161
[2] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-2160
http://security-tracker.debian.org/tracker/CVE-2011-2160


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3hvCAACgkQ62zWxYk/rQd1aACfZBs5SZcStYwaRi/5LB5zttpL
VPEAn2gZK2qTTba9yMf2XwQKsBrqKGMr
=2kvn
-END PGP 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#628448: several vulnerabilities: CVE-2011-2162 CVE-2011-2161 CVE-2011-2160

2011-05-28 Thread we we

-BEGIN PGP PUBLIC KEY BLOCK-
Version: PGPfreeware 5.5.2 for non-commercial use http://www.pgp.com

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
=GNXC
-END PGP PUBLIC KEY BLOCK-



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