buongiorno

2011-09-18 Thread info
questa è una buona notiziasi vendono soprattutto l'elettronica originale. telefono cellulare, fotocamera digitale, computer.dvd.motorbilke Giorno di Natale è in arrivo, siamo in possesso di un acitvity grande. possiamo offrire il 60% di sconto per i nostri prodotti durante l'attività
Site: rl.com
2011-9-18 23:28:27___
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#641992: Bug #641992: How dvbcut should work

2011-09-18 Thread Klaumi Klingsporn
Hi,

only to give you an imagination how dvbcut can and should work (and
to get something I can work with) I just built an Debian package of svn
178 (version 0.6.2-alpha). It is built against libav0.7 (using the
patch from the official package) and libqt3-mt and works fine. The
only problem that remains is that the file-open-dialogue doesn't
recognize kaffeines m2t-files (recorded mpeg-transport-streams) as known
movie-file-types, which I can live with.

You can find source- and binary-packages at:

http://apt.klaumikli.de/testing

(Sorry it's no quilt-package, I attached the patch manually ;-) )

Hopefully that in near future the official debian package becomes
usefull as well.

Klaumi

--- 
Klaus-M. Klingsporn
klaumi...@gmx.de
http://www.klaumikli.de



___
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#641909: /usr/bin/smplayer: smplayer buttons and menus issue after mplayer update

2011-09-18 Thread Olivier Allard-Jacquin
Hi,

this bug seems to be similar with bug #640889  (
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=640889 )

When I open smplayer without running a video, behavior is normal. I can
use menus, change configuration settings, ...

But when I open a video, I see a 100% CPU usage. Video is running
normally, BUT, any buttons or menus are unusable. And this is not
possible to shutdown smplayer, unless by using :

killall -9 smplayer ; sleep 2s; killall -9 mplayer

Thanks for your help.

Regards,

Olivier



___
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#642011: beast ftbfs without -fpermissive in unstable

2011-09-18 Thread Matthias Klose
Package: beast
Version: 0.7.4-2
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu oneiric ubuntu-patch

beast ftbfs without -fpermissive in unstable; please apply this work around, or
fix the code.

patch at
http://launchpadlibrarian.net/80256907/beast_0.7.4-2_0.7.4-2ubuntu1.diff.gz

failed build
https://launchpad.net/ubuntu/+archive/test-rebuild-20110816/+build/2689194




___
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#641992: Patches for the most grave bugs of Qt4 port

2011-09-18 Thread Jindřich Makovička
Hi,

there are known bugs in Qt4 port, which make it unusable, and for
which I submitted patches to the upstream about a year ago. They were
never applied to SVN, but hopefully they can be included in the Debian
package.

Regards,
-- 
Jindrich Makovicka
Fixes broken Qt4 UI (no response to mouse after loading a video)

diff -xMakefile -ur orig/dvbcut/src/dvbcut.cpp dvbcut/src/dvbcut.cpp
--- orig/dvbcut/src/dvbcut.cpp	2010-08-18 10:16:32.560600431 +0200
+++ dvbcut/src/dvbcut.cpp	2010-08-18 10:15:59.320813795 +0200
@@ -2192,7 +2192,7 @@
 }
 
   // propagate to base class
-  //return ui-eventFilter(watched, e);
+  return Q3MainWindow::eventFilter(watched, e);
 }
 
 int
Fixes various type warnings on 64bit arch

diff -xMakefile -ur orig/dvbcut/src/buffer.cpp dvbcut/src/buffer.cpp
--- orig/dvbcut/src/buffer.cpp	2009-07-05 09:52:37.0 +0200
+++ dvbcut/src/buffer.cpp	2010-08-18 10:11:36.639543041 +0200
@@ -385,7 +385,7 @@
 	posix_fadvise(i-fd, 0, relpos, POSIX_FADV_DONTNEED);
 }
 #endif
-size_t len = mmapsize;
+ssize_t len = mmapsize;
 if (newpos + len  i-end)
   len = i-end - newpos;
 void *ptr = ::mmap(0, len, PROT_READ, MAP_SHARED, i-fd, relpos);
