Bug#692856: Endless loop at end of file when file is removed during play
Turn off repeat/loop mode then. If you ask VLC to loop it will naturally try to continuously re-open it because you are repeating the playlist. See http://trac.videolan.org/vlc/ticket/7048 for a similar case. ___ 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#692867: FTBFS with libav 9
Package: avifile Version: 1:0.7.48~20090503.ds-12 Severity: important Tags: patch hi, avifile currently FTBFS with libav that is currently in experimental. The attached patch should fix that. Please consider applying it to the package and discuss this with upstream. Cheers, Reinhard -- System Information: Debian Release: wheezy/sid APT prefers precise-updates APT policy: (500, 'precise-updates'), (500, 'precise-security'), (500, 'precise-proposed'), (500, 'precise') Architecture: amd64 (x86_64) Kernel: Linux 3.2.0-32-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 Index: avifile-0.7.48~20090503.ds/configure.in === --- avifile-0.7.48~20090503.ds.orig/configure.in 2012-11-06 18:01:33.0 + +++ avifile-0.7.48~20090503.ds/configure.in 2012-11-09 21:48:12.515760229 + @@ -825,7 +825,7 @@ AM_PATH_FFMPEG tmp_LIBS="$LIBS" -AC_CHECK_LIB([avcodec], [avcodec_init], [], +AC_CHECK_LIB([avcodec], [avcodec_register_all], [], [AC_MSG_ERROR([libavcodec is required to build this package.])]) AC_CHECK_FUNCS([avcodec_decode_audio3 avcodec_decode_video2]) LIBS="$tmp_LIBS" Index: avifile-0.7.48~20090503.ds/lib/codeckeeper.cpp === --- avifile-0.7.48~20090503.ds.orig/lib/codeckeeper.cpp 2009-04-24 23:42:12.0 + +++ avifile-0.7.48~20090503.ds/lib/codeckeeper.cpp 2012-11-09 21:49:37.357421496 + @@ -294,7 +294,6 @@ audio_codecs.clear(); // FFMPEG initialization -avcodec_init(); avcodec_register_all(); uncompressed_FillPlugins(video_codecs); Index: avifile-0.7.48~20090503.ds/lib/aviread/FFReadHandler.cpp === --- avifile-0.7.48~20090503.ds.orig/lib/aviread/FFReadHandler.cpp 2012-11-09 21:54:08.689656695 + +++ avifile-0.7.48~20090503.ds/lib/aviread/FFReadHandler.cpp 2012-11-09 22:02:30.107834443 + @@ -68,21 +68,19 @@ int FFReadHandler::Init(const char* url) { -AVFormatParameters avfp; AVInputFormat* fmt = 0; // av_find_input_format(url); //printf("find input format %p %s\n", fmt, b); -memset(&avfp, 0, sizeof(avfp)); -int r = av_open_input_file(&m_pContext, url, - fmt, 64000, &avfp); +int r = avformat_open_input(&m_pContext, url, +fmt, NULL); if (r < 0) { AVM_WRITE("FF reader", "Open Input failed %d\n", r); return -1; } -if (av_find_stream_info(m_pContext) < 0) +if (avformat_find_stream_info(m_pContext, NULL) < 0) return -1; AVM_WRITE("FF reader", "Format:'%s' Stream(s):%d\n", m_pContext->iformat->long_name, m_pContext->nb_streams); @@ -202,7 +200,7 @@ if (av_read_frame(m_pContext, &pkt) < 0) { p->Release(); - if (url_ferror(m_pContext->pb)) + if (m_pContext->pb && m_pContext->pb->error) AVM_WRITE("FF reader", "error seen\n"); //if (!url_feof(m_pContext->pb)) Index: avifile-0.7.48~20090503.ds/plugins/libffmpeg/FFAudioDecoder.cpp === --- avifile-0.7.48~20090503.ds.orig/plugins/libffmpeg/FFAudioDecoder.cpp 2012-11-06 18:01:33.0 + +++ avifile-0.7.48~20090503.ds/plugins/libffmpeg/FFAudioDecoder.cpp 2012-11-09 22:07:56.570835067 + @@ -25,7 +25,7 @@ { if (!m_pAvContext) { - if (!(m_pAvContext = avcodec_alloc_context2(m_pAvCodec->type))) + if (!(m_pAvContext = avcodec_alloc_context3(m_pAvCodec))) return -1; m_pAvContext->channels = m_pFormat->nChannels; @@ -46,7 +46,7 @@ m_pAvContext->extradata_size = m_pFormat->cbSize - skip; } - if (avcodec_open(m_pAvContext, m_pAvCodec) < 0) + if (avcodec_open2(m_pAvContext, m_pAvCodec, NULL) < 0) { AVM_WRITE("FFAudioDecoder", "WARNING: can't open avcodec\n"); free(m_pAvContext); Index: avifile-0.7.48~20090503.ds/plugins/libffmpeg/FFVideoDecoder.cpp === --- avifile-0.7.48~20090503.ds.orig/plugins/libffmpeg/FFVideoDecoder.cpp 2012-11-06 18:01:33.0 + +++ avifile-0.7.48~20090503.ds/plugins/libffmpeg/FFVideoDecoder.cpp 2012-11-09 22:34:15.311166461 + @@ -117,7 +117,6 @@ pic->type = FF_BUFFER_TYPE_USER; pImage->m_iType = pic->pict_type; -pic->age = (pImage->GetAge() != pImage->MAX_AGE) ? pic->coded_picture_number - pImage->GetAge() : (1 << 30); if (pic->reference) pImage->Age(pic->coded_picture_number); else @@ -125,7 +124,7 @@ Debug printf("FF: GetBuffer %p %s %dx%d %p:%p:%p s:%f f:%d r:%d age:%d\n", pImage, ftypes[pic->pict_type], avctx->width, avctx->height, pImage->Data(0), pImage->Data(2), pImage->Data(1), - (double)pImage->m_lTimestamp / 100., avctx->pix_fmt, pic->reference, pic->age); + (double)pImage->m_lTimestamp / 100., avctx->pix_fmt, pic->reference); return 0; } @@ -162,
Bug#692856: vlc: Endless loop at end of file when file is removed during play
Package: vlc Version: 2.0.4-1 Severity: important This happens also with 2.0.3-3 and earlier VLC versions too. When you reach end of file that is removed during play (such as those with .part suffix when you use Iceweasel to download media file and download completes) error dialog doesn't respond and CPU spins in endless loop. This is very bad when in full screen mode. I had to change to text console with control-alt-F2 to be able to kill stuck vlc process. Terminal has continuous stream of errors (tail of output here): [0x60dc548] main input error: open of `file:///home/touko/Downloads/x.flv.part' failed [0x60f4928] filesystem access error: cannot open file /home/touko/Downloads/x.flv.part (No such file or directory) [0x6101d98] main input error: open of /`file:///home/touko/Downloads/x.flv.part' failed [0x6101048] filesystem access error: cannot open file //home/touko/Downloads/x.flv.part (No such file or directory) [0x60f4168] main input error: open of `file:///home/touko/Downloads/x.flv.part' failed [0x60f8058] filesystem access error: cannot open file /home/touko/Downloads/x.flv.part (No such file or directory) -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (700, 'testing'), (600, 'unstable'), (500, 'experimental'), (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 3.2.0-4-amd64 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages vlc depends on: ii dpkg 1.16.9 ii fonts-freefont-ttf20120503-1 ii libaa11.4p5-40 ii libavcodec53 6:0.8.4-1 ii libavutil51 6:0.8.4-1 ii libc6 2.13-35 ii libcaca0 0.99.beta18-1 ii libfreetype6 2.4.9-1 ii libfribidi0 0.19.2-3 ii libgcc1 1:4.7.1-7 ii libgl1-mesa-glx [libgl1] 8.0.4-2 ii libice6 2:1.0.8-2 ii libqtcore44:4.8.2+dfsg-2 ii libqtgui4 4:4.8.2+dfsg-2 ii libsdl-image1.2 1.2.12-2 ii libsdl1.2debian 1.2.15-5 ii libsm62:1.2.1-2 ii libstdc++64.7.1-7 ii libtar0 1.2.16-1 ii libva-x11-1 1.0.15-4 ii libva11.0.15-4 ii libvlccore5 2.0.4-1 ii libx11-6 2:1.5.0-1 ii libxcb-composite0 1.8.1-2 ii libxcb-keysyms1 0.3.9-1 ii libxcb-randr0 1.8.1-2 ii libxcb-render01.8.1-2 ii libxcb-shape0 1.8.1-2 ii libxcb-shm0 1.8.1-2 ii libxcb-xfixes01.8.1-2 ii libxcb-xv01.8.1-2 ii libxcb1 1.8.1-2 ii libxext6 2:1.3.1-2 ii libxinerama1 2:1.1.2-1 ii libxpm4 1:3.5.10-1 ii vlc-nox 2.0.4-1 ii zlib1g1:1.2.7.dfsg-13 Versions of packages vlc recommends: ii vlc-plugin-notify 2.0.4-1 ii vlc-plugin-pulse 2.0.4-1 ii xdg-utils 1.1.0~rc1+git20111210-6 Versions of packages vlc suggests: pn videolan-doc -- 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
zita-resampler 1.1.0-3 MIGRATED to testing
FYI: The status of the zita-resampler source package in Debian's testing distribution has changed. Previous version: 1.1.0-2 Current version: 1.1.0-3 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See http://release.debian.org/testing-watch/ for more information. ___ pkg-multimedia-maintainers mailing list pkg-multimedia-maintainers@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers
ffms2_2.17+r731-2_i386.changes ACCEPTED into experimental
Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Fri, 09 Nov 2012 15:33:26 +0100 Source: ffms2 Binary: libffms2-2 ffmsindex libffms2-dev Architecture: source i386 Version: 2.17+r731-2 Distribution: experimental Urgency: low Maintainer: Debian Multimedia Maintainers Changed-By: Reinhard Tartler Description: ffmsindex - Command line tool to create ffms2 index files libffms2-2 - Cross platform ffmpeg wrapper library libffms2-dev - Development files for libffms2 Changes: ffms2 (2.17+r731-2) experimental; urgency=low . * Do not break when compiling against libav 9 Checksums-Sha1: d0092c1f232c357f57d7017fe96ad1dc619b44aa 1654 ffms2_2.17+r731-2.dsc f256ec0e0a6daf05d0eeab3b5447f2a40ed5dcc3 4947 ffms2_2.17+r731-2.debian.tar.gz bf9568d131849abc77d314149add1ae7bfe3aad0 122730 libffms2-2_2.17+r731-2_i386.deb 99f114b3c411be7e2bbc8ce4f6301b363dfb5a7b 13354 ffmsindex_2.17+r731-2_i386.deb 83960cf7e9c01e0b136429cfa69aab31c09dbe57 39638 libffms2-dev_2.17+r731-2_i386.deb Checksums-Sha256: cecb1963a952bdd52852b216278ae91cd8f3abce132f9abf35430edf8ee52d06 1654 ffms2_2.17+r731-2.dsc f52d333fdf745ff0260288eeae8ac5a160ced9d7cb3c2521abb3447e707903f6 4947 ffms2_2.17+r731-2.debian.tar.gz 49327cf559f422fbc48078b025f2ff3a9e6436f39c6e71aefa5b83f5d63618bd 122730 libffms2-2_2.17+r731-2_i386.deb 8c826b814be7366aff3129b55bfe73524bf31afd9ed8272c2e82e59dcda93c65 13354 ffmsindex_2.17+r731-2_i386.deb 1348f85e83f6d1f07098d56e50d422e94871bd84dedf53f8cfcf1366bd6f1dbf 39638 libffms2-dev_2.17+r731-2_i386.deb Files: 4539e5c3dfcdc6850bb7c093c006e015 1654 libs optional ffms2_2.17+r731-2.dsc 65459533418d434b2d14019d363354b6 4947 libs optional ffms2_2.17+r731-2.debian.tar.gz 14b2f4e2f597cfca0193823082bb1b60 122730 libs optional libffms2-2_2.17+r731-2_i386.deb 67f3781fca07a18fb0b92a8d71d2b620 13354 video optional ffmsindex_2.17+r731-2_i386.deb 50a21a657f89970718ab7477efd8542e 39638 libdevel optional libffms2-dev_2.17+r731-2_i386.deb -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.17 (GNU/Linux) Comment: Debian Powered! iEYEARECAAYFAlCdHYcACgkQmAg1RJRTSKSBwACfbSbUvdvCMdDLT8efhH7Mh9zM KQUAnjYJmsYuIRqDKSpu3bFGF1aCi04r =EiMT -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
Processing of ffms2_2.17+r731-2_i386.changes
ffms2_2.17+r731-2_i386.changes uploaded successfully to localhost along with the files: ffms2_2.17+r731-2.dsc ffms2_2.17+r731-2.debian.tar.gz libffms2-2_2.17+r731-2_i386.deb ffmsindex_2.17+r731-2_i386.deb libffms2-dev_2.17+r731-2_i386.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) ___ pkg-multimedia-maintainers mailing list pkg-multimedia-maintainers@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers
Bug#692562: jackd1: bus error on beagleboard
On 11/07/2012 02:46 PM, Samuel Casa wrote: > when i try to start jackd the process causes a bus error on my arm > system. This is either a problem in the upstream code or with compiler flags on the buildd. I don't think we should work around it in the package but fix the root cause instead. Cheers ___ 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: Bug#682792: Please update jackd2 git tree to latest to fix #682792
On 11/04/2012 12:28 PM, Kaj Ailomaa wrote: >> I'm not sure that uploading a new upstream to unstable would be >> acceptable Well... no. ;) >> to the release team. However, if you could update our branch at >> http://anonscm.debian.org/gitweb/?p=pkg-multimedia/jackd2.git, then I >> think >> we could upload it to experimental, which would allow you to sync it from >> there. > hmm, this is a bit tricky for me. I will ask around for some help on > this. I can certainly sync to current upstream, if desired, but only in experimental. Will do tonight. Cheers ___ 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#692812: src:fluidsynth: libfluindsynth-dev needs a compile/link/run autopkg test
Package: src:fluidsynth Severity: minor Tags: patch This bug report represents the need of a simple compile/link/run autopkg test for libfluidsynth-dev. The attached patch introduces such test, it's a simple script that creates a tiny C source file which uses libfluidsynth, and tries to build and run it. libfluidsynth-dev_build.patch Description: Binary data ___ 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#692810: FTBFS with libav9, currently in debian/experimental
Package: blender Version: 2.63a-1 Severity: important Hi, blender currently FTBFS with libav 9: cd /build/buildd/blender-2.63a/obj-x86_64-linux-gnu/source/blender/blenkernel && /usr/bin/gcc -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D__SSE__ -D__MMX__ -D__SSE2__ -D__LITTLE_ENDIAN__ -DGLEW_STATIC -DWITH_AUDASPACE -DUSE_BULLET -DWITH_OPENEXR -DWITH_TIFF -DWITH_OPENJPEG -DWITH_DDS -DWITH_CINEON -DWITH_FRAMESERVER -DWITH_HDR -DWITH_FFMPEG -DWITH_PYTHON -DPARALLEL=1 -DWITH_MOD_FLUID -DWITH_SMOKE -DWITH_OCEANSIM -DWITH_JACK -DWITH_LZO -DWITH_LZMA -DWITH_GAMEENGINE -DWITH_LIBMV -DFFTW3=1 -DWITH_INTERNATIONAL -DNDEBUG -fopenmp -msse2 -msse -pipe -fPIC -funsigned-char -fno-strict-aliasing -Wall -Wcast-align -Werror=declaration-after-statement -Werror=implicit-function-declaration -Werror=return-type -Wstrict-prototypes -Wno-char-subscripts -Wno-unknown-pragmas -Wpointer-arith -Wunused-parameter -Wwrite-strings -Wno-error=unused-but-set-variable -O2 -DNDEBUG -I/build/buildd/blender-2.63a/source/blender/blenkernel -I/build/buildd/blender-2.63a/source/blender/avi -I/build/buildd/blender-2.63a/source/blender/blenfont -I/build/buildd/blender-2.63a/source/blender/blenlib -I/build/buildd/blender-2.63a/source/blender/blenloader -I/build/buildd/blender-2.63a/source/blender/gpu -I/build/buildd/blender-2.63a/source/blender/ikplugin -I/build/buildd/blender-2.63a/source/blender/imbuf -I/build/buildd/blender-2.63a/source/blender/makesdna -I/build/buildd/blender-2.63a/source/blender/makesrna -I/build/buildd/blender-2.63a/source/blender/bmesh -I/build/buildd/blender-2.63a/source/blender/modifiers -I/build/buildd/blender-2.63a/source/blender/nodes -I/build/buildd/blender-2.63a/source/blender/render/extern/include -I/build/buildd/blender-2.63a/intern/guardedalloc -I/build/buildd/blender-2.63a/intern/iksolver/extern -I/build/buildd/blender-2.63a/intern/memutil -I/build/buildd/blender-2.63a/intern/mikktspace -I/build/buildd/blender-2.63a/intern/opennl/extern -I/build/buildd/blender-2.63a/source/blender/windowmanager -I/build/buildd/blender-2.63a/intern/audaspace/intern -I/build/buildd/blender-2.63a/extern/bullet2/src -I/build/buildd/blender-2.63a/intern/ffmpeg -I/build/buildd/blender-2.63a/source/blender/python -I/build/buildd/blender-2.63a/intern/elbeem/extern -I/build/buildd/blender-2.63a/intern/smoke/extern -I/build/buildd/blender-2.63a/intern/decimation/extern -I/build/buildd/blender-2.63a/intern/bsp/extern -I/build/buildd/blender-2.63a/extern/libmv -isystem /usr/include/python3.3m -isystem /usr/include/x86_64-linux-gnu/python3.3m -isystem /build/buildd/blender-2.63a/extern/lzo/minilzo -isystem /build/buildd/blender-2.63a/extern/lzma -isystem /build/buildd/blender-2.63a/extern/recastnavigation -Wno-deprecated-declarations -Wno-unused-parameter -Wno-error=unused-but-set-variable -o CMakeFiles/bf_blenkernel.dir/intern/writeffmpeg.c.o -c /build/buildd/blender-2.63a/source/blender/blenkernel/intern/writeffmpeg.c /build/buildd/blender-2.63a/source/blender/blenkernel/intern/writeffmpeg.c:41:28: fatal error: libavcodec/opt.h: No such file or directory compilation terminated. make[3]: *** [source/blender/blenkernel/CMakeFiles/bf_blenkernel.dir/intern/writeffmpeg.c.o] Error 1 It needs to be updated to the new API provided by libav 9. -- System Information: Debian Release: wheezy/sid APT prefers precise-updates APT policy: (500, 'precise-updates'), (500, 'precise-security'), (500, 'precise-proposed'), (500, 'precise') Architecture: amd64 (x86_64) Kernel: Linux 3.2.0-32-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 ___ 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#692809: FTBFS with libav in experimental
Package: audacity Version: 2.0.2-1 Severity: important Hi, Audacity currently FTBFS with libav 9: g++ -c -I../lib-src/portmixer/include -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -I/usr/lib/x86_64-linux-gnu/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/build/buildd/audacity-2.0.2/lib-src/lib-widget-extra -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 -D_FORTIFY_SOURCE=2 -Wall -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 AudacityApp.cpp -o AudacityApp.o In file included from AudacityApp.cpp:70:0: FFmpeg.h:356:4: error: 'SampleFormat' does not name a type It should use AVSampleFormat instead. Cheers, Reinhard -- System Information: Debian Release: wheezy/sid APT prefers precise-updates APT policy: (500, 'precise-updates'), (500, 'precise-security'), (500, 'precise-proposed'), (500, 'precise') Architecture: amd64 (x86_64) Kernel: Linux 3.2.0-32-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 ___ pkg-multimedia-maintainers mailing list pkg-multimedia-maintainers@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers