Control: tags -1 + fixed-upstream
This should now be fixed in VLC master branch. I can try to backport but it
won't be so straightforward.
--
Envoyé de mon appareil Android avec Courriel K-9 Mail. Veuillez excuser ma
brièveté.
---
crowd-funded eco-conscious hardware: https://www.crowdsupply.com/eoma68
On Sun, Mar 14, 2021 at 7:34 PM Jeffrey Walton wrote:
> You probably need to go to frame 1 ('f 1' under gdb) and disassemble
> ('disass .' or 'disass' followed by a bunch of pages). That will show
> the offending instruc
On Sun, Mar 14, 2021 at 2:57 PM Riccardo Mottola
wrote:
>
> On 3/8/21 9:49 AM, John Paul Adrian Glaubitz wrote:
> > We certainly shouldn't disable the whole JIT over a single instruction but
> > rather
> > check whether this instruction can be guarded on older POWER systems.
> >
> > But we need t
Hi,
On 3/8/21 9:49 AM, John Paul Adrian Glaubitz wrote:
We certainly shouldn't disable the whole JIT over a single instruction but
rather
check whether this instruction can be guarded on older POWER systems.
But we need to find out first which instruction triggers the SIGILL.
Indeed, it cras
On Mon, Mar 8, 2021 at 8:50 AM John Paul Adrian Glaubitz
wrote:
>
> On 3/8/21 9:38 AM, Jeffrey Walton wrote:
> >> a cursory scan shows no evidence of the use of VSX there.
> >
> > If needed... I believe it is possible to disable PCRE2's JIT at configure
> > time.
>
> We certainly shouldn't disabl
On 3/8/21 9:38 AM, Jeffrey Walton wrote:
>> a cursory scan shows no evidence of the use of VSX there.
>
> If needed... I believe it is possible to disable PCRE2's JIT at configure
> time.
We certainly shouldn't disable the whole JIT over a single instruction but
rather
check whether this instru
On Sun, Mar 7, 2021 at 2:10 PM Luke Kenneth Casson Leighton
wrote:
>
> On Sunday, March 7, 2021, Riccardo Mottola
> wrote:.
>>
>> the issue is most probably in libpcre2 or Qt5Core
>>
>> #0 0x7fffe9c5fa30 in ?? ()
>> #1 0x702c406c in ?? () from
>> /usr/lib/powerpc64-linux-gnu/libpc
On Sunday, March 7, 2021, Riccardo Mottola
wrote:.
>
>
> the issue is most probably in libpcre2 or Qt5Core
>
> #0 0x7fffe9c5fa30 in ?? ()
> #1 0x702c406c in ?? () from /usr/lib/powerpc64-linux-gnu/l
> ibpcre2-16.so.0
https://vcs.pcre.org/pcre2/code/trunk/src/sljit/sljitNativePPC_c
Hello!
On 3/7/21 7:25 PM, Riccardo Mottola wrote:
>> Most likely someone added VSX support to either of them without guarding the
>> code with #ifdefs.
>
> the issue is most probably in libpcre2 or Qt5Core
>
> #0 0x7fffe9c5fa30 in ?? ()
> #1 0x702c406c in ?? () from
> /usr/lib/po
Hi Adrian!
On 2021-03-06 15:22:02 +0100 John Paul Adrian Glaubitz
wrote:
Please install the dbgsym/dbg package for VLC and ffmpeg and provide
a
backtrace.
Most likely someone added VSX support to either of them without
guarding the
code with #ifdefs.
the issue is most probably in
Hello!
> On Mar 6, 2021, at 2:33 PM, Riccardo Mottola
> wrote:
>
>
> I just tried VLC on a G5... it starts but as soon as I try to open a file, it
> dies "inside" the file selector! Not just a file, trying to click on my home
> directory, I get illegal instru
Hi,
I just tried VLC on a G5... it starts but as soon as I try to open a
file, it dies "inside" the file selector! Not just a file, trying to
click on my home directory, I get illegal instruction.ù
If I give it a MP4 on the command line, it will come up and then die
with illegal i
On Sat, Nov 12, 2016 at 10:00:53PM +0200, Adrian Bunk wrote:
> I do not understand this part.
>
> -maltivec should only be set for the code that is behind the runtime
> feature check, so this code is only run on hardware that has AltiVec.
Well a mistake in the configure script is making it set f
On Tue, Nov 08, 2016 at 03:29:43PM -0500, Lennart Sorensen wrote:
>...
> -CFLAGS="${CFLAGS} -maltivec"
> +CFLAGS="${CFLAGS} -maltivec -fno-tree-vectorize"
>...
> And I realized the reason it was broken is that when using -maltivec and
> -O4 (whi
On Fri, Nov 04, 2016 at 01:33:36PM -0400, Lennart Sorensen wrote:
> And of course I made a typo while copying things into the patch.
>
> Doing another build test of it now.
>
> --- vlc-2.2.4.orig/configure.ac 2016-05-31 12:11:07.00000 -0400
> +++ vlc-2.2.4/configure.a
And of course I made a typo while copying things into the patch.
Doing another build test of it now.
--- vlc-2.2.4.orig/configure.ac 2016-05-31 12:11:07.0 -0400
+++ vlc-2.2.4/configure.ac 2016-11-04 12:22:02.543265439 -0400
@@ -1422,25 +1422,24 @@
VLC_SAVE_FLAGS
AC_CACHE_CHECK
Actually maybe this simpler version is better. I think I just figured
out why libdeinterlace wasn't getting the altivec flags, which was that
it was listed as deinterlace rather than libdeinterlace.
Doing a build test of it now.
--- vlc-2.2.4.orig/configure.ac 2016-05-31 12:11:07.
t now builds
correctly.
If someone actually wants to test it on real hardware without altivec that
would be great. Not sure I will have much luck testing it under qemu.
--
Len Sorensen
diff -urN --exclude Makefile.in --exclude install-sh --exclude configure vlc-2.2.4.orig/compat/dummy.c vlc-2.2.4/co
On Fri, Nov 04, 2016 at 10:41:57AM -0400, Lennart Sorensen wrote:
> Well it's not the complete solution yet.
>
> I have it down to only deinterlace being miscompiled (it auto vectorized
> Generic* functions with altivec instructions, which is not good).
>
> At the moment it looks like either the
On Fri, Nov 04, 2016 at 10:52:05AM +0100, Sebastian Ramacher wrote:
> On 2016-11-03 13:58:58, Lennart Sorensen wrote:
> > On Tue, Nov 01, 2016 at 01:42:17PM -0400, Lennart Sorensen wrote:
> > > Well that looks like it only adds it for libvlccore.
> >
> > So at least something like this is needed,
On 2016-11-03 13:58:58, Lennart Sorensen wrote:
> On Tue, Nov 01, 2016 at 01:42:17PM -0400, Lennart Sorensen wrote:
> > Well that looks like it only adds it for libvlccore.
>
> So at least something like this is needed, but I think the VLCCORE is
> wrong too, and maybe the deinterlace has to be mo
On Tue, Nov 01, 2016 at 01:42:17PM -0400, Lennart Sorensen wrote:
> Well that looks like it only adds it for libvlccore.
So at least something like this is needed, but I think the VLCCORE is
wrong too, and maybe the deinterlace has to be moved to only merge.c
rather than all of deinterlace.
--- c
> This doesn't looks wrong to me.
> > > >
> > > > Note that depending on the software --enable-altivec can either mean
> > > > - compile unconditionally for AltiVec, or
> > > > - enable AltiVec parts with autodetection to only use them w
e that depending on the software --enable-altivec can either mean
> > > - compile unconditionally for AltiVec, or
> > > - enable AltiVec parts with autodetection to only use them when the
> > > hardware supports it
> >
> > Well in VLC it means build with -
unconditionally for AltiVec, or
> > - enable AltiVec parts with autodetection to only use them when the
> > hardware supports it
>
> Well in VLC it means build with -maltivec among other things.
>
> > As I already wrote, vlc contains AltiVec-specific code and autodet
hen the
> hardware supports it
Well in VLC it means build with -maltivec among other things.
> As I already wrote, vlc contains AltiVec-specific code and autodetection
> for using it only when the hardware supports it.
>
> This should be enabled on all ppc ports, except the SPE one
FLAGS="$ALTIVEC_FLAGS ${ac_cv_c_altivec}
> > ${ac_cv_c_altivec_abi}"
> > VLC_ADD_CFLAGS([deinterlace],[${ac_cv_c_altivec}
> > ${ac_cv_c_altivec_abi}])
> >
> > It is correct that this adds -maltivec to AltiVec-specific code,
> > and vlc has proper
hi all just to notice
kodi on e5500 2 ghz play without problems and without frame dropping
mkv & mp4 at 1080p without vdpau accelerations.
i suggest to use kodi if vlc crash fo altivec.
Luigi
Da: Lennart Sorensen
Inviato: martedì 1 novembre 2016 14.
DD_CFLAGS([deinterlace],[${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}])
>
> It is correct that this adds -maltivec to AltiVec-specific code,
> and vlc has proper autodetection to run this only when AltiVec
> is actually present.
>
> The VLC_ADD_CFLAGS here look just wrong - it is no
Control: retitle -1 vlc: configure.ac altivec setting broken
On Sun, Oct 30, 2016 at 11:40:50AM +, James Cowgill wrote:
>...
> On 30/10/16 00:16, Robert Ou wrote:
> > On Sat, Oct 29, 2016 at 3:43 PM, James Cowgill wrote:
> >> Control: tags -1 help
> >> Control:
Control: tags -1 - help
Control: severity -1 important
Control: retitle -1 vlc: should prevent installation on powerpc G3
Hi,
On 30/10/16 00:16, Robert Ou wrote:
> On Sat, Oct 29, 2016 at 3:43 PM, James Cowgill wrote:
>> Control: tags -1 help
>> Control: severity -1 grave
>&g
gt;> I decided I wanted to test the performance of Debian PowerPC on my
>> ancient iMac, and I discovered that vlc will immediately crash with an
>> illegal instruction right after showing the "Privacy and Network Access
>> Policy" window and before showing the main
Control: tags -1 help
Control: severity -1 grave
Hi,
On 29/10/16 23:00, Robert Ou wrote:
> Package: src:vlc
> Version: 2.2.4-7
> Severity: normal
>
> Dear Maintainer,
>
> I decided I wanted to test the performance of Debian PowerPC on my
> ancient iMac, and I
Hi,
during the build of vlc a zsh completion file is generated. This works
everywhere except when built for powerpc on praetorius [1]. Since I cannot
reproduce the issue on any of ther porter boxes it be nice if someone with a
similar machine could help me debug this issue.
The steps to
Hi Bastian,
Am 29.06.2011 14:54 schrieb Bastian Blank:
> On Wed, Jun 29, 2011 at 09:14:23AM -0300, Gunther Furtado wrote:
>> and vlc was playing and streaming (what I really want it to do) video
>> again. Then I tried:
>> $ ./configure --disable-altivec
>> and every
On Wed, Jun 29, 2011 at 09:14:23AM -0300, Gunther Furtado wrote:
> and vlc was playing and streaming (what I really want it to do) video
> again. Then I tried:
> $ ./configure --disable-altivec
> and everything still works!
>
> My hardware is an iMac G3 - 333MHz
> # cat /proc
Hi,
Since after vlc 0.8.6 it didn't play any video file yielding "Illegal
Instruction", audio only files were playing OK. From time to time I
tried to build from source with no luck for one reason or another until
last weekend when I ran:
# aptitude build-dep vlc
after some ver
* Elimar Riesebieter [100104 21:00 +0100]
>
> Hi,
>
> I try to play a dvd with "VLC media player 1.0.4 Goldeneye".
>
> I get the following error message:
>
[...]
> libdvdread: Invalid main menu IFO (VIDEO_TS.IFO), ifoRead_FP_PGC() failed.
[...]
I've r
Hi,
I try to play a dvd with "VLC media player 1.0.4 Goldeneye".
I get the following error message:
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Using libdvdcss version 1.2.10 for DVD access
libdvdnav: DVD Title: JB RAH DVD 1
libdvdnav: DVD Serial Number: ce47e947
libdvdnav:
Wolfgang Pfeiffer wrote:
> Looks like the documentation at least, for vlc, in the regard as
> mentioned, is better than for mplayer. But there actually seems to be
> a stream server in the mplayer sources. Excerpt from
>
> ./mplayer-checkout-2009-04-29/TOOLS/README:
> [cut]
>
Hi all
I start a new thread as the topic on the original one is becoming off-topic:
On Wed, Apr 29, 2009 at 11:27:05AM +0100, Rafal Czlonka wrote:
> Wolfgang Pfeiffer wrote:
> > > AFAIK, mplayer cannot stream audio and video like vlc does. That is why I
> > > use it.
&g
2009/4/29 Rafal Czlonka :
> Wolfgang Pfeiffer wrote:
>> > AFAIK, mplayer cannot stream audio and video like vlc does. That is why I
>> > use it.
>>
>> Not quite sure, Gunter, what exactly you mean with "stream audio and video",
>> but I think t
Wolfgang Pfeiffer wrote:
> > AFAIK, mplayer cannot stream audio and video like vlc does. That is why I
> > use it.
>
> Not quite sure, Gunter, what exactly you mean with "stream audio and video",
> but I think this was a good one :)
Stream, not
On Sun, Apr 26, 2009 at 01:35:15PM -0300, Gunther Furtado wrote:
> domingo, 26 de abril de 2009,
> Rogério Brito escreveu:
>
> >Hi, Gunter.
> >
> >On Apr 05 2009, Gunther Furtado wrote:
> >> I am getting a lot of Illegal Instruction complains from VLC
>
domingo, 26 de abril de 2009,
Rogério Brito escreveu:
>Hi, Gunter.
>
>On Apr 05 2009, Gunther Furtado wrote:
>> I am getting a lot of Illegal Instruction complains from VLC
>> (whenever I ask it to show me video).
>
>You should already know this, but it sounds like
Hi, Gunter.
On Apr 05 2009, Gunther Furtado wrote:
> I am getting a lot of Illegal Instruction complains from VLC (whenever
> I ask it to show me video).
You should already know this, but it sounds like an altivec enabled
program running in a non-altivec enabled machine.
I'm not use
Hi again, Gunther.
On Apr 10 2009, Gunther Furtado wrote:
> The forwarded message bellow reports the current situations. Just to
> inform the G3 users.
Oops. That's the trouble of being late to the list. :-)
> >From: http://en.wikipedia.org/wiki/Altivec
Think of altivec as mmx or sse* or 3dnow
terça, 07 de abril de 2009,
Gunther Furtado escreveu:
>Subject: libvlccore0: VLC shuts down with "Illegal Instruction"
[...]
>whenever I try to open any kind of media VLS shuts down with nothing
>but an "Illegal Instruction"
>notice.
The forwarded message bello
quarta, 08 de abril de 2009,
Michel Dänzer escreveu:
>On Tue, 2009-04-07 at 19:49 -0300, Gunther Furtado wrote:
>> Subject: libvlccore0: VLC shuts down with "Illegal Instruction"
>> warning opening any media
>> Package: libvlccore0
>> Version: 0.9.8a-3
>
On Tue, 2009-04-07 at 19:49 -0300, Gunther Furtado wrote:
> Subject: libvlccore0: VLC shuts down with "Illegal Instruction"
> warning opening any media
> Package: libvlccore0
> Version: 0.9.8a-3
> Severity: important
>
> *** Please type your report below this l
Subject: libvlccore0: VLC shuts down with "Illegal Instruction"
warning opening any media
Package: libvlccore0
Version: 0.9.8a-3
Severity: important
*** Please type your report below this line ***
Hi,
whenever I try to open any kind of media VLS shuts down with nothing
but a
On Sun, 2009-04-05 at 22:48 -0300, Gunther Furtado wrote:
> Hi,
>
> I am getting a lot of Illegal Instruction complains from VLC (whenever
> I ask it to show me video).
>
> dbg tells me:
>
> start
> LC media player 0.9.8a Grishenko
> [New Thread 0x48021f20 (LW
Hi,
I am getting a lot of Illegal Instruction complains from VLC (whenever
I ask it to show me video).
dbg tells me:
start
LC media player 0.9.8a Grishenko
[New Thread 0x48021f20 (LWP 6467)]
Program received signal SIGILL, Illegal instruction.
[Switching to Thread 0x48021f20 (LWP 6467
On Fri, Feb 16 2007, at 22:46 +0100, Wolfgang Pfeiffer wrote:
> : ) ...]
> X-Spoken-Languages: en, de
> X-URL: http://www.wolfgangpfeiffer.com
> User-Agent: Mutt/1.5.13 (2006-08-11)
Sorry for the crap above ... somehow I even manage to screw up mail
headers ... :)
Regards
Wolfgang
--
Wolfgang P
acidrip 0.14-0.0
ii mplayer 1.0~rc1-12
ii mplayer-skin-blue1.6-1
-
Thanks a lot Johannes ...
Let's see whether I still need vlc ... :)
Nice weekend to everyone ... :)
Best Regards
Wolfgang
On Fri, 2007-02-16 at 21:34 +0100, Wolfgang Pfeiffer wrote:
> ii acidrip 0.14-0.0
> rc mplayer 1.0~rc1-3
> ii mplayer-g4 1.0-pre8-0.1
> ii mplayer-skin-blue 1.6-1
install "mplayer" instead of "mplayer-g4", the latter is from the deb
http://honk.sigxcpu.org/l
On Friday 16 February 2007 21:34, Wolfgang Pfeiffer wrote:
> Hi, Børge
>
> Thanks for responding ...
>
> On Fri, Feb 16 2007, at 20:00 +0100, Børge Holen wrote:
> > I never got the version of VLC you are using. Neither mplayer for that
> > part.
> >
> > I rar
Hi, Børge
Thanks for responding ...
On Fri, Feb 16 2007, at 20:00 +0100, Børge Holen wrote:
> I never got the version of VLC you are using. Neither mplayer for that part.
>
> I rarely use VLC, but mplayer chews close to anything I throw at
> it.
True, but *here* it didn't e
I never got the version of VLC you are using. Neither mplayer for that part.
I rarely use VLC, but mplayer chews close to anything I throw at it. The
latest versions got the wmv thing builtin. But in yer case it is hard to say
since you did not submit any info.
This goes for both those
mplayer and help fix vlc ...
The hardware here:
$ cat /proc/cpuinfo
processor : 0
cpu : 7447A, altivec supported
clock : 833.333000MHz
revision: 0.5 (pvr 8003 0105)
bogomips: 16.57
timebase:
t;[EMAIL PROTECTED]> wrote:
> Hi Ananda
>
> Thanks for responding so fast ...
>
> On Fri, Feb 16 2007, at 14:27 +, Ananda Samaddar wrote:
>
> > I'm having the same problems with VLC in Etch. I'd recommend
> > MPlayer instead. MPlayer plays everyt
Hi Ananda
Thanks for responding so fast ...
On Fri, Feb 16 2007, at 14:27 +, Ananda Samaddar wrote:
> I'm having the same problems with VLC in Etch. I'd recommend
> MPlayer instead. MPlayer plays everything.
Not here: I always had, and still have probs getting mplayer
I'm having the same problems with VLC in Etch. I'd recommend MPlayer instead.
MPlayer plays everything. You might need to set the correct video and audio
out in the options though.
Ananda
On Fri, 16 Feb 2007 15:18:05 +0100
Wolfgang Pfeiffer <[EMAIL PROTECTED]> wrote:
>
Hi All
Firstly a Sorry for this long email ...
Debian unstable here. Very fresh packages.
$ uname -a
Linux debby1-6 2.6.18-rc4-060811-dirty #1 Fri Aug 11 00:16:22 CEST 2006 ppc
GNU/Linux
I installed vlc some weeks/months ago, and it worked fantastically: It
played even movie files (wmv3
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Eddy Petrișor wrote:
> brian wrote:
>> --- Steffen Thoss <[EMAIL PROTECTED]> wrote:
>
>>> Hi !
>>>
>>> I'm trying to install the mozilla vlc plugin for my
>>> Debian unstable on
>>&g
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
brian wrote:
> --- Steffen Thoss <[EMAIL PROTECTED]> wrote:
>
>> Hi !
>>
>> I'm trying to install the mozilla vlc plugin for my
>> Debian unstable on
>> my PowerBook to play some streaming video with
&g
--- Steffen Thoss <[EMAIL PROTECTED]> wrote:
> Hi !
>
> I'm trying to install the mozilla vlc plugin for my
> Debian unstable on
> my PowerBook to play some streaming video with
> Firefox.
> I always get the following message:
>
> takeda:~# apt-get instal
Hi !
I'm trying to install the mozilla vlc plugin for my Debian unstable on
my PowerBook to play some streaming video with Firefox.
I always get the following message:
takeda:~# apt-get install mozilla-plugin-vlc
Reading package lists... Done
Building dependency tree... Done
Some pac
DVD as
iso9660 with wmmount and there was an open Midnight Commander.
Then I have started VLC and it was reading the DVD showing the Video.
Greetings
Michelle Konzack
--
Linux-User #280138 with the Linux Counter, http://counter.li.org/
# Debian GNU/Linux Consultant ##
ok after playing with some and manually putting my cd drive in vlcrc i
get this
VLC media player 0.8.4 Janus
libdvdnav: Using dvdnav version 0.1.9 from http://dvd.sf.net
libdvdread: Encrypted DVD support unavailable.
libdvdread: Can't stat /aÃxbOG
No such file or directory
libdvdnav: vm: fai
> > Try to set the correct device for the DVD drive - hda is your hard disk,
> > the DVD ought to be on hdc then.
>
> He want to read a AVI or MPG from the Hardisk!
I figured.
> But choosen the wrong menu (File => Open Medium => Volume)
> instead of (File => Open File)
That's even possible for a
Am 2006-04-15 11:16:34, schrieb Michael Schmitz:
> > VLC media player 0.8.4a Janus
> > libdvdnav: Using dvdnav version 0.1.9 from http://dvd.sf.net
> > libdvdread: Encrypted DVD support unavailable.
> > libdvdread: Attempting to use device /dev/hda14 mounted on / fo
Am 2006-04-14 23:55:13, schrieb caleb storms:
> ok, on my ongoing search for better video i managed to get vlc installed
> from source however, now i get basicly the same kind of error i got
> before all that. This is what i'm getting when trying to play any file
> from my hard
or me here - I've only tried .mov format from iMovie
though. Maybe vlc defaults to dvd if the file you feed it is in some
unknown format?
Michael
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
hey,
i did not have libdvdcss2 installed so i
ran /usr/share/doc/libdvdread3/examples/install-css.sh same problem i
then ran dpkg-reconfigure vlc still no change.
thanks
caleb
On Sat, 2006-04-15 at 19:48 +0200, Alexander Schmehl wrote:
> Hi!
>
> * caleb storms <[EMAIL PROTECTED]>
Hi!
* caleb storms <[EMAIL PROTECTED]> [060415 05:55]:
> ok, on my ongoing search for better video i managed to get vlc installed
> from source however, now i get basicly the same kind of error i got
> before all that. This is what i'm getting when trying to play any file
&
chael Schmitz wrote:
> > VLC media player 0.8.4a Janus
> > libdvdnav: Using dvdnav version 0.1.9 from http://dvd.sf.net
> > libdvdread: Encrypted DVD support unavailable.
> > libdvdread: Attempting to use device /dev/hda14 mounted on / for CSS
> > authentication
>
&
I have no problems with watching dvds via vlc on my pismo (they're choppy
though, but they just are and I have to cope with it).
> libdvdread: Attempting to use device /dev/hda14 mounted on / for CSS
authentication
> libdvdread: Could not open input: Permission denied
> libdvdre
> VLC media player 0.8.4a Janus
> libdvdnav: Using dvdnav version 0.1.9 from http://dvd.sf.net
> libdvdread: Encrypted DVD support unavailable.
> libdvdread: Attempting to use device /dev/hda14 mounted on / for CSS
> authentication
Try to set the correct device for the DVD driv
ok, on my ongoing search for better video i managed to get vlc installed
from source however, now i get basicly the same kind of error i got
before all that. This is what i'm getting when trying to play any file
from my hardrive be it avi or mpg
VLC media player 0.8.4a Janus
libdvdnav:
OoO En cette aube naissante du lundi 26 juillet 2004, vers 07:34,
Lorenzo <[EMAIL PROTECTED]> disait:
> I have this problem since I installed Sarge. with all version of VLC there is
> the output:
> VLC media player 0.7.2 Bond
> Illegal instruction
This will be fixed so
I have this problem since I installed Sarge. with all version of VLC there is
the output:
VLC media player 0.7.2 Bond
Illegal instruction
My platform:
PegasosII G3
Debian Sid - kernel 2.6.7
Thanks
--
BOFH excuse #413:
Cow-tippers tipped a cow onto the server.
works perfectly well.
> > > But I'd like to play a movie which is in .cue .bin -format.
> > > To do so I'd like to use vlc. But vlc doesn't wants to play any sound.
> >
> > Qhich sound server do you use?
>
> esound
I guess what you need the
is in .cue .bin -format.
> > To do so I'd like to use vlc. But vlc doesn't wants to play any sound.
>
> Qhich sound server do you use?
esound
On Sep Tue 30 2003 00:27, Markus Frauenfelder wrote:
> Hi folks
>
> I'm working with gnome2 and my sound-server starts at login.
> xine works perfectly well.
> But I'd like to play a movie which is in .cue .bin -format.
> To do so I'd like to use vlc. But vl
Hi folks
I'm working with gnome2 and my sound-server starts at login.
xine works perfectly well.
But I'd like to play a movie which is in .cue .bin -format.
To do so I'd like to use vlc. But vlc doesn't wants to play any sound.
How can I watch a movie which is in .cue
>I have an ibook2, 500 MHz. Now, I thought that the G3 didn't have
>Altivec, and I am running 2.4.19-pre6-ben0
>from ppckernel.org.
>
>So, is this vlc wrongly detecting my CPU having Altivec or the kernel not
>being correctly compiled ?
>I thought I might post here firs
On Mon, Apr 08, 2002 at 11:25:37PM +0200, Michel Lanners wrote:
> Videolan has released vlc 0.3.0, with _lots_ of performance
> improvements. I am now able to play back DVD's on my TiBook/400 with
> around 70% cpu useage, with only around 1% dropped frames (before, I had
> 100%
Hi all,
Videolan has released vlc 0.3.0, with _lots_ of performance
improvements. I am now able to play back DVD's on my TiBook/400 with
around 70% cpu useage, with only around 1% dropped frames (before, I had
100% cpu and 30% frame drops).
Sound has some issues, though; OSS gives choppd
On Wed, 2002-01-02 at 15:07, Jack Howarth wrote:
>Is anyone else seeing crashes in vlc 0.2.92-4 when you play a
> dvd on ppc? The previous 0.2.92-1 through -3 source packages wouldn't
> build on my ppc machine because of some changes for MacOS X which
> introduced a
Is anyone else seeing crashes in vlc 0.2.92-4 when you play a
dvd on ppc? The previous 0.2.92-1 through -3 source packages wouldn't
build on my ppc machine because of some changes for MacOS X which
introduced a vand altivec asm instruction our devtools doesn't
support. Locally I had
On Thu, Oct 11, 2001 at 12:34:37PM -0700, Jeffrey W. Baker wrote:
>
>
> On 11 Oct 2001, Michel Dänzer wrote:
>
> > On Sun, 2001-10-07 at 16:35, Michel Lanners wrote:
> >
> > > I've uploaded a new Altivec-enabled version of vlc (built from the
> >
On Thu, 2001-10-11 at 21:34, Jeffrey W. Baker wrote:
> Are there any debs in sid with support for playing CSS-encrypted
> disks? I couldn't find any in non-us or non-free.
There aren't for legal reasons. I understand vlc will use libdvdcss if
available though.
--
Earthli
On 11 Oct 2001, Michel Dänzer wrote:
> On Sun, 2001-10-07 at 16:35, Michel Lanners wrote:
>
> > I've uploaded a new Altivec-enabled version of vlc (built from the
> > 20011004 snapshot). It is available here:
> >
> > http://www.cpu.lu/~mlan/ftp/debian/vlc-snap
On Sun, 2001-10-07 at 16:35, Michel Lanners wrote:
> I've uploaded a new Altivec-enabled version of vlc (built from the
> 20011004 snapshot). It is available here:
>
> http://www.cpu.lu/~mlan/ftp/debian/vlc-snapshot-20011004
>
> Sorry, single files only. Once I figur
On 8 Oct, this message from David Schleef echoed through cyberspace:
> On Mon, Oct 08, 2001 at 08:08:27AM -0700, Jeffrey W. Baker wrote:
>> On Sun, 7 Oct 2001, Michel Lanners wrote:
>>
>> > Hi all,
>> >
>> > I've uploaded a new Altivec-enabl
On Mon, Oct 08, 2001 at 08:08:27AM -0700, Jeffrey W. Baker wrote:
> On Sun, 7 Oct 2001, Michel Lanners wrote:
>
> > Hi all,
> >
> > I've uploaded a new Altivec-enabled version of vlc (built from the
> > 20011004 snapshot). It is available here:
>
> Wow yo
On Sun, 7 Oct 2001, Michel Lanners wrote:
> Hi all,
>
> I've uploaded a new Altivec-enabled version of vlc (built from the
> 20011004 snapshot). It is available here:
Wow you are a genius :):):) How did you manage to get those nasty old
Altivec tools to work on a recent Lin
On Sun, 2001-10-07 at 16:35, Michel Lanners wrote:
> I've uploaded a new Altivec-enabled version of vlc (built from the
> 20011004 snapshot). It is available here:
>
> http://www.cpu.lu/~mlan/ftp/debian/vlc-snapshot-20011004
>
> Sorry, single files only. Once I figur
Hi all,
I've uploaded a new Altivec-enabled version of vlc (built from the
20011004 snapshot). It is available here:
http://www.cpu.lu/~mlan/ftp/debian/vlc-snapshot-20011004
Sorry, single files only. Once I figure out how to make a apt-get'able
repository I'll clean up.
This ve
1 - 100 of 133 matches
Mail list logo