@@ -451,7 +451,7 @@
 	return -1;
   needseek = false;
 }
-size_t len = size - writepos;
+ssize_t len = size - writepos;
 if (len  i-end - seekpos)
   len = i-end - seekpos;
 assert(len  0);
diff -xMakefile -ur orig/dvbcut/src/index.cpp dvbcut/src/index.cpp
--- orig/dvbcut/src/index.cpp	2008-12-02 16:46:34.0 +0100
+++ dvbcut/src/index.cpp	2010-08-18 10:09:40.380128597 +0200
@@ -309,7 +309,7 @@
 	int pdelta = pictures - lastiframe + seqnr - p[lastiframe].getsequencenumber();
 	if (pdelta * framepts  ptsdelta)
 	  fprintf(stderr, missing frames in GOP (%d, %d): %lld\n,
-		lastiframe, pictures, ptsdelta / framepts - pdelta);
+  lastiframe, pictures, (long long)ptsdelta / framepts - pdelta);
 	}
 	  lastiframe = pictures;
 	  }
diff -xMakefile -ur orig/dvbcut/src/mpegmuxer.cpp dvbcut/src/mpegmuxer.cpp
--- orig/dvbcut/src/mpegmuxer.cpp	2009-07-05 09:52:37.0 +0200
+++ dvbcut/src/mpegmuxer.cpp	2010-08-18 10:06:44.383989266 +0200
@@ -640,7 +640,7 @@
   }
 
 if (len) {
-  fprintf(stderr,str=%d len=%d aulist.size=%d packlist.size=%d\n,
+  fprintf(stderr,str=%d len=%d aulist.size=%zd packlist.size=%zd\n,
 	str,len,s-aulist.size(),s-packlist.size());
   assert(len==0);
   }
diff -xMakefile -ur orig/dvbcut/src/mpgfile.cpp dvbcut/src/mpgfile.cpp
--- orig/dvbcut/src/mpgfile.cpp	2008-06-09 08:23:18.0 +0200
+++ dvbcut/src/mpgfile.cpp	2010-08-18 10:08:48.369298263 +0200
@@ -618,7 +618,7 @@
 
 for(it=sd-itemlist().begin();it!=sd-itemlist().end();++it)
   fprintf(stderr, fileposition:%lld/%d bufferposition:%d flags:%x pts:%s\n,
-  it-fileposition.packetposition(),it-fileposition.packetoffset(),
+  (long long)it-fileposition.packetposition(),it-fileposition.packetoffset(),
   it-bufferposition,it-flags,ptsstring(it-pts).c_str());
 
 fprintf(stderr,nx-bufferposition:%d it-bufferposition:%d\n,
@@ -626,7 +626,7 @@
 
 for(int i=0;iMAXAVSTREAMS;++i)
   if (sh.stream[i])
-fprintf(stderr,stream %d%s, itemlist.size():%d\n,
+fprintf(stderr,stream %d%s, itemlist.size():%zd\n,
 i,(sh.stream[i]==sd)?*:,sh.stream[i]-itemlist().size());
 
 abort();
diff -xMakefile -ur orig/dvbcut/src/tsfile.cpp dvbcut/src/tsfile.cpp
--- orig/dvbcut/src/tsfile.cpp	2008-06-09 08:23:18.0 +0200
+++ dvbcut/src/tsfile.cpp	2010-08-18 10:05:39.856698826 +0200
@@ -337,7 +337,7 @@
bnumTF5XXXPVR_MAX) {
   // bookmark is stored in 128 resp. 94kbyte units
   bookmark*=unit;
-  if(verbose) fprintf(stderr,BOOKMARK[%d] = %lld\n,bnum,bookmark);
+  if(verbose) fprintf(stderr,BOOKMARK[%d] = %lld\n,bnum,(long long)bookmark);
   // fill bookmark vector with byte positions
   byte_bookmarks.push_back(bookmark);
   bnum++;
@@ -391,7 +391,7 @@
   // changed byte order compared to old receivers!?!
   while ((bookmark=(buffer[boff+3]24)|(buffer[boff+2]16)|(buffer[boff+1]8)|buffer[boff])
bnumTF7700HDPVR_MAX) {
-  if(verbose) fprintf(stderr,BOOKMARK[%d] = %lld\n,bnum,bookmark);
+  if(verbose) fprintf(stderr,BOOKMARK[%d] = %lld\n,bnum,(long long)bookmark);
   // bookmark is stored in seconds now, but we'll use full pts!
   bookmark*=unit;
   // fill bookmark vector with times
@@ -400,7 +400,7 @@
   boff+=4;
   }  
   } else // receiver model identified but file to short!
-  fprintf(stderr,ADD-File probabely corrupted (%dbytes to short), discarding bookmarks!\n,TF7700HDPVR_LEN-len);
+  fprintf(stderr,ADD-File probabely corrupted (%zdbytes to short), discarding 

Bug#642014: hydrogen: effect plugins are not usable with instruments

2011-09-18 Thread Thorsten Alteholz

Package: hydrogen
Version: 0.9.4.1-1+b1
Severity: normal

*** Please type your report below this line ***
I can choose a LADSPA plugin in the FX rack of the mixer. After that I cannot
use the four pre-fader FX send knobs below the balance knob of the 
corresponding instrument. Normally I would expect to choose how much of this 
instrument will be sent to the effect plugin in the FX rack (at least that is

written in the manual). As the default value of these knobs are 0, no plugin
has any effect.
Or do I miss anything?

  Thorsten

-- System Information:
Debian Release: 6.0.2
  APT prefers stable
  APT policy: (700, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.34-rc5-ta-1 (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 hydrogen depends on:
ii  libarchive1   2.8.4-1Single library to read/write tar, 
ii  libasound21.0.23-2.1 shared library for ALSA applicatio

ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib
ii  libflac++61.2.1-2+b1 Free Lossless Audio Codec - C++ ru
ii  libflac8  1.2.1-2+b1 Free Lossless Audio Codec - runtim
ii  libgcc1   1:4.4.5-8  GCC support library
ii  libjack-jackd2-0 [lib 1.9.6~dfsg.1-2 JACK Audio Connection Kit (librari
ii  liblash2  0.5.4.0-2+b1   LASH Audio Session Handler (LASH) 
ii  liblrdf0  0.4.0-3a library to manipulate RDF files 
ii  libportaudio2 19+svn20071022-3.2 Portable audio I/O - shared librar

ii  libportmidi0  1:184-2library for real-time MIDI input/o
ii  libqt4-network4:4.6.3-4+squeeze1 Qt 4 network module
ii  libqt4-xml4:4.6.3-4+squeeze1 Qt 4 XML module
ii  libqtcore44:4.6.3-4+squeeze1 Qt 4 core module
ii  libqtgui4 4:4.6.3-4+squeeze1 Qt 4 GUI module
ii  libsndfile1   1.0.21-3+squeeze1  Library for reading/writing audio 
ii  libstdc++64.4.5-8The GNU Standard C++ Library v3


hydrogen recommends no packages.

hydrogen suggests no packages.

-- no debconf 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


Re: libav 4:0.7.1-5 MIGRATED to testing

2011-09-18 Thread Andres Mejia
On Thu, Sep 15, 2011 at 12:39 PM, Debian testing watch
nore...@release.debian.org wrote:
 FYI: The status of the libav source package
 in Debian's testing distribution has changed.

  Previous version: 4:0.6.2-5
  Current version:  4:0.7.1-5

 --
 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


I see a new version had been uploaded to unstable. The changes never
been pushed to the git repo however.

-- 
Regards,
Andres Mejia

___
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: mplayer hw acceleration

2011-09-18 Thread Alexey Pechnikov
mplayer -vo vdpau -vc ffh264vdpau  test.1080p.mkv
...
Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared
object file: No such file or directory
...

I have hardware acceleration with AMD Radeon HD 6310 and it works fine
with vlc. Why are you direct use
the NVIDIA library instead of the system vdpau library?..

-- 
Best regards, Alexey Pechnikov.
http://pechnikov.tel/

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