From avg at icyb.net.ua Wed Sep 2 09:54:05 2009 From: avg at icyb.net.ua (Andriy Gapon) Date: Wed Sep 2 09:54:12 2009 Subject: forcing two channel output In-Reply-To: <4A9815F3.9010601@FreeBSD.org> References: <4A980B19.4090801@icyb.net.ua> <4A9815F3.9010601@FreeBSD.org> Message-ID: <4A9E40B9.2050004@icyb.net.ua> on 28/08/2009 20:37 Alexander Motin said the following: > Andriy Gapon wrote: >> Please see verbose dmesg here: >> http://people.freebsd.org/~avg/ga-ma780g-ud3h/verbose.dmesg.txt [snip] > You can do whatever you like: disable them with as=0 or turn into many > separate devices with as=15, or even turn them into many additional inputs. Alexandr, so I thought that splitting them off into separate devices was a cool idea and I did the following: hint.hdac.1.cad0.nid21.config="as=15 seq=0" hint.hdac.1.cad0.nid22.config="as=15 seq=0" hint.hdac.1.cad0.nid23.config="as=15 seq=0" Now I got 3 additional pcm/dsp devices. New dmesg is available here: http://people.freebsd.org/~avg/ga-ma780g-ud3h/verbose.2.dmesg.txt New setup works but it is not without problems. 1. Output to dsp4 works perfectly. 2. Output to dsp6 doesn't work at all - a process writing to it gets stuck and the following can be seen in system log: pcm6: chn_write(): pcm6:virtual:dsp6.vp0: play interrupt timeout, channel dead hdac1: timeout in reset 3. Output to dsp5 is the most strange. If I write to it after using dsp4 then it works but sound goes to the same jack as for dsp4 (Black at Rear). If I write to it after using dsp6 then it doesn't work just the same as dsp6 itself. The same message go to the log (with "dsp6") in them. I suspect that there could be some hardware quirk, but I think that the behavior of dsp5 points to a possible driver issue. Thank you for the help! -- Andriy Gapon From mav at FreeBSD.org Wed Sep 2 10:02:01 2009 From: mav at FreeBSD.org (Alexander Motin) Date: Wed Sep 2 10:02:07 2009 Subject: forcing two channel output In-Reply-To: <4A9E40B9.2050004@icyb.net.ua> References: <4A980B19.4090801@icyb.net.ua> <4A9815F3.9010601@FreeBSD.org> <4A9E40B9.2050004@icyb.net.ua> Message-ID: <4A9E428E.7010401@FreeBSD.org> Andriy Gapon wrote: > on 28/08/2009 20:37 Alexander Motin said the following: >> Andriy Gapon wrote: >>> Please see verbose dmesg here: >>> http://people.freebsd.org/~avg/ga-ma780g-ud3h/verbose.dmesg.txt > [snip] >> You can do whatever you like: disable them with as=0 or turn into many >> separate devices with as=15, or even turn them into many additional >> inputs. > > Alexandr, > > so I thought that splitting them off into separate devices was a cool > idea and I did the following: > hint.hdac.1.cad0.nid21.config="as=15 seq=0" > hint.hdac.1.cad0.nid22.config="as=15 seq=0" > hint.hdac.1.cad0.nid23.config="as=15 seq=0" > > Now I got 3 additional pcm/dsp devices. > New dmesg is available here: > http://people.freebsd.org/~avg/ga-ma780g-ud3h/verbose.2.dmesg.txt > > New setup works but it is not without problems. > 1. Output to dsp4 works perfectly. > > 2. Output to dsp6 doesn't work at all - a process writing to it gets > stuck and the following can be seen in system log: > pcm6: chn_write(): pcm6:virtual:dsp6.vp0: play interrupt timeout, > channel dead > hdac1: timeout in reset > > 3. Output to dsp5 is the most strange. If I write to it after using dsp4 > then it works but sound goes to the same jack as for dsp4 (Black at > Rear). If I write to it after using dsp6 then it doesn't work just the > same as dsp6 itself. The same message go to the log (with "dsp6") in them. > > I suspect that there could be some hardware quirk, but I think that the > behavior of dsp5 points to a possible driver issue. HDA controllers have limitations on number of data streams. You can see it if boot with hw.snd.verbose=4. Usually there are 4 streams supported. snd_hda allocates them statically now, one device - one data stream. So you just could hit this limitation because of big number of devices. It would be good to allocate streams dynamically on open, but it is not implemented now. -- Alexander Motin From fbsd.multimedia at rachie.is-a-geek.net Wed Sep 2 14:17:14 2009 From: fbsd.multimedia at rachie.is-a-geek.net (Mel Flynn) Date: Wed Sep 2 14:17:20 2009 Subject: x11/nvidia-driver cannot obtain EDID under 8.0-BETA3/i386 In-Reply-To: <20090828135029.GA21544@svzserv.kemerovo.su> References: <20090828135029.GA21544@svzserv.kemerovo.su> Message-ID: <200909021559.31093.fbsd.multimedia@rachie.is-a-geek.net> On Friday 28 August 2009 15:50:30 Eugene Grosbein wrote: > Hi! > > Fresh install of 8.0-BETA2 upgraded to 8.0-BETA3 using source, > x.org installed from fresh ports tree. It cannot read EDID from > Samsung 959NF CRT monitor. The same time, it can read EDID under 7.2-STABLE > just fine. I've tried older nvidia-driver-180.60 (downgrading port) > and current port's version 185.18.29, no change. > > (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-1 Can't reproduce this with FreeBSD 8.0-BETA2 #10 r196398M both 180.60 and 185.18.29 driver. World/kernel as of today is building, so I'll report back if I can reproduce it then. Different (laptop) monitor though. -- Mel From avg at icyb.net.ua Wed Sep 2 15:31:59 2009 From: avg at icyb.net.ua (Andriy Gapon) Date: Wed Sep 2 15:32:05 2009 Subject: forcing two channel output In-Reply-To: <4A9E428E.7010401@FreeBSD.org> References: <4A980B19.4090801@icyb.net.ua> <4A9815F3.9010601@FreeBSD.org> <4A9E40B9.2050004@icyb.net.ua> <4A9E428E.7010401@FreeBSD.org> Message-ID: <4A9E8FEC.7010005@icyb.net.ua> on 02/09/2009 13:01 Alexander Motin said the following: > > HDA controllers have limitations on number of data streams. You can see > it if boot with hw.snd.verbose=4. Usually there are 4 streams supported. > snd_hda allocates them statically now, one device - one data stream. So > you just could hit this limitation because of big number of devices. It > would be good to allocate streams dynamically on open, but it is not > implemented now. > Is this something that could tweak locally - bump some limit or slightly change some logic? What should I look for in the source code? -- Andriy Gapon From mav at FreeBSD.org Wed Sep 2 15:54:00 2009 From: mav at FreeBSD.org (Alexander Motin) Date: Wed Sep 2 15:54:06 2009 Subject: forcing two channel output In-Reply-To: <4A9E8FEC.7010005@icyb.net.ua> References: <4A980B19.4090801@icyb.net.ua> <4A9815F3.9010601@FreeBSD.org> <4A9E40B9.2050004@icyb.net.ua> <4A9E428E.7010401@FreeBSD.org> <4A9E8FEC.7010005@icyb.net.ua> Message-ID: <4A9E950D.2070906@FreeBSD.org> Andriy Gapon wrote: > on 02/09/2009 13:01 Alexander Motin said the following: >> HDA controllers have limitations on number of data streams. You can see >> it if boot with hw.snd.verbose=4. Usually there are 4 streams supported. >> snd_hda allocates them statically now, one device - one data stream. So >> you just could hit this limitation because of big number of devices. It >> would be good to allocate streams dynamically on open, but it is not >> implemented now. > > Is this something that could tweak locally - bump some limit or slightly change > some logic? There is hardware limitation on number of streams. But logic is indeed could be improved. > What should I look for in the source code? Look for sc->num_iss, sc->num_oss and ch->sid. -- Alexander Motin From avg at icyb.net.ua Fri Sep 4 16:10:38 2009 From: avg at icyb.net.ua (Andriy Gapon) Date: Fri Sep 4 16:10:44 2009 Subject: forcing two channel output In-Reply-To: <4A9E950D.2070906@FreeBSD.org> References: <4A980B19.4090801@icyb.net.ua> <4A9815F3.9010601@FreeBSD.org> <4A9E40B9.2050004@icyb.net.ua> <4A9E428E.7010401@FreeBSD.org> <4A9E8FEC.7010005@icyb.net.ua> <4A9E950D.2070906@FreeBSD.org> Message-ID: <4AA13BFA.4080304@icyb.net.ua> on 02/09/2009 18:53 Alexander Motin said the following: > Andriy Gapon wrote: > > There is hardware limitation on number of streams. But logic is indeed > could be improved. So this is the line about HW capabilities? hdac1: Streams: ISS=4 OSS=4 BSS=0 >> What should I look for in the source code? > > Look for sc->num_iss, sc->num_oss and ch->sid. Thanks! But right now I am clueless about what can be done :( -- Andriy Gapon From mav at FreeBSD.org Fri Sep 4 16:35:06 2009 From: mav at FreeBSD.org (Alexander Motin) Date: Fri Sep 4 16:35:12 2009 Subject: forcing two channel output In-Reply-To: <4AA13BFA.4080304@icyb.net.ua> References: <4A980B19.4090801@icyb.net.ua> <4A9815F3.9010601@FreeBSD.org> <4A9E40B9.2050004@icyb.net.ua> <4A9E428E.7010401@FreeBSD.org> <4A9E8FEC.7010005@icyb.net.ua> <4A9E950D.2070906@FreeBSD.org> <4AA13BFA.4080304@icyb.net.ua> Message-ID: <4AA141B0.8090302@FreeBSD.org> Andriy Gapon wrote: > on 02/09/2009 18:53 Alexander Motin said the following: >> Andriy Gapon wrote: >> >> There is hardware limitation on number of streams. But logic is indeed >> could be improved. > > So this is the line about HW capabilities? > hdac1: Streams: ISS=4 OSS=4 BSS=0 Yes. It means 4 input, 4 output and 0 bi-directional data streams supported by this HDA controller. -- Alexander Motin From kris at FreeBSD.org Fri Sep 4 18:01:12 2009 From: kris at FreeBSD.org (Kris Kennaway) Date: Fri Sep 4 18:01:18 2009 Subject: Porting Chromium to FreeBSD In-Reply-To: References: Message-ID: <4AA155E8.5060408@FreeBSD.org> Alex Moura wrote: > Porting Chromium to FreeBSD Ben needs help with sound integration, which he hasn't had success with yet. Kris From m_r_f54 at yahoo.com Sat Sep 5 06:16:57 2009 From: m_r_f54 at yahoo.com (Michael Fort) Date: Sat Sep 5 13:09:33 2009 Subject: Script "configure" failed unexpectedly Message-ID: <937928.32781.qm@web33407.mail.mud.yahoo.com> Error compiling Boinc. I have attached files of the error. -------------- next part -------------- A non-text attachment was scrubbed... Name: boinc-error.odt Type: application/octet-stream Size: 28547 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-multimedia/attachments/20090905/8102a2d2/boinc-error.obj From roberthuff at rcn.com Sat Sep 5 15:17:13 2009 From: roberthuff at rcn.com (Robert Huff) Date: Sat Sep 5 15:17:20 2009 Subject: linux-realplayer distfile? Message-ID: <19106.31223.551975.438941@jerusalem.litteratus.org> I'm trying to install this and get: => mplayer-codecs-linux-real-20040626-1.i386.rpm doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch from ftp://fr2.rpmfind.net/linux/sourceforge/m/mp/mplayer-tru/. fetch: ftp://fr2.rpmfind.net/linux/sourceforge/m/mp/mplayer-tru/mplayer-codecs-linux-real-20040626-1.i386.rpm: File unavailable (e.g., file not found, no access) => Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/mplayer-codecs-linux-real-20040626-1.i386.rpm: File unavailable (e.g., file not found, no access) => Couldn't fetch it - please try to retrieve this => port manually into /usr/ports/distfiles/ and try again. Anyone know where to find the file? Respectfully, Robert Huff From torfinn.ingolfsen at broadpark.no Sat Sep 5 23:20:16 2009 From: torfinn.ingolfsen at broadpark.no (Torfinn Ingolfsen) Date: Sat Sep 5 23:20:24 2009 Subject: "sonix" usb web camera driver? Message-ID: <20090906002013.df375d76.torfinn.ingolfsen@broadpark.no> Hello, I've borrowed this cheap web camera from a friend to test it with FreeBSD. Therer are no physcical markings (logs, text) on the camera itself, it is simply a camera in a black housing. On each side of the camera are three illuminating leds. The leds are controlled by a wheel (turning control) on the usb cable itself. This control allows you to turn leds from zero to full brightness. The camera itself identifes like this under FreeBSD: root@kg-work2# uname -a FreeBSD kg-work2.kg4.no 7.2-STABLE FreeBSD 7.2-STABLE #5: Sat Aug 22 02:29:13 CEST 2009 root@kg-work2.kg4.no:/usr/obj/usr/src/sys/SX270 i386 root@kg-work2# usbdevs -v Controller /dev/usb0: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 powered port 2 powered Controller /dev/usb1: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 powered port 2 powered Controller /dev/usb2: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 powered port 2 addr 2: full speed, power 100 mA, config 1, USB camera(0x612e), vendor 0x0c45(0x0c45), rev 1.01 Controller /dev/usb3: addr 1: high speed, self powered, config 1, EHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 powered port 2 powered port 3 powered port 4 powered port 5 powered port 6 powered root@kg-work2# lsusb Bus /dev/usb2 Device /dev/ugen0: ID 0c45:612e Microdia Searching for this usb id tells me that under Linux, the "sonixj" driver is supposed to work for this camera. (I haven't tested this) None of these ports regonizes the camera: http://www.freshports.org/graphics/snx101util/ http://www.freshports.org/graphics/spcaview/ http://www.freshports.org/multimedia/linux-gspca-kmod/ http://www.freshports.org/multimedia/pwcbsd/ Does anyone know about a driver (for FreeBSD obviously) for this camera? -- Regards, Torfinn Ingolfsen From bugmaster at FreeBSD.org Mon Sep 7 11:07:04 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Sep 7 11:09:01 2009 Subject: Current problem reports assigned to freebsd-multimedia@FreeBSD.org Message-ID: <200909071107.n87B73Ir010306@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/138386 multimedia multimedia/mkvtoolnix lacks the Qt-Gui and configure-k o ports/138272 multimedia graphics/exiv2: add patch from upstream o ports/138213 multimedia Apply SqueezeCenter patches to audio/faad that enable o ports/138056 multimedia multimedia/ogle: buggy pre-configure o ports/137687 multimedia multimedia/libquicktime 1.1.3 build failure o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o ports/137495 multimedia multimedia/linux-realplayer: wrong directory on ftp se o ports/135313 multimedia (patch) Update multimedia/podcatcher to 3.1.4 (Sep 200 o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o ports/133462 multimedia multimedia/x264 build fails on powerpc o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o ports/132431 multimedia multimedia/ogmtools dvdxchap are not installed. f kern/132336 multimedia [sound] [snd_hda] Realtek ALC888 audio chipset does no o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o ports/127084 multimedia multimedia/linux-realplayer is vulnerable s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt f kern/115666 multimedia [sound] Microphone does not work o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst s kern/113950 multimedia [sound] [patch] [request] add per-vchan mixer support o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o kern/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/92512 multimedia [sound] distorted mono output with emu10k1 o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup s kern/83697 multimedia [sound] [snd_mss] [patch] support, docs added for full o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/80632 multimedia [sound] pcm driver missing support for CMI8738 auxilla o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79678 multimedia [sound] sound works except recording from any source f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem 62 problems total. From ganael.laplanche at martymac.com Tue Sep 8 11:40:21 2009 From: ganael.laplanche at martymac.com (Ganael LAPLANCHE) Date: Tue Sep 8 11:40:27 2009 Subject: FreeBSD Siano (sms1xxx) driver updated Message-ID: <20090908111415.M76691@martymac.com> Hi, Here is a new update of the sms1xxx USB DVB-T driver for FreeBSD (>= 8.x). It now has initial support for another USB stick : the 'Hauppauge WinTV MiniStick'. Other (siano-based) sticks should work, but you may need to add VIDs/PIDs as necessary (and send me your patches ;-)). As usual, the new version of the driver is available here : http://contribs.martymac.com Here is a direct link to the README file : http://contribs.martymac.com/FreeBSD-siano/README And another one to the CHANGELOG file : http://contribs.martymac.com/FreeBSD-siano/CHANGELOG Happy streaming, Best regards, Gana?l LAPLANCHE ganael.laplanche@martymac.com http://www.martymac.com From mel.flynn+fbsd.ports at mailing.thruhere.net Wed Sep 9 07:42:18 2009 From: mel.flynn+fbsd.ports at mailing.thruhere.net (Mel Flynn) Date: Wed Sep 9 07:42:37 2009 Subject: FreeBSD unmaintained ports which are currently marked broken In-Reply-To: <20090907062916.180E11CC39@mail.droso.net> References: <20090907062916.180E11CC39@mail.droso.net> Message-ID: <200909090924.00650.mel.flynn+fbsd.ports@mailing.thruhere.net> On Monday 07 September 2009 08:29:16 linimon@freebsd.org wrote: > portname: graphics/gephex > broken because: does not build > build errors: > http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.6.20090822221417/ge >phex-0.4.4_1.log (_Aug_17_05:37:40_UTC_2009) overview: > http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=geph >ex This is a libtool regression / creative use of libtool15 by upstream. I have fixed the offending module, by patching Makefile.am[1], but then run into issues with the frbinmodule. I could probably fix that too, but since I'm neither a videojock, nor have a joystick, I wonder if "making it compile" is good enough. So are there any users of this port that could do runtime testing? -- Mel --- modules/src/chromakeymodule/Makefile.am.orig 2007-04-29 16:53:43.000000000 +0200 +++ modules/src/chromakeymodule/Makefile.am 2009-09-09 08:43:28.000000000 +0200 @@ -11,7 +11,7 @@ chromakeymodule.def: chromakeymodule.spec $(PLUC) def @srcdir@/chromakeymodule.spec -EXEEXT=.@SHAREDLIBEXT@ +EXEEXT=.la bin_PROGRAMS = chromakeymodule @@ -47,7 +47,7 @@ cpuinfoINCLUDES = -I @srcdir@/../../../util/src/cpuinfo endif -chromakeymodule_LDFLAGS = @SHARED_LD_FLAGS@ +chromakeymodule_LDFLAGS = @SHARED_LD_FLAGS@ -module INCLUDES = -I@srcdir@/../../../engine/src/engine \ -I@srcdir@/../../../util/include \ From mailing at ekomedya.com Thu Sep 10 15:18:29 2009 From: mailing at ekomedya.com (=?utf-8?Q?Eko_Bilgisayar_ve_=C4=B0leti=C5=9Fim_Hizmetleri_Ltd=2E_=C5=9Eti?=) Date: Thu Sep 10 15:18:47 2009 Subject: Turkey Calling You To Visit - The Trade SHOW- In Las Vegas Message-ID: <46fefda58511afa9e2301e92b62ff276@localhost.localdomain> [http://www.turkeycalling.us] [http://www.turkeycalling.us] [http://www.turkeycalling.us] [http://www.turkeycalling.us/turkey-fam/turkeyfam.htm] Global Access Travel invites you to the Tradeshow in Las Vegas on September 13-15, 2009. Please visit us to get more information about our organization and services at our booth. If you fill the registration form or leave the business card when you visit us at our booth, you might be lucky visitor who is going to win our daily draw prize; Free inspection trip to Turkey. Yasal Uyar?; Bu e-posta, sadece adreste belirtilen kisi veya kurulusun kullanimini hedeflemekte olup,mesajda yer alan bilgiler kisiye ozel ve gizli olabilir, yasalar ya da anlasmalar geregi ?c?nc? kisiler ile paylasilmasi m?mk?n olmayabilir.Mesaji alan kisi, mesajin g?nderilmek istendigi kisi veya kurulus degilse,bu mesaji yaymak,dagitmak veya kopyalamak yasaktir Mesaj tarafiniza yanlislikla ulasmissa l?tfen mesaji geri g?nderiniz ve sisteminizden siliniz. Global Access Travel bu mesajin icerigi ile ilgili olarak hicbir hukuksal sorumlulugu kabul etmez Disclaimer This e-mail communication is intended only for the use of the individual or entity to which it is addressed, and may contain information that is privileged, confidential and that may not be made public by law or agreement. If the recipient of this message is not the intended recipient or entity, you are hereby notified that any further dissemination, distribution or copying of this information is strictly prohibited. If you have received this message in error, please immediately notify the sender and delete it from your system. The Global Access Traveldoes not accept legal responsibility for the contents of this message. Yasal Uyar?; Bu e-posta, sadece adreste belirtilen kisi veya kurulusun kullanimini hedeflemekte olup,mesajda yer alan bilgiler kisiye ozel ve gizli olabilir, yasalar ya da anlasmalar geregi ?c?nc? kisiler ile paylasilmasi m?mk?n olmayabilir.Mesaji alan kisi, mesajin g?nderilmek istendigi kisi veya kurulus degilse,bu mesaji yaymak,dagitmak veya kopyalamak yasaktir Mesaj tarafiniza yanlislikla ulasmissa l?tfen mesaji geri g?nderiniz ve sisteminizden siliniz. Global Access Travel bu mesajin icerigi ile ilgili olarak hicbir hukuksal sorumlulugu kabul etmez Disclaimer This e-mail communication is intended only for the use of the individual or entity to which it is addressed, and may contain information that is privileged, confidential and that may not be made public by law or agreement. If the recipient of this message is not the intended recipient or entity, you are hereby notified that any further dissemination, distribution or copying of this information is strictly prohibited. If you have received this message in error, please immediately notify the sender and delete it from your system. The Global Access Traveldoes not accept legal responsibility for the contents of this message. Yasal Uyar?; Bu e-posta, sadece adreste belirtilen kisi veya kurulusun kullanimini hedeflemekte olup,mesajda yer alan bilgiler kisiye ozel ve gizli olabilir, yasalar ya da anlasmalar geregi ?c?nc? kisiler ile paylasilmasi m?mk?n olmayabilir.Mesaji alan kisi, mesajin g?nderilmek istendigi kisi veya kurulus degilse,bu mesaji yaymak,dagitmak veya kopyalamak yasaktir Mesaj tarafiniza yanlislikla ulasmissa l?tfen mesaji geri g?nderiniz ve sisteminizden siliniz. Global Access Travel bu mesajin icerigi ile ilgili olarak hicbir hukuksal sorumlulugu kabul etmez Disclaimer This e-mail communication is intended only for the use of the individual or entity to which it is addressed, and may contain information that is privileged, confidential and that may not be made public by law or agreement. If the recipient of this message is not the intended recipient or entity, you are hereby notified that any further dissemination, distribution or copying of this information is strictly prohibited. If you have received this message in error, please immediately notify the sender and delete it from your system. The Global Access Traveldoes not accept legal responsibility for the contents of this message. This message was sent by: TURKEY CALLING YOU TO VISIT "THE TRADE SHOW" IN LAS VEGAS, N?zhetiye Cad, istanbul, Besiktas 34357, Turkey Manage your subscription: http://app.icontact.com/icp/mmail-mprofile.pl?r=47622555&l=82253&s=8XM3&m=587775&c=305227 From jungleboy.ca at gmail.com Fri Sep 11 05:39:52 2009 From: jungleboy.ca at gmail.com (Christopher Thompson) Date: Fri Sep 11 05:40:00 2009 Subject: audio/faad configure Error code 1 Message-ID: <1252645841.57164.65.camel@localhost> Same error as mentioned in the following mailing list message: http://www.freebsd.org/cgi/getmsg.cgi?fetch=41185+95641 +/usr/local/www/db/text/2009/freebsd-multimedia/20090809.freebsd-multimedia ...though I'm building for Quod Libet. Installing the latest package is a work-around, but I'm curious as to why my build environment has problems. Any pointers would be appreciated, TIA. The relevant console output: > checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel > checking whether build environment is sane... yes > checking for a thread-safe mkdir -p... ./install-sh -c -d > checking for gawk... gawk > checking whether gmake sets $(MAKE)... yes > ./configure: 2553: Syntax error: word unexpected (expecting ")") > ===> Script "configure" failed unexpectedly. > Please report the problem to multimedia@FreeBSD.org [maintainer] and attach > the "/usr/ports/audio/faad/work/faad2-2.7/config.log" including the output > of the failure of your make command. Also, it might be a good idea to provide > an overview of all packages installed on your system (e.g. an `ls > /var/db/pkg`). > *** Error code 1 > > Stop in /usr/ports/audio/faad. Please find attached the requested config.log. Output of 'ls /var/db/pkg': > ORBit2-2.14.17 > Terminal-0.2.12_4 > Thunar-1.0.1_1 > a2ps-a4-4.13b_4 > amspsfnt-1.0_5 > appres-1.0.1 > aspell-0.60.6_2 > atk-1.26.0 > auctex-emacs22-11.85_1 > autoconf-2.13.000227_6 > autoconf-2.62 > autoconf-wrapper-20071109 > automake-1.10.1 > automake-1.4.6_5 > automake-1.6.3_1 > automake-wrapper-20071109 > avahi-app-0.6.25_2 > bash-4.0.24 > bdftopcf-1.0.1 > bigreqsproto-1.0.2 > bison-2.4.1,1 > bitmap-1.0.3_1 > bitstream-vera-1.10_4 > bug-buddy-2.26.0_1 > ca_root_nss-3.11.9_2 > cabextract-1.2 > cairo-1.8.8,1 > cairomm-1.8.2 > cdparanoia-3.9.8_8 > cmpsfont-1.0_6 > compositeproto-0.4 > consolekit-0.3.0_8 > cups-base-1.3.10_4 > cups-client-1.3.10_4 > cups-image-1.3.10_4 > cups-pstoraster-8.15.4_4 > curl-7.19.6_1 > damageproto-1.1.0_2 > db41-4.1.25_4 > dbus-1.2.4.6_1 > dbus-glib-0.82 > desktop-file-utils-0.15_1 > djbfft-0.76_2 > djvulibre-nox11-3.5.22_1 > dmidecode-2.10 > dmxproto-2.2.2 > docbook-1.4 > docbook-4.1_3 > docbook-4.2 > docbook-4.3 > docbook-4.4_2 > docbook-4.5_2 > docbook-5.0_1 > docbook-sk-4.1.2_4 > docbook-xml-4.2_1 > docbook-xml-4.3 > docbook-xml-4.4_1 > docbook-xml-4.5 > docbook-xsl-1.75.1 > dri-7.4.4,2 > dri2proto-2.0 > e2fsprogs-libuuid-1.41.8 > emacs-22.3_1,1 > enchant-1.4.2 > encodings-1.0.2,1 > enscript-a4-1.6.4_2 > eog-2.26.3_1 > epiphany-2.26.3_3 > esound-0.2.41 > evieext-1.0.2 > evince-2.26.2_2 > evolution-2.26.3_1 > evolution-data-server-2.26.3_1 > exempi-2.1.1 > expat-2.0.1 > farsight2-0.0.15 > fftw3-3.2.2_1 > file-roller-2.26.3_1,1 > firefox-2.0.0.20_9,1 > firefox-3.5.2,1 > fixesproto-4.0 > flac-1.2.1_1 > flex-2.5.35_1 > font-adobe-100dpi-1.0.0_1 > font-adobe-75dpi-1.0.0 > font-adobe-utopia-100dpi-1.0.1 > font-adobe-utopia-75dpi-1.0.1 > font-adobe-utopia-type1-1.0.1 > font-alias-1.0.1 > font-arabic-misc-1.0.0 > font-bh-100dpi-1.0.0 > font-bh-75dpi-1.0.0 > font-bh-lucidatypewriter-100dpi-1.0.0 > font-bh-lucidatypewriter-75dpi-1.0.0 > font-bh-ttf-1.0.0 > font-bh-type1-1.0.0 > font-bitstream-100dpi-1.0.0 > font-bitstream-75dpi-1.0.0 > font-bitstream-type1-1.0.0 > font-cronyx-cyrillic-1.0.0 > font-cursor-misc-1.0.0 > font-daewoo-misc-1.0.0 > font-dec-misc-1.0.0 > font-ibm-type1-1.0.0 > font-isas-misc-1.0.0 > font-jis-misc-1.0.0 > font-micro-misc-1.0.0 > font-misc-cyrillic-1.0.0 > font-misc-ethiopic-1.0.0 > font-misc-meltho-1.0.0_1 > font-misc-misc-1.0.0 > font-mutt-misc-1.0.0 > font-schumacher-misc-1.0.0_1 > font-screen-cyrillic-1.0.1 > font-sony-misc-1.0.0 > font-sun-misc-1.0.0 > font-util-1.0.1 > font-winitzki-cyrillic-1.0.0 > font-xfree86-type1-1.0.1 > fontcacheproto-0.1.2 > fontconfig-2.6.0,1 > fontsproto-2.0.2 > foomatic-filters-4.0.1_2 > freetype2-2.3.9_1 > fribidi-0.19.2_1 > fusefs-kmod-0.3.9.p1.20080208_6 > fusefs-libs-2.7.4 > gamin-0.1.10_3 > gawk-3.1.6_1 > gcalctool-5.26.3_1,2 > gconf-editor-2.26.0_1,1 > gconf2-2.26.2_1 > gconfmm-2.24.0_1 > gd-2.0.35_1,1 > gdbm-1.8.3_3 > gdl-2.26.2_1 > gdm-2.26.1_7 > gedit-2.26.3_1 > getopt-1.1.4_1 > gettext-0.17_1 > ghostscript8-8.64_6 > gio-fam-backend-2.20.5 > gle-3.1.0_2 > glib-2.20.5 > glibmm-2.20.1,1 > glitz-0.5.6_2 > glproto-1.4.10 > gmake-3.81_3 > gnome-applets-2.26.3_1 > gnome-audio-2.22.2 > gnome-control-center-2.26.0_2 > gnome-desktop-2.26.3_1 > gnome-doc-utils-0.16.1_1 > gnome-icon-theme-2.26.0_2 > gnome-keyring-2.26.3_1 > gnome-media-2.26.0_4 > gnome-menus-2.26.2 > gnome-mime-data-2.18.0_3 > gnome-mount-0.8_3 > gnome-panel-2.26.3_1 > gnome-pilot-2.0.17_1 > gnome-session-2.26.2_1 > gnome-settings-daemon-2.26.1_2 > gnome-spell-1.0.8_3 > gnome-system-monitor-2.26.2_1 > gnome-terminal-2.26.3.1_2 > gnome-themes-2.26.3.1_1 > gnome-user-docs-2.26.2 > gnome-utils-2.26.0_2,1 > gnome-vfs-2.24.1_1 > gnome2-lite-2.26.3 > gnome_subr-1.0 > gnomehier-2.3_12 > gnutls-2.8.3 > gob2-2.0.16 > gperf-3.0.3 > gsfonts-8.11_5 > gstreamer-0.10.24 > gstreamer-ffmpeg-0.10.8 > gstreamer-plugins-0.10.24,3 > gstreamer-plugins-a52dec-0.10.12,3 > gstreamer-plugins-bad-0.10.14,3 > gstreamer-plugins-cdparanoia-0.10.24_1,3 > gstreamer-plugins-core-0.10_10 > gstreamer-plugins-dts-0.10.14,3 > gstreamer-plugins-dvd-0.10.12,3 > gstreamer-plugins-esound-0.10.16,3 > gstreamer-plugins-flac-0.10.16,3 > gstreamer-plugins-gconf-0.10.16,3 > gstreamer-plugins-gio-0.10.24,3 > gstreamer-plugins-gnomevfs-0.10.24,3 > gstreamer-plugins-good-0.10.16,3 > gstreamer-plugins-hal-0.10.16,3 > gstreamer-plugins-libpng-0.10.16,3 > gstreamer-plugins-mad-0.10.12,3 > gstreamer-plugins-mp3-0.10.0_1 > gstreamer-plugins-mpeg2dec-0.10.12,3 > gstreamer-plugins-musepack-0.10.14,3 > gstreamer-plugins-ogg-0.10.24,3 > gstreamer-plugins-pango-0.10.24,3 > gstreamer-plugins-soup-0.10.16,3 > gstreamer-plugins-speex-0.10.16,3 > gstreamer-plugins-theora-0.10.24,3 > gstreamer-plugins-ugly-0.10.12,3 > gstreamer-plugins-vorbis-0.10.24,3 > gstreamer-plugins-wavpack-0.10.16,3 > gstreamer-plugins-xvid-0.10.14,3 > gtar-1.22 > gtk-2.16.6 > gtk-engines2-2.18.2_1 > gtk-xfce-engine-2.6.0_1 > gtkhtml3-3.26.3_1 > gtkmm-2.16.0_1 > gtksourceview-1.8.5_5 > gtksourceview2-2.6.2_1 > gtkspell-2.0.15_1 > gucharmap-2.26.3.1_1 > gvfs-1.2.3_2 > hal-0.5.11_26 > help2man-1.36.4_3 > hicolor-icon-theme-0.10_2 > iceauth-1.0.2 > icon-naming-utils-0.8.7 > icons-tango-0.8.1_2 > icons-tango-extras-0.1.0_2 > inputproto-1.5.0 > intltool-0.40.6 > iso-codes-3.10.3 > iso8879-1986_2 > jasper-1.900.1_8 > jpeg-7 > json-glib-0.6.2_1 > kbproto-1.0.3 > lcms-1.18a_1,1 > libFS-1.0.1 > libGL-7.4.4 > libGLU-7.4.4 > libICE-1.0.4_1,1 > libIDL-0.8.13 > libSM-1.1.0_1,1 > libX11-1.2.1_1,1 > libXScrnSaver-1.1.3 > libXTrap-1.0.0 > libXau-1.0.4 > libXaw-1.0.5_1,1 > libXcomposite-0.4.0,1 > libXcursor-1.1.9_1 > libXdamage-1.1.1 > libXdmcp-1.0.2_1 > libXevie-1.0.2 > libXext-1.0.5,1 > libXfixes-4.0.3_1 > libXfont-1.3.4,1 > libXfontcache-1.0.4 > libXft-2.1.13 > libXi-1.2.1,1 > libXinerama-1.0.3,1 > libXmu-1.0.4,1 > libXp-1.0.0,1 > libXpm-3.5.7 > libXrandr-1.3.0 > libXrender-0.9.4_1 > libXres-1.0.3_3 > libXt-1.0.5_1 > libXtst-1.0.3_1 > libXv-1.0.4,1 > libXvMC-1.0.4_1 > libXxf86dga-1.0.2 > libXxf86misc-1.0.1 > libXxf86vm-1.0.2 > liba52-0.7.4_2 > libart_lgpl-2.3.20,1 > libaudiofile-0.2.6 > libbonobo-2.24.1 > libbonoboui-2.24.1_1 > libcanberra-0.10_5 > libcddb-1.3.0 > libcdio-0.78.2_2 > libcheck-0.9.6 > libcroco-0.6.2 > libdaemon-0.12 > libdca-0.0.5 > libdmx-1.0.2_1 > libdrm-2.4.12 > libdvdcss-1.2.10_1 > libdvdnav-0.1.10_4 > libdvdread-4.1.3_1 > libexecinfo-1.1_3 > libexif-0.6.17 > libexo-0.3.101_1 > libfontenc-1.0.4 > libgcrypt-1.4.4 > libgda4-4.0.4 > libgksu-1.3.8_3 > libgksuui-1.0.7_4 > libglade2-2.6.4_1 > libglut-7.4.4 > libgnome-2.26.0_1 > libgnomecanvas-2.26.0_1 > libgnomekbd-2.26.0_1 > libgnomeprint-2.18.6 > libgnomeprintui-2.18.4_1 > libgnomeui-2.24.1_1 > libgpg-error-1.7 > libgphoto2-2.4.7 > libgsf-1.14.15_1 > libgtkhtml-2.11.1_3 > libgtop-2.26.1 > libgweather-2.26.2.1_1 > libical-0.43_1 > libiconv-1.13.1 > libid3tag-0.15.1b > libidn-1.14 > libltdl-2.2.6a > libmad-0.15.1b_2 > libmpcdec-1.2.6 > libmpeg2-0.5.1 > libmusicbrainz-2.1.5 > libnice-0.0.9 > libnotify-0.4.5_1 > libogg-1.1.4,4 > liboil-0.3.16 > liboldX-1.0.1 > libotf-0.9.9 > libpanelappletmm-2.26.0_1 > libpciaccess-0.10.6 > libproxy-0.2.3 > libpthread-stubs-0.1 > libpurple-2.6.2 > librsvg2-2.26.0_1 > libsamplerate-0.1.7_1 > libsigc++-2.2.4.2 > libsndfile-1.0.20_1 > libsoup-2.26.3_2 > libspectre-0.2.2_1 > libtasn1-2.3 > libtheora-1.0_1 > libtool-2.2.6a > libungif-4.1.4_5 > libusb-0.1.12_4 > libutempter-1.1.5_1 > libvolume_id-0.81.1 > libvorbis-1.2.3,3 > libwnck-2.26.2_1 > libwww-5.4.0_4 > libxcb-1.4 > libxfce4gui-4.6.1_1 > libxfce4menu-4.6.1_1 > libxfce4util-4.6.1 > libxkbfile-1.0.5 > libxkbui-1.0.2_1 > libxklavier-3.9,1 > libxml++-2.26.1 > libxml2-2.7.3_1 > libxslt-1.1.24_2 > linux-f8-atk-1.20.0_1 > linux-f8-cairo-1.4.14_1 > linux-f8-expat-2.0.1_1 > linux-f8-fontconfig-2.4.2_1 > linux-f8-jpeg-6b_1 > linux-f8-png-1.2.22_1 > linux-f8-tiff-3.8.2_1 > linux-f8-xorg-libs-7.3_3 > linux_base-f8-8_12 > luit-1.0.3_1 > lzo2-2.03_2 > lzop-1.02.r1 > m17n-db-1.5.5 > m17n-lib-1.5.5_2 > m4-1.4.13,1 > makedepend-1.0.1,1 > metacity-2.26.0_1 > mkfontdir-1.0.4 > mkfontscale-1.0.6 > mousepad-0.2.16_2 > mpage-2.5.6 > mpeg4ip-libmp4v2-1.6.1 > nasm-2.07,1 > nautilus-2.26.3_2 > nspr-4.8 > nss-3.12.4 > openldap-client-2.4.18 > orage-4.6.1_1 > p5-Compress-Raw-Zlib-2.021 > p5-Compress-Zlib-2.015 > p5-HTML-Parser-3.62 > p5-HTML-Tagset-3.20 > p5-HTML-Tree-3.23 > p5-IO-Compress-Base-2.015 > p5-IO-Compress-Zlib-2.015 > p5-Net-DBus-0.33.6 > p5-Palm-1.3.0 > p5-Text-Iconv-1.7 > p5-Tie-IxHash-1.21 > p5-Time-HiRes-1.9719,1 > p5-URI-1.40 > p5-XML-Filter-BufferText-1.01 > p5-XML-Grove-0.46.a > p5-XML-Handler-YAWriter-0.23 > p5-XML-NamespaceSupport-1.10 > p5-XML-Parser-2.36_1 > p5-XML-SAX-0.96 > p5-XML-SAX-Expat-0.40 > p5-XML-SAX-Writer-0.52 > p5-XML-Simple-2.18 > p5-XML-Twig-3.32 > p5-XML-XPath-1.13 > p5-gettext-1.05_2 > p5-libwww-5.831 > p5-libxml-0.08 > p5-type1inst-0.6.1_5 > pam_helper-1.0 > pango-1.24.5 > pangomm-2.24.0 > pciids-20090807 > pcre-7.9 > perl-5.8.9_3 > pidgin-2.6.2 > pidgin-facebookchat-1.60 > pilot-link-0.12.4,1 > pixman-0.15.4 > pkg-config-0.23_1 > pkgdb.db > png-1.2.38 > policykit-0.9_5 > policykit-gnome-0.9.2_2 > poppler-0.10.6_1 > poppler-data-0.2.1 > poppler-gtk-0.10.6_1 > popt-1.14 > portupgrade-2.4.6_3,2 > printproto-1.0.4 > pulseaudio-0.9.15_5 > py25-gobject-2.16.1 > py25-numeric-24.2_3 > py25-orbit-2.24.0 > py26-cairo-1.8.8 > py26-chardet-1.0.1 > py26-dbus-0.83.0_1 > py26-elementtree-1.2.6_1 > py26-feedparser-4.1_2 > py26-gdata-2.0.0 > py26-gnome-2.26.1_1 > py26-gnome-desktop-2.26.0_1 > py26-gnome-extras-2.25.3_3 > py26-gstreamer-0.10.16 > py26-gtk-2.14.1_1 > py26-gtksourceview-2.6.0_1 > py26-libxml2-2.7.3 > py26-mutagen-1.14 > py26-xml-0.8.4_2 > python25-2.5.4_2 > python26-2.6.2_2 > randrproto-1.3.0 > rarian-0.8.1 > recordproto-1.13.2 > renderproto-0.9.3 > resourceproto-1.0.2 > rpm-3.0.6_14 > ruby+nopthreads-1.8.7.160_4,1 > ruby18-bdb-0.6.5_1 > ruby18-deplate-0.8.5 > samba-3.3.7 > samba-libsmbclient-3.0.36 > screen-4.0.3_6 > scrnsaverproto-1.1.0 > sessreg-1.0.4 > setxkbmap-1.0.4 > shared-mime-info-0.60_1 > smproxy-1.0.2 > speex-1.2.r1_2,1 > sqlite3-3.6.14.2 > startup-notification-0.10 > sudo-1.6.9.20 > synergy-1.3.1_7 > system-tools-backends-2.6.1_1 > t1lib-5.1.2_1,1 > teTeX-base-3.0_16 > teTeX-texmf-3.0_6 > tex-texmflocal-1.9 > texi2html-1.82,1 > thttpd-2.25b_3 > tiff-3.8.2_4 > totem-2.26.3_1 > totem-pl-parser-2.26.2_1 > trapproto-3.4.3 > twm-1.0.4 > unique-1.0.6_1 > unzip-5.52_5 > v4l_compat-1.0.20060801 > videoproto-2.2.2 > vte-0.20.5 > wavpack-4.50.1 > webfonts-0.30_6 > x11perf-1.5 > xauth-1.0.3 > xbacklight-1.1 > xbitmaps-1.0.1 > xcalc-1.0.2_1 > xcb-proto-1.5 > xcb-util-0.3.5 > xcmiscproto-1.1.2 > xcmsdb-1.0.1 > xcursor-themes-1.0.1_1 > xcursorgen-1.0.2 > xdpyinfo-1.0.3 > xdriinfo-1.0.2 > xev-1.0.3 > xextproto-7.0.5 > xf86-input-keyboard-1.3.2_2 > xf86-input-mouse-1.4.0_6 > xf86-video-ati-6.12.2_1 > xf86-video-intel-2.7.1 > xf86-video-mach64-6.8.1 > xf86-video-nv-2.1.13_1 > xf86-video-openchrome-0.2.903_2 > xf86-video-r128-6.8.0_3 > xf86-video-radeonhd-1.2.5_2 > xf86-video-vesa-2.1.0_2 > xf86bigfontproto-1.1.2 > xf86dga-1.0.2_1 > xf86dgaproto-2.0.3 > xf86driproto-2.0.4 > xf86miscproto-0.9.2 > xf86vidmodeproto-2.2.2 > xfce-4.6.1 > xfce4-appfinder-4.6.1_1 > xfce4-conf-4.6.1_1 > xfce4-desktop-4.6.1_1 > xfce4-mixer-4.6.1_1 > xfce4-panel-4.6.1_1 > xfce4-print-4.6.1_1 > xfce4-session-4.6.1_1 > xfce4-settings-4.6.1_1 > xfce4-utils-4.6.1_1 > xfce4-wm-4.6.1_1 > xfce4-wm-themes-4.6.0 > xfce4-xfapplet-plugin-0.1.0_8 > xgamma-1.0.2 > xgc-1.0.1_1 > xhost-1.0.2 > xineramaproto-1.1.2 > xinit-1.1.1_1 > xinput-1.4.2 > xkbcomp-1.0.5 > xkbevd-1.0.2 > xkbutils-1.0.1_2 > xkeyboard-config-1.6_1 > xkill-1.0.1 > xlsatoms-1.0.1 > xlsclients-1.0.1 > xmlcatmgr-2.2 > xmlcharent-0.3_2 > xmodmap-1.0.3 > xorg-7.4_2 > xorg-apps-7.4_1 > xorg-docs-1.4,1 > xorg-drivers-7.4_2 > xorg-fonts-100dpi-7.4 > xorg-fonts-7.4 > xorg-fonts-75dpi-7.4 > xorg-fonts-cyrillic-7.4 > xorg-fonts-miscbitmaps-7.4 > xorg-fonts-truetype-7.4 > xorg-fonts-type1-7.4 > xorg-libraries-7.4 > xorg-macros-1.2.1 > xorg-server-1.6.1,1 > xpr-1.0.2 > xprop-1.0.4 > xproto-7.0.15 > xrandr-1.3.0 > xrdb-1.0.5 > xrefresh-1.0.2 > xscreensaver-gnome-5.09 > xset-1.0.4 > xsetmode-1.0.0 > xsetroot-1.0.2 > xterm-247 > xtrans-1.2.3 > xvid-1.2.2_1,1 > xvinfo-1.0.2 > xwd-1.0.2 > xwininfo-1.0.4 > xwud-1.0.1 > yelp-2.26.0_1 > zenity-2.26.0_1 > zip-3.0 From gesbbb at yahoo.com Fri Sep 11 11:43:28 2009 From: gesbbb at yahoo.com (Jerry) Date: Fri Sep 11 11:43:41 2009 Subject: Unable to fetch multimedia/linux-realplayer Message-ID: <20090911071644.125571d4@scorpio.seibercom.net> I am unable to fetch the /usr/ports/multimedia/linux-realplayer distfile. /usr/ports/multimedia/linux-realplayer # make fetch => mplayer-codecs-linux-real-20040626-1.i386.rpm doesn't seem to exist in /usr/p orts/distfiles/. => Attempting to fetch from ftp://fr2.rpmfind.net/linux/sourceforge/m/mp/mplayer -tru/. fetch: ftp://fr2.rpmfind.net/linux/sourceforge/m/mp/mplayer-tru/mplayer-codecs-l inux-real-20040626-1.i386.rpm: File unavailable (e.g., file not found, no access ) => Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/mplayer-codecs-linux-re al-20040626-1.i386.rpm: File unavailable (e.g., file not found, no access) => Couldn't fetch it - please try to retrieve this => port manually into /usr/ports/distfiles/ and try again. *** Error code 1 Am I the only one having this problem? -- Jerry gesbbb@yahoo.com In God we trust; all else we walk through. From dikshie at sfc.wide.ad.jp Sat Sep 12 14:40:09 2009 From: dikshie at sfc.wide.ad.jp (dikshie) Date: Sat Sep 12 14:40:15 2009 Subject: ports/133462: multimedia/x264 build fails on powerpc Message-ID: <200909121440.n8CEe9uG072911@freefall.freebsd.org> The following reply was made to PR ports/133462; it has been noted by GNATS. From: dikshie To: bug-followup@FreeBSD.org, jrh29@alumni.cwru.edu Cc: Subject: Re: ports/133462: multimedia/x264 build fails on powerpc Date: Sat, 12 Sep 2009 23:36:29 +0900 --Apple-Mail-27--418917249 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Hi, i made patch. please review. ;) --Apple-Mail-27--418917249 Content-Disposition: attachment; filename=patch-x264.txt Content-Type: text/plain; x-unix-mode=0644; name="patch-x264.txt" Content-Transfer-Encoding: 7bit --- Makefile.orig 2009-09-12 20:50:51.000000000 +0900 +++ Makefile 2009-09-12 21:52:37.000000000 +0900 @@ -6,9 +6,10 @@ # $Id: Makefile 30 2006-10-30 22:15:26Z buhnux $ PORTNAME= x264 -PORTVERSION= 0.0.20081218 +PORTVERSION= 0.0.20090120 CATEGORIES= multimedia -MASTER_SITES= http://downloads.videolan.org/pub/videolan/x264/snapshots/ \ +MASTER_SITES= ftp://ftp.videolan.org/pub/videolan/x264/snapshots/ \ + http://downloads.videolan.org/pub/videolan/x264/snapshots/ \ http://samples.mplayerhq.hu/yuv4mpeg2/:pgo DISTNAME= ${PORTNAME}-snapshot-${PORTVERSION:S/0.0.//}-2245 DISTFILES= ${PORTNAME}-snapshot-${PORTVERSION:S/0.0.//}-2245${EXTRACT_SUFX} --- distinfo.orig 2009-09-12 21:59:21.000000000 +0900 +++ distinfo 2009-09-12 21:59:27.000000000 +0900 @@ -1,6 +1,3 @@ -MD5 (x264/x264-snapshot-20081218-2245.tar.bz2) = a5034835110bf3302539648323c73517 -SHA256 (x264/x264-snapshot-20081218-2245.tar.bz2) = 729fbdd18d4e84980fb8533cdf60379f86728e950277370c226486d2a7857167 -SIZE (x264/x264-snapshot-20081218-2245.tar.bz2) = 2336724 -MD5 (x264/example.y4m.bz2) = e0948016cd4a52e75d6a74d998bd6ae6 -SHA256 (x264/example.y4m.bz2) = a5bec9d37362bd9d7773fbd0644643f9ec096d654d20823004e88d5df32bbff7 -SIZE (x264/example.y4m.bz2) = 4910029 +MD5 (x264/x264-snapshot-20090120-2245.tar.bz2) = df05e866a73286dc039ee0b0029a5bea +SHA256 (x264/x264-snapshot-20090120-2245.tar.bz2) = 52042ad6a6f28d014b5f8375700cf43416273aed1d36808e5b79267d47ee7755 +SIZE (x264/x264-snapshot-20090120-2245.tar.bz2) = 2385350 --- pkg-plist.orig 2009-09-12 21:58:48.000000000 +0900 +++ pkg-plist 2009-09-12 21:58:57.000000000 +0900 @@ -2,5 +2,5 @@ include/x264.h lib/libx264.a lib/libx264.so -lib/libx264.so.65 +lib/libx264.so.66 libdata/pkgconfig/x264.pc --Apple-Mail-27--418917249-- From y.k.thalib at gmail.com Sun Sep 13 06:45:38 2009 From: y.k.thalib at gmail.com (Yasir Khalid) Date: Sun Sep 13 06:45:45 2009 Subject: no sound: snd_hda, amd64, FreeBSD 7.2. (hdac0: Codec #3 is not responding! Probing aborted.) Message-ID: Dear guys, I dont have any sound works in my system, just after i load the snd_hda. my cat /dev/sndstat > FreeBSD Audio Driver (newpcm: 64bit 2007061600/amd64) > Installed devices: > pcm0: at cad 1 nid 1 on hdac0 kld > snd_hda [MPSAFE] (1p:1v/1r:1v channels duplex default) > pcm1: at cad 1 nid 1 on hdac0 kld > snd_hda [MPSAFE] (1p:1v/0r:0v channels) > dmesg > hdac0: mem > 0xc0000000-0xc0003fff irq 16 at device 20.2 on pci0 > hdac0: HDA Driver Revision: 20090329_0131 > hdac0: [ITHREAD] > hdac0: HDA Codec #0: Lucent/Agere Systems (Unknown) > hdac0: HDA Codec #1: Realtek ALC262 > hdac0: hdac_command_send_internal: TIMEOUT numcmd=1, sent=1, received=0 > hdac0: hdac_command_send_internal: TIMEOUT numcmd=1, sent=1, received=0 > hdac0: Codec #3 is not responding! Probing aborted. > pcm0: at cad 1 nid 1 on hdac0 > pcm1: at cad 1 nid 1 on hdac0 > mixer > Mixer vol is currently set to 100:100 > Mixer pcm is currently set to 100:100 > Mixer speaker is currently set to 75:75 > Mixer mic is currently set to 0:0 > Mixer mix is currently set to 100:100 > Mixer rec is currently set to 0:0 > Mixer monitor is currently set to 75:75 > sudo sysctl hw.snd.default_unit=1 > hw.snd.default_unit: 0 -> 1 > > cat /dev/random > /dev/dsp0.0 > ^C > cat /dev/random > /dev/dsp1.0 > ^C > result: no sound heard Any help will be much appreciated. ps: I cant use FreeBSD 8.0 beta3, it has some kernel bug my laptop, i should stick with 7.2-release. -- - Yasir - From bugmaster at FreeBSD.org Mon Sep 14 11:07:04 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Sep 14 11:08:47 2009 Subject: Current problem reports assigned to freebsd-multimedia@FreeBSD.org Message-ID: <200909141107.n8EB7430072407@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/138386 multimedia multimedia/mkvtoolnix lacks the Qt-Gui and configure-k o ports/138272 multimedia graphics/exiv2: add patch from upstream o ports/138213 multimedia Apply SqueezeCenter patches to audio/faad that enable o ports/138056 multimedia multimedia/ogle: buggy pre-configure o ports/137687 multimedia multimedia/libquicktime 1.1.3 build failure o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o ports/137495 multimedia multimedia/linux-realplayer: wrong directory on ftp se o ports/135313 multimedia (patch) Update multimedia/podcatcher to 3.1.4 (Sep 200 o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o ports/133462 multimedia multimedia/x264 build fails on powerpc o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o ports/132431 multimedia multimedia/ogmtools dvdxchap are not installed. f kern/132336 multimedia [sound] [snd_hda] Realtek ALC888 audio chipset does no o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o ports/127084 multimedia multimedia/linux-realplayer is vulnerable s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt f kern/115666 multimedia [sound] Microphone does not work o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst s kern/113950 multimedia [sound] [patch] [request] add per-vchan mixer support o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o kern/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/92512 multimedia [sound] distorted mono output with emu10k1 o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup s kern/83697 multimedia [sound] [snd_mss] [patch] support, docs added for full o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/80632 multimedia [sound] pcm driver missing support for CMI8738 auxilla o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79678 multimedia [sound] sound works except recording from any source f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem 62 problems total. From ariff at FreeBSD.org Mon Sep 14 19:24:29 2009 From: ariff at FreeBSD.org (Ariff Abdullah) Date: Mon Sep 14 19:24:42 2009 Subject: Porting Chromium to FreeBSD In-Reply-To: <4AA155E8.5060408@FreeBSD.org> References: <4AA155E8.5060408@FreeBSD.org> Message-ID: <20090915032422.5914506c.ariff@FreeBSD.org> [CC'ing to ports@] On Fri, 04 Sep 2009 19:01:12 +0100 Kris Kennaway wrote: > Alex Moura wrote: > > Porting Chromium to FreeBSD > > Ben needs help with sound integration, which he hasn't had success > with yet. > > Should this suffice? http://people.freebsd.org/~ariff/libasound/ -- Ariff Abdullah FreeBSD ... Recording in stereo is obviously too advanced and confusing for us idiot ***** users :P ........ ... Going with the standard and orthodox is the death of intellect .............. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 195 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-multimedia/attachments/20090914/335571b1/attachment.pgp From morganw at chemikals.org Mon Sep 14 23:21:22 2009 From: morganw at chemikals.org (Wes Morgan) Date: Mon Sep 14 23:21:29 2009 Subject: Porting Chromium to FreeBSD In-Reply-To: <20090915032422.5914506c.ariff@FreeBSD.org> References: <4AA155E8.5060408@FreeBSD.org> <20090915032422.5914506c.ariff@FreeBSD.org> Message-ID: On Tue, 15 Sep 2009, Ariff Abdullah wrote: > [CC'ing to ports@] > > On Fri, 04 Sep 2009 19:01:12 +0100 > Kris Kennaway wrote: >> Alex Moura wrote: >>> Porting Chromium to FreeBSD >> >> Ben needs help with sound integration, which he hasn't had success >> with yet. >> >> > > Should this suffice? > > http://people.freebsd.org/~ariff/libasound/ > This looks very interesting. Nice work. I recall reading, years ago, that there was some kind of GPL/BSD licensing issue with the ALSA headers that would pose problems for FreeBSD. Was that just misinformed-ness, or would this have to be a port? From ariff at FreeBSD.org Tue Sep 15 00:05:22 2009 From: ariff at FreeBSD.org (Ariff Abdullah) Date: Tue Sep 15 00:05:34 2009 Subject: Porting Chromium to FreeBSD In-Reply-To: References: <4AA155E8.5060408@FreeBSD.org> <20090915032422.5914506c.ariff@FreeBSD.org> Message-ID: <20090915080517.455afea2.ariff@FreeBSD.org> On Mon, 14 Sep 2009 18:21:16 -0500 (CDT) Wes Morgan wrote: > On Tue, 15 Sep 2009, Ariff Abdullah wrote: > > > [CC'ing to ports@] > > > > On Fri, 04 Sep 2009 19:01:12 +0100 > > Kris Kennaway wrote: > >> Alex Moura wrote: > >>> Porting Chromium to FreeBSD > >> > >> Ben needs help with sound integration, which he hasn't had > >success > with yet. > >> > >> > > > > Should this suffice? > > > > http://people.freebsd.org/~ariff/libasound/ > > > > > This looks very interesting. Nice work. I recall reading, years ago, > that there was some kind of GPL/BSD licensing issue with the ALSA > headers that would pose problems for FreeBSD. Was that just > misinformed-ness, or would this have to be a port? > This is just the userland (library) part. I believe Net/Df bsd have these in their pkgsrc since many moons ago. -- Ariff Abdullah FreeBSD ... Recording in stereo is obviously too advanced and confusing for us idiot ***** users :P ........ ... Going with the standard and orthodox is the death of intellect .............. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 195 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-multimedia/attachments/20090915/73d5aee7/attachment.pgp From avg at icyb.net.ua Tue Sep 15 11:10:00 2009 From: avg at icyb.net.ua (Andriy Gapon) Date: Tue Sep 15 11:10:07 2009 Subject: libmad mp3 distortions Message-ID: <4AAF7604.3070304@icyb.net.ua> I can reproduce the following on two very different machines: one is older Intel CPU/chipset, i386 stable/7; the other is newer AMD CPU/chipset, amd64 head. When I play certain MP3 files with any player that uses libmad for MP3 decoding, there are some very loud distortions from time to time. Something like what happens when too strong signal gets clipped. Examples of the programs: audacious2, mpg321. On the other hand, mpg123 plays the same files without any quality problems. I wonder if anybody else sees this too and if, perhaps, this is a known problem. I can privately share an MP3 file that demonstrates the problem (upon request). This is what 'file' has to say about it: Audio file with ID3 version 2.3.0, contains: MPEG ADTS, layer III, v1, 192 kbps, 44.1 kHz, JntStereo P.S. i am quite surprised, because while googling I've seen that there was a sound distortion problem with mplayer and in that case they worked around it by switching to libmad for mp3. -- Andriy Gapon From chmeeedalf at gmail.com Wed Sep 16 01:50:04 2009 From: chmeeedalf at gmail.com (Justin Hibbits) Date: Wed Sep 16 01:50:10 2009 Subject: ports/133462: multimedia/x264 build fails on powerpc Message-ID: <200909160150.n8G1o4TS052645@freefall.freebsd.org> The following reply was made to PR ports/133462; it has been noted by GNATS. From: Justin Hibbits To: bug-followup@FreeBSD.org, jrh29@alumni.cwru.edu Cc: Subject: Re: ports/133462: multimedia/x264 build fails on powerpc Date: Tue, 15 Sep 2009 21:44:07 -0400 This fixes the altivec problem, but it looks like cpu.c needs to be patched for x264_cpu_detect before it fully compiles. I'll look into patching by the weekend. From fbsd at opal.com Wed Sep 16 09:18:45 2009 From: fbsd at opal.com (J.R. Oldroyd) Date: Wed Sep 16 09:18:56 2009 Subject: snd_hda stutter Message-ID: <20090916111736.0459316d@shibato.opal.com> I am using snd_hda on a Toshiba Satellite L105, FreeBSD 7-stable. The verbose info is here: http://opal.com/jr/snd_hda/default.txt The audio suffers from periodic "stutters", about 1 to 3 seconds in duration, occurring every minute or two, which as you might imagine is rather annoying. Doesn't seem to matter what the audio source is: mplayer, vlc, xfmedia or a web-based stream. The effect can be described something like this: "Where ever you are, you're wi-i-i-i-i-th the BBC in London". After it recovers, it will play fine again until the next glitch. Is this easily fixed? -jr From fbsd at opal.com Wed Sep 16 09:37:33 2009 From: fbsd at opal.com (J.R. Oldroyd) Date: Wed Sep 16 09:37:39 2009 Subject: snd_hda same output on two pcms? Message-ID: <20090916110747.1c812b79@shibato.opal.com> Is it possible to configure snd_hda so that one output is available on two pcm devices? I would like: pcm0: built-in speaker, headphone jack mic pcm1: built-in speaker only My default hda config is here: http://opal.com/jr/snd_hda/default.txt I added the following device hints: hint.hdac.0.cad3.nid20.config="as=1 seq=0" hint.hdac.0.cad3.nid21.config="as=1 seq=15" hint.hdac.0.cad3.nid24.config="as=2 seq=0" hint.hdac.0.cad3.nid25.config="as=2 seq=1" hint.hdac.0.cad3.nid22.config="as=3 seq=0 device=Speaker conn=Fixed" The result is here: http://opal.com/jr/snd_hda/changed.txt The result is that pcm0 works as expected, but the initialization of pcm1 fails, as can be seen in the trace: hdac0: Tracing association 2 (3) hdac0: Unable to trace pin 22 seq 0 with min nid 0 hdac0: Association 2 (3) trace failed I also tried: hint.hdac.0.cad3.nid22.config="0x99130130" with the same failed result. I note the last paragraph in the snd_hda man page: BUGS Due to OSS limitation multichannel (not multidevice) playback is not supported. Does that mean I cannot do what I am attempting to do? -jr From Alexander at Leidinger.net Thu Sep 17 14:33:13 2009 From: Alexander at Leidinger.net (Alexander Leidinger) Date: Thu Sep 17 14:33:21 2009 Subject: libmad mp3 distortions In-Reply-To: <4AAF7604.3070304@icyb.net.ua> References: <4AAF7604.3070304@icyb.net.ua> Message-ID: <20090917161442.176733aid7epmr8k@webmail.leidinger.net> Quoting Andriy Gapon (from Tue, 15 Sep 2009 14:09:56 +0300): > > I can reproduce the following on two very different machines: one is > older Intel > CPU/chipset, i386 stable/7; the other is newer AMD CPU/chipset, amd64 head. > When I play certain MP3 files with any player that uses libmad for > MP3 decoding, > there are some very loud distortions from time to time. Something like what > happens when too strong signal gets clipped. > Examples of the programs: audacious2, mpg321. > On the other hand, mpg123 plays the same files without any quality problems. > > I wonder if anybody else sees this too and if, perhaps, this is a > known problem. Have you tried to play it with "madplay -v -a -6"? This will lower the volume by 6dB. IIRC this is still with the sound before the conversation to PCM. If this prevents the clipping, then it is normal. The reason is that because of rounding (and other operations) the value of a sample can be higher (or lower) than originally. If it was at the max level before, it can now exceed the max -> clipping. madplay is following the rules very strictly (and IIRC working with higher precision and bitsize), while other players have bigger mathematical errors. This would explain then, why you see this with madplay but not with other players. The problem I describe is not in the decoding step, the problem is at the encoding level. Bye, Alexander. -- There is no statute of limitations on stupidity. http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From pschmehl_lists at tx.rr.com Thu Sep 17 22:30:08 2009 From: pschmehl_lists at tx.rr.com (Paul Schmehl) Date: Thu Sep 17 22:30:21 2009 Subject: multimedia/py-gstreamer fails to build Message-ID: i386 Intel, FreeBSD 7.2-STABLE, freshly csup'd ports tree, python 2.6 is the default version. Maybe the upgrade to python 2.6 broke this port? Could not write method GstStructure.id_set: varargs functions not supported Could not write method GstStructure.get_uint: No ArgType for 'guint*' Could not write method GstIndexEntry.assoc_map: No ArgType for 'gint64*' Could not write getter for GstStaticCaps.caps: write_return not implemented for GstCaps Could not write method GstTypeFind.suggest_simple: varargs functions not supported Could not write method GstIndex.set_filter: No ArgType for 'GstIndexFilter' Could not write method GstIndex.set_filter_full: No ArgType for 'GstIndexFilter' Could not write method GstIndex.set_resolver: No ArgType for 'GstIndexResolver' Could not write method GstIndex.set_resolver_full: No ArgType for 'GstIndexResolver' Could not write method GstIndex.get_writer_id: No ArgType for 'gint*' Could not write method GstIndex.add_associationv: No ArgType for 'const-GstIndexAssociation*' Could not write method GstIndex.add_association: varargs functions not supported Could not write method GstIndex.add_object: No ArgType for 'gpointer' Could not write method GstIndex.get_assoc_entry_full: No ArgType for 'GCompareDataFunc' Could not write virtual accessor method GstIndex.get_assoc_entry: No ArgType for 'GCompareDataFunc' Could not write virtual proxy GstIndex.get_assoc_entry: No ArgType for 'GCompareDataFunc' Could not write method GstElement.message_full: No ArgType for 'GQuark' Could not write virtual accessor method GstElement.get_query_types: No ArgType for 'const-GstQueryType*' Could not write virtual accessor method GstElement.get_state: No ArgType for 'GstState*' Could not write virtual proxy GstElement.get_query_types: No ArgType for 'const-GstQueryType*' Could not write virtual proxy GstElement.get_state: No ArgType for 'GstState*' Could not write virtual accessor method GstClock.wait: No ArgType for 'GstClockEntry*' Could not write virtual accessor method GstClock.wait_jitter: No ArgType for 'GstClockEntry*' Could not write virtual accessor method GstClock.wait_async: No ArgType for 'GstClockEntry*' Could not write virtual accessor method GstClock.unschedule: No ArgType for 'GstClockEntry' Could not write virtual proxy GstClock.wait: No ArgType for 'GstClockEntry*' Could not write virtual proxy GstClock.wait_jitter: No ArgType for 'GstClockEntry*' Could not write virtual proxy GstClock.wait_async: No ArgType for 'GstClockEntry*' Could not write virtual proxy GstClock.unschedule: No ArgType for 'GstClockEntry' Could not write method GstBus.add_watch_full: No ArgType for 'GstBusFunc' Could not write method GstPad.set_bufferalloc_function: No ArgType for 'GstPadBufferAllocFunction' Could not write method GstPad.set_getrange_function: No ArgType for 'GstPadGetRangeFunction' Could not write method GstPad.set_checkgetrange_function: No ArgType for 'GstPadCheckGetRangeFunction' Could not write method GstPad.set_unlink_function: No ArgType for 'GstPadUnlinkFunction' Could not write method GstPad.set_acceptcaps_function: No ArgType for 'GstPadAcceptCapsFunction' Could not write method GstPad.set_fixatecaps_function: No ArgType for 'GstPadFixateCapsFunction' Could not write method GstPad.set_internal_link_function: No ArgType for 'GstPadIntLinkFunction' Could not write method GstPad.set_iterate_internal_links_function: No ArgType for 'GstPadIterIntLinkFunction' Could not write method GstPad.set_query_type_function: No ArgType for 'GstPadQueryTypeFunction' Could not write method GstPad.dispatcher: No ArgType for 'GstPadDispatcherFunction' Warning: generating old-style constructor for:gst_ghost_pad_new Warning: generating old-style constructor for:gst_pad_template_new Could not write method GstPluginFeature.type_name_filter: No ArgType for 'GstTypeNameData*' Could not write method GstRegistry.plugin_filter: No ArgType for 'GstPluginFilter' Could not write method GstRegistry.feature_filter: No ArgType for 'GstPluginFeatureFilter' Warning: generating old-style constructor for:gst_net_client_clock_new Warning: generating old-style constructor for:gst_net_time_provider_new Could not write method GstControlSource.get_value: No ArgType for 'GValue*' Could not write method GstControlSource.get_value_array: No ArgType for 'GstValueArray*' Could not write method GstControlSource.bind: No ArgType for 'GParamSpec*' Could not write method GstController.get_all: No ArgType for 'const-GList*' Could not write method GstController.get_value_arrays: No ArgType for 'GSList*' Could not write method GstController.get_value_array: No ArgType for 'GstValueArray*' Could not write method GstInterpolationControlSource.set: No ArgType for 'GValue*' Could not write method GstInterpolationControlSource.set_from_list: No ArgType for 'GSList*' Could not write method GstInterpolationControlSource.get_all: No ArgType for 'GList*' Could not write method GstBaseSink.wait_eos: No ArgType for 'GstClockTimeDiff*' Could not write virtual accessor method GstBaseSink.buffer_alloc: No ArgType for 'GstBuffer**' Could not write virtual proxy GstBaseSink.buffer_alloc: No ArgType for 'GstBuffer**' Could not write virtual accessor method GstBaseTransform.prepare_output_buffer: No ArgType for 'GstBuffer**' Could not write virtual proxy GstBaseTransform.prepare_output_buffer: No ArgType for 'GstBuffer**' Could not write method GstCollectPads.set_function: No ArgType for 'GstCollectPadsFunction' Could not write method GstCollectPads.add_pad: No ArgType for 'GstCollectData*' Could not write method GstCollectPads.add_pad_full: No ArgType for 'GstCollectDataDestroyNotify' Could not write method GstCollectPads.peek: No ArgType for 'GstCollectData*' Could not write method GstCollectPads.pop: No ArgType for 'GstCollectData*' Could not write method GstCollectPads.read: No ArgType for 'GstCollectData*' Could not write method GstCollectPads.read_buffer: No ArgType for 'GstCollectData*' Could not write method GstCollectPads.take_buffer: No ArgType for 'GstCollectData*' Could not write method GstCollectPads.flush: No ArgType for 'GstCollectData*' Warning: generating old-style constructor for:gst_data_queue_new Could not write constructor for GstDataQueue: No ArgType for 'GstDataQueueCheckFullFunction' Could not write method GstDataQueue.push: No ArgType for 'GstDataQueueItem*' Could not write method GstDataQueue.pop: No ArgType for 'GstDataQueueItem**' Could not write method GstDataQueue.get_level: No ArgType for 'GstDataQueueSize*' Could not write method GstTagSetter.add_tags: varargs functions not supported Could not write method GstTagSetter.add_tag_values: varargs functions not supported Could not write method GstTagSetter.add_tag_valist_values: No ArgType for 'va_list' Could not write method GstPreset.get_meta: No ArgType for 'gchar**' Could not write function object_control_properties: varargs functions not supported Could not write function object_uncontrol_properties: varargs functions not supported Could not write function object_get_value_arrays: No ArgType for 'GSList*' Could not write function object_get_value_array: No ArgType for 'GstValueArray*' Could not write function gst_controller_init: No ArgType for 'int*' Could not write function gst_dp_crc: No ArgType for 'const-guint8*' Could not write function dp_header_from_buffer: No ArgType for 'const-GstBuffer*' Could not write function dp_packet_from_caps: No ArgType for 'guint*' Could not write function dp_packet_from_event: No ArgType for 'const-GstEvent*' Could not write function type_find_helper_get_range: No ArgType for 'GstTypeFindHelperGetRangeFunction' Could not write function debug_add_log_function: No ArgType for 'GstLogFunction' Could not write function debug_remove_log_function: No ArgType for 'GstLogFunction' Could not write function debug_remove_log_function_by_data: No ArgType for 'gpointer' Could not write function debug_get_all_categories: No ArgType for 'GSList*' Could not write function debug_remove_log_function: No ArgType for 'GstLogFunction' Could not write function debug_remove_log_function_by_data: No ArgType for 'gpointer' Could not write function util_array_binary_search: No ArgType for 'gpointer' Could not write function parse_launch_full: No ArgType for 'GstParseContext*' Could not write function parse_launchv_full: No ArgType for 'const-gchar**' Could not write function plugin_register_static: No ArgType for 'const-GstPluginDesc*' Could not write function poll_new_timer: No ArgType for 'GstPoll*' Could not write function tag_register: No ArgType for 'GstTagMergeFunc' Could not write function tag_merge_use_first: No ArgType for 'GValue*' Could not write function tag_merge_strings_with_comma: No ArgType for 'GValue*' Could not write function task_create: No ArgType for 'GstTaskFunction' Warning: Constructor for GstGhostPad needs to be updated to new API See http://live.gnome.org/PyGTK_2fWhatsNew28#update-constructors Warning: Constructor for GstPadTemplate needs to be updated to new API See http://live.gnome.org/PyGTK_2fWhatsNew28#update-constructors Warning: Constructor for GstNetClientClock needs to be updated to new API See http://live.gnome.org/PyGTK_2fWhatsNew28#update-constructors Warning: Constructor for GstNetTimeProvider needs to be updated to new API See http://live.gnome.org/PyGTK_2fWhatsNew28#update-constructors Warning: Constructor for GstController needs to be updated to new API See http://live.gnome.org/PyGTK_2fWhatsNew28#update-constructors Warning: Constructor for GstDataQueue needs to be updated to new API See http://live.gnome.org/PyGTK_2fWhatsNew28#update-constructors ***INFO*** The coverage of global functions is 86.41% (159/184) ***INFO*** The coverage of methods is 90.07% (490/544) ***INFO*** The coverage of virtual proxies is 86.76% (59/68) ***INFO*** The coverage of virtual accessors is 87.67% (64/73) ***INFO*** The coverage of interface proxies is 100.00% (5/5) CC gst.o gst.c: In function 'pygst_register_classes': gst.c:27079: error: 'GST_TYPE_BUFFER_LIST' undeclared (first use in this function) gst.c:27079: error: (Each undeclared identifier is reported only once gst.c:27079: error: for each function it appears in.) gmake[3]: *** [_gst_la-gst.lo] Error 1 gmake[2]: *** [all-recursive] Error 1 gmake[1]: *** [all-recursive] Error 1 gmake: *** [all] Error 2 *** Error code 1 Stop in /usr/ports/multimedia/py-gstreamer. -- Paul Schmehl, Senior Infosec Analyst As if it wasn't already obvious, my opinions are my own and not those of my employer. ******************************************* "It is as useless to argue with those who have renounced the use of reason as to administer medication to the dead." Thomas Jefferson From kwm at rainbow-runner.nl Thu Sep 17 23:42:05 2009 From: kwm at rainbow-runner.nl (Koop Mast) Date: Thu Sep 17 23:42:13 2009 Subject: multimedia/py-gstreamer fails to build In-Reply-To: References: Message-ID: <1253230015.2187.2491.camel@headache.rainbow-runner.nl> On Thu, 2009-09-17 at 22:01 +0000, Paul Schmehl wrote: > i386 Intel, FreeBSD 7.2-STABLE, freshly csup'd ports tree, python 2.6 is the > default version. > > Maybe the upgrade to python 2.6 broke this port? > Compiles fine here, are your installed gstreamer ports up to date? -Koop > ***INFO*** The coverage of methods is 90.07% (490/544) > ***INFO*** The coverage of virtual proxies is 86.76% (59/68) > ***INFO*** The coverage of virtual accessors is 87.67% (64/73) > ***INFO*** The coverage of interface proxies is 100.00% (5/5) > CC gst.o > gst.c: In function 'pygst_register_classes': > gst.c:27079: error: 'GST_TYPE_BUFFER_LIST' undeclared (first use in this > function) > gst.c:27079: error: (Each undeclared identifier is reported only once > gst.c:27079: error: for each function it appears in.) > gmake[3]: *** [_gst_la-gst.lo] Error 1 > gmake[2]: *** [all-recursive] Error 1 > gmake[1]: *** [all-recursive] Error 1 > gmake: *** [all] Error 2 > *** Error code 1 > > Stop in /usr/ports/multimedia/py-gstreamer. > From pschmehl_lists at tx.rr.com Fri Sep 18 02:18:14 2009 From: pschmehl_lists at tx.rr.com (Paul Schmehl) Date: Fri Sep 18 02:18:19 2009 Subject: multimedia/py-gstreamer fails to build In-Reply-To: <1253230015.2187.2491.camel@headache.rainbow-runner.nl> References: <1253230015.2187.2491.camel@headache.rainbow-runner.nl> Message-ID: --On September 17, 2009 6:26:54 PM -0500 Koop Mast wrote: > > On Thu, 2009-09-17 at 22:01 +0000, Paul Schmehl wrote: >> i386 Intel, FreeBSD 7.2-STABLE, freshly csup'd ports tree, python 2.6 >> is the default version. >> >> Maybe the upgrade to python 2.6 broke this port? >> > > Compiles fine here, are your installed gstreamer ports up to date? > Yes. I ran portupgrade -a on that server just last week. I managed to get the port installed by editing the Makefile to revert to 0.10.15. Got lots of INFO errors, but it compiled successfully. Is there something in particular I can do to test the other gstreamer ports to verify? Paul Schmehl, If it isn't already obvious, my opinions are my own and not those of my employer. ****************************************** WARNING: Check the headers before replying From kwm at rainbow-runner.nl Fri Sep 18 09:00:51 2009 From: kwm at rainbow-runner.nl (Koop Mast) Date: Fri Sep 18 09:01:02 2009 Subject: multimedia/py-gstreamer fails to build In-Reply-To: References: <1253230015.2187.2491.camel@headache.rainbow-runner.nl> Message-ID: <1253264548.2187.3147.camel@headache.rainbow-runner.nl> On Thu, 2009-09-17 at 20:18 -0500, Paul Schmehl wrote: > --On September 17, 2009 6:26:54 PM -0500 Koop Mast > wrote: > > > > > On Thu, 2009-09-17 at 22:01 +0000, Paul Schmehl wrote: > >> i386 Intel, FreeBSD 7.2-STABLE, freshly csup'd ports tree, python 2.6 > >> is the default version. > >> > >> Maybe the upgrade to python 2.6 broke this port? > >> > > > > Compiles fine here, are your installed gstreamer ports up to date? > > > > Yes. I ran portupgrade -a on that server just last week. I managed to > get the port installed by editing the Makefile to revert to 0.10.15. Got > lots of INFO errors, but it compiled successfully. > > Is there something in particular I can do to test the other gstreamer > ports to verify? Make sure you got gstreamer 0.10.24. Your build of py-gstreamer breaks because of the lack of GST_TYPE_BUFFER_LIST. This was introduced in that version of gstreamer. -Koop > Paul Schmehl, If it isn't already > obvious, my opinions are my own > and not those of my employer. > ****************************************** > WARNING: Check the headers before replying > > From avg at icyb.net.ua Fri Sep 18 11:10:48 2009 From: avg at icyb.net.ua (Andriy Gapon) Date: Fri Sep 18 11:11:57 2009 Subject: libmad mp3 distortions In-Reply-To: <20090917161442.176733aid7epmr8k@webmail.leidinger.net> References: <4AAF7604.3070304@icyb.net.ua> <20090917161442.176733aid7epmr8k@webmail.leidinger.net> Message-ID: <4AB36AAD.7040704@icyb.net.ua> on 17/09/2009 17:14 Alexander Leidinger said the following: > Have you tried to play it with "madplay -v -a -6"? This will lower the > volume by 6dB. IIRC this is still with the sound before the conversation > to PCM. If this prevents the clipping, then it is normal. The reason is > that because of rounding (and other operations) the value of a sample > can be higher (or lower) than originally. If it was at the max level > before, it can now exceed the max -> clipping. madplay is following the > rules very strictly (and IIRC working with higher precision and > bitsize), while other players have bigger mathematical errors. This > would explain then, why you see this with madplay but not with other > players. The problem I describe is not in the decoding step, the problem > is at the encoding level. Alexander, thanks a lot! madplay -a -6 does indeed produce correct sound. Bad news: despite the magnitude of configuratios options related to 'gain' and 'pre-amp' in audacious2 (all global, nothing specific to mad plugin), I couldn't get it work the same way as madplay. Sound gets quieter but the distortions are not fixed. -- Andriy Gapon From ariff at FreeBSD.org Fri Sep 18 13:24:23 2009 From: ariff at FreeBSD.org (Ariff Abdullah) Date: Fri Sep 18 13:24:30 2009 Subject: libmad mp3 distortions In-Reply-To: <4AB36AAD.7040704@icyb.net.ua> References: <4AAF7604.3070304@icyb.net.ua> <20090917161442.176733aid7epmr8k@webmail.leidinger.net> <4AB36AAD.7040704@icyb.net.ua> Message-ID: <20090918212417.4472db3f.ariff@FreeBSD.org> On Fri, 18 Sep 2009 14:10:37 +0300 Andriy Gapon wrote: > on 17/09/2009 17:14 Alexander Leidinger said the following: > > Have you tried to play it with "madplay -v -a -6"? This will lower > > the volume by 6dB. IIRC this is still with the sound before the > > conversation to PCM. If this prevents the clipping, then it is > > normal. The reason is that because of rounding (and other > > operations) the value of a sample can be higher (or lower) than > > originally. If it was at the max level before, it can now exceed > > the max -> clipping. madplay is following the rules very strictly > > (and IIRC working with higher precision and bitsize), while other > > players have bigger mathematical errors. This would explain then, > > why you see this with madplay but not with other players. The > > problem I describe is not in the decoding step, the problem is at > > the encoding level. > > Alexander, > > thanks a lot! madplay -a -6 does indeed produce correct sound. > Bad news: despite the magnitude of configuratios options related to > 'gain' and 'pre-amp' in audacious2 (all global, nothing specific to > mad plugin), I couldn't get it work the same way as madplay. Sound > gets quieter but the distortions are not fixed. > > It is time for mp3gain/replaygain . You have to retrain your hearing and listening comfort. Search for "Loudness War". -- Ariff Abdullah FreeBSD ... Recording in stereo is obviously too advanced and confusing for us idiot ***** users :P ........ ... Going with the standard and orthodox is the death of intellect .............. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 195 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-multimedia/attachments/20090918/5b1b412a/attachment.pgp From avg at icyb.net.ua Fri Sep 18 14:22:42 2009 From: avg at icyb.net.ua (Andriy Gapon) Date: Fri Sep 18 14:22:49 2009 Subject: libmad mp3 distortions In-Reply-To: <4AAF7604.3070304@icyb.net.ua> References: <4AAF7604.3070304@icyb.net.ua> Message-ID: <4AB397AF.4070804@icyb.net.ua> BTW, something that I've noticed while investigating this issue. During libmad configure stage on amd64: ... checking host system type... amd64-portbld-freebsd9.0 ... checking for architecture-specific fixed-point math routines... DEFAULT configure: WARNING: default fixed-point math will yield limited accuracy ... We do not specify explicit --enable-fpm option. configure seems to have some auto detection logic, but it won't properly work on amd64 platform, probably because linux guys call it differently - from configure.ac: if test -z "$FPM" && test "$GCC" = yes then case "$host" in i?86-*) FPM="INTEL" ;; arm*-*) FPM="ARM" ;; mips*-*) FPM="MIPS" ;; sparc*-*) FPM="SPARC" ;; powerpc*-*) FPM="PPC" ;; # FIXME: need to test for 64-bit long long... esac fi On i386 configure auto-picks "INTEL". -- Andriy Gapon From pschmehl_lists at tx.rr.com Fri Sep 18 17:33:10 2009 From: pschmehl_lists at tx.rr.com (Paul Schmehl) Date: Fri Sep 18 17:33:22 2009 Subject: multimedia/py-gstreamer fails to build In-Reply-To: <1253264548.2187.3147.camel@headache.rainbow-runner.nl> References: <1253230015.2187.2491.camel@headache.rainbow-runner.nl> <1253264548.2187.3147.camel@headache.rainbow-runner.nl> Message-ID: --On Friday, September 18, 2009 04:02:28 -0500 Koop Mast wrote: >> >> Is there something in particular I can do to test the other gstreamer >> ports to verify? > > Make sure you got gstreamer 0.10.24. Your build of py-gstreamer breaks > because of the lack of GST_TYPE_BUFFER_LIST. This was introduced in that > version of gstreamer. > That was the issue. I portupgraded all the gstreamer ports, then forced an upgrade of the py26-gstreamer port, and it built fine. Still through a bunch of warning and INFO messages, but it built successfully. Thanks for your help. -- Paul Schmehl, Senior Infosec Analyst As if it wasn't already obvious, my opinions are my own and not those of my employer. ******************************************* "It is as useless to argue with those who have renounced the use of reason as to administer medication to the dead." Thomas Jefferson From kwm at rainbow-runner.nl Fri Sep 18 18:53:21 2009 From: kwm at rainbow-runner.nl (Koop Mast) Date: Fri Sep 18 18:53:28 2009 Subject: multimedia/py-gstreamer fails to build In-Reply-To: References: <1253230015.2187.2491.camel@headache.rainbow-runner.nl> Message-ID: <1253300101.2187.3744.camel@headache.rainbow-runner.nl> On Thu, 2009-09-17 at 20:18 -0500, Paul Schmehl wrote: > --On September 17, 2009 6:26:54 PM -0500 Koop Mast > wrote: > > > > > On Thu, 2009-09-17 at 22:01 +0000, Paul Schmehl wrote: > >> i386 Intel, FreeBSD 7.2-STABLE, freshly csup'd ports tree, python 2.6 > >> is the default version. > >> > >> Maybe the upgrade to python 2.6 broke this port? > >> > > > > Compiles fine here, are your installed gstreamer ports up to date? > > > > Yes. I ran portupgrade -a on that server just last week. I managed to > get the port installed by editing the Makefile to revert to 0.10.15. Got > lots of INFO errors, but it compiled successfully. Please use the -r options as well, so portupgrade -ra. This will update gstreamer first before trying to update py-gstreamer. Portupgrade man page: ---------------------------------- -r --recursive Act on all those packages depending on the given packages as well. ---------------------------------- -Koop > Is there something in particular I can do to test the other gstreamer > ports to verify? > > Paul Schmehl, If it isn't already > obvious, my opinions are my own > and not those of my employer. > ****************************************** > WARNING: Check the headers before replying > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > From Alexander at Leidinger.net Sat Sep 19 20:43:15 2009 From: Alexander at Leidinger.net (Alexander Leidinger) Date: Sat Sep 19 20:43:21 2009 Subject: libmad mp3 distortions In-Reply-To: <4AB36AAD.7040704@icyb.net.ua> References: <4AAF7604.3070304@icyb.net.ua> <20090917161442.176733aid7epmr8k@webmail.leidinger.net> <4AB36AAD.7040704@icyb.net.ua> Message-ID: <20090919224302.00006567@unknown> On Fri, 18 Sep 2009 14:10:37 +0300 Andriy Gapon wrote: > thanks a lot! madplay -a -6 does indeed produce correct sound. > Bad news: despite the magnitude of configuratios options related to > 'gain' and 'pre-amp' in audacious2 (all global, nothing specific to > mad plugin), I couldn't get it work the same way as madplay. Sound > gets quieter but the distortions are not fixed. Probably audacity is doing this after decoding with libmad. At this time the clipping already happened. Bye, Alexander. From naddy at mips.inka.de Sun Sep 20 18:29:12 2009 From: naddy at mips.inka.de (Christian Weisgerber) Date: Sun Sep 20 18:29:19 2009 Subject: Downloading RTSP stream? Message-ID: Do we have something in the ports tree that can read an RTSP stream where mplayer fails? $ mplayer rtsp://ondemand.quicktime.zdf.newmedia.nacamar.net/zdf/data/quicktime/zdf/09/09/090920_untergang_szent_istvan_tex_vh.mp4 MPlayer 1.0rc2-4.2.1 (C) 2000-2007 MPlayer Team CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 5200+ (Family: 15, Model: 67, Stepping: 3) CPUflags: MMX: 1 MMX2: 1 3DNow: 1 3DNow2: 1 SSE: 1 SSE2: 1 Compiled with runtime CPU detection. Playing rtsp://ondemand.quicktime.zdf.newmedia.nacamar.net/zdf/data/quicktime/zdf/09/09/090920_untergang_szent_istvan_tex_vh.mp4. Resolving ondemand.quicktime.zdf.newmedia.nacamar.net for AF_INET6... Couldn't resolve name for AF_INET6: ondemand.quicktime.zdf.newmedia.nacamar.net Resolving ondemand.quicktime.zdf.newmedia.nacamar.net for AF_INET... Connecting to server ondemand.quicktime.zdf.newmedia.nacamar.net[62.27.26.6]: 554... A single media stream only is supported atm. rtsp_session: unsupported RTSP server. Server type is 'DSS/6.0.3 (Build/526.3; Platform/Linux; Release/Darwin Streaming Server; State/Development; )'. Resolving ondemand.quicktime.zdf.newmedia.nacamar.net for AF_INET6... Couldn't resolve name for AF_INET6: ondemand.quicktime.zdf.newmedia.nacamar.net Resolving ondemand.quicktime.zdf.newmedia.nacamar.net for AF_INET... Connecting to server ondemand.quicktime.zdf.newmedia.nacamar.net[62.27.26.6]: 80... Server returned 404: error No stream found to handle url rtsp://ondemand.quicktime.zdf.newmedia.nacamar.net/zdf/data/quicktime/zdf/09/09/090920_untergang_szent_istvan_tex_vh.mp4 -- Christian "naddy" Weisgerber naddy@mips.inka.de From bf1783 at googlemail.com Sun Sep 20 19:15:15 2009 From: bf1783 at googlemail.com (b. f.) Date: Sun Sep 20 19:15:22 2009 Subject: Downloading RTSP stream? Message-ID: >Do we have something in the ports tree that can read an RTSP stream >where mplayer fails? I think that multimedia/vlc will play such streams, although I have not used it for this purpose. I think that both vlc and mplayer use parts of net/liveMedia to handle these streams, and this specialized port comes with a simple command-line client, openRTSP, which will enable you to dump the stream to a file or pipe it to another player: http://www.live555.com/openRTSP/ You may want to try this first. Are you sure that the problem is with the client, and not with the server? Regards, b. From naddy at mips.inka.de Sun Sep 20 21:54:15 2009 From: naddy at mips.inka.de (Christian Weisgerber) Date: Sun Sep 20 21:54:22 2009 Subject: Downloading RTSP stream? References: Message-ID: b. f. wrote: > >Do we have something in the ports tree that can read an RTSP stream > >where mplayer fails? > > I think that multimedia/vlc will play such streams, although I have > not used it for this purpose. I think that both vlc and mplayer use Alas, I'm not interested in playing the stream live. I want to capture it into a file for later viewing. > parts of net/liveMedia to handle these streams, and this specialized > port comes with a simple command-line client, openRTSP, which will > enable you to dump the stream to a file or pipe it to another player: Yes, this looks promising. Hmm. Plain openRTSP creates separate audio and video files. I don't think this is useful for later playing. mplayer doesn't find anything in the output of openRTSP -4 (or -q). > You may want to try this first. Are you sure that the problem is with > the client, and not with the server? QuickTime on Mac OS X can play the stream. They also offer an MMS stream for Windows users. I can successfully capture that with mplayer -dumpstream, but I'd prefer MP4 over WMV. Just because. -- Christian "naddy" Weisgerber naddy@mips.inka.de From pj at smo.de Mon Sep 21 00:36:01 2009 From: pj at smo.de (Philipp Ost) Date: Mon Sep 21 00:36:07 2009 Subject: Downloading RTSP stream? In-Reply-To: References: Message-ID: <4AB67D21.8080508@smo.de> Christian Weisgerber wrote: > Do we have something in the ports tree that can read an RTSP stream > where mplayer fails? I've tried it vlc -- works ;-) HTH, Philipp -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 4974 bytes Desc: S/MIME Cryptographic Signature Url : http://lists.freebsd.org/pipermail/freebsd-multimedia/attachments/20090921/6089e554/smime.bin From bf1783 at googlemail.com Mon Sep 21 02:32:10 2009 From: bf1783 at googlemail.com (b. f.) Date: Mon Sep 21 02:32:16 2009 Subject: Downloading RTSP stream? In-Reply-To: References: Message-ID: Christian Weisgerber wrote: >Plain openRTSP creates separate audio and video files. I don't >think this is useful for later playing. Useful for editing, but not perhaps as convenient for playing. However, mplayer has the -audiofile switch, and various synchronization options, for the case of separate audio and video files. By the way, when you were attempting to download this with mplayer, did you use -dumpstream in conjunction with -dumpfile, and did you experiment with the -rtsp-* switches? And do any other players (e.g. xine, vlc) play the output files -- or do they fail, too? > mplayer doesn't find >anything in the output of openRTSP -4 (or -q). Yes, I think that the sample openRTSP client is very flexible, but doesn't adapt well to different streams when no settings are specified. I've gotten garbage under default settings, and had to tinker with various knobs. I got mplayer to play the output of the first 30 seconds of your stream, albeit with a stream of error messages (I used tcp transport to allow passage through a firewall, and had to bump the buffer sizes as a result): openRTSP -4 -B 100000 -b 100000 -d 30 -D 110 -Q -n -t rtsp://ondemand.quicktime.zdf.newmedia.nacamar.net/zdf/data/quicktime/zdf/09/09/090920_untergang_szent_istvan_tex_vh.mp4 > naddy30.mp4 > but I'd prefer MP4 over WMV. > Just because. :) Yes, using a proprietary format sticks in my craw, too. b. From bf1783 at googlemail.com Mon Sep 21 03:03:54 2009 From: bf1783 at googlemail.com (b. f.) Date: Mon Sep 21 03:04:01 2009 Subject: Downloading RTSP stream? In-Reply-To: References: Message-ID: Philipp Ost wrote: >I've tried it vlc -- works ;-) At: http://www.live555.com/mplayer they state: 'Note: We now recommend the use of the VLC media player. VLC, like MPlayer, uses the "LIVE555 Streaming Media" code for RTSP client support, but is generally more reliable than MPlayer.' but don't provide any information on why they think this is so, or what versions of the two players they are referring to. I'm not sure if this is related to mplayer's decision to support libnemesi (http://lscube.org/projects/libnemesi ) as an alternative for these streams. I think vlc has an option to dump the stream to a file, too, right? b. From finlayson at live555.com Mon Sep 21 05:52:42 2009 From: finlayson at live555.com (Ross Finlayson) Date: Mon Sep 21 05:52:48 2009 Subject: Downloading RTSP stream? In-Reply-To: References: Message-ID: At 3:03 AM +0000 9/21/09, b. f. wrote: >Philipp Ost wrote: >>I've tried it vlc -- works ;-) > >At: > > http://www.live555.com/mplayer > >they state: > >'Note: We now recommend the use of the VLC media player. VLC, like >MPlayer, uses the "LIVE555 Streaming Media" code for RTSP client >support, but is generally more reliable than MPlayer.' > >but don't provide any information on why they think this is so I wrote this based on my own personal experience with those two applications (VLC and MPlayer), and, in particular, the developers of those two applications. In my opinion, the developers of VLC are noticeably more helpful and clued up than the developers of MPlayer. (For example, I recall that one of the leading MPlayer developers (some clown named Richard Felker) was constantly belitting our software because it's written in C++ rather than C.) MPlayer was also significantly less reliable and harder to use than VLC. Perhaps MPlayer has improved in the last few years, but I've seen no reason to choose it over VLC. -- Ross Finlayson Live Networks, Inc. http://www.live555.com/ From andreas at braml.org Mon Sep 21 07:47:07 2009 From: andreas at braml.org (Andreas Hermann Braml) Date: Mon Sep 21 07:47:15 2009 Subject: Downloading RTSP stream? In-Reply-To: References: Message-ID: <200909210934.29817.andreas@braml.org> Hi, Am Montag 21 September 2009 05:03:53 schrieb b. f.: > I think vlc has an option to dump the stream to a file, too, right? Right. Ctrl-R should do the trick. pseudoruprecht -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: This is a digitally signed message part. Url : http://lists.freebsd.org/pipermail/freebsd-multimedia/attachments/20090921/75ed129f/attachment.pgp From me at janh.de Mon Sep 21 09:06:06 2009 From: me at janh.de (Jan Henrik Sylvester) Date: Mon Sep 21 09:06:13 2009 Subject: Freecom DVB-T USB on FreeBSD 8.0? Message-ID: <4AB73F8F.9050404@janh.de> On FreeBSD 7.2, I was using a Freecom DVB-T USB device with the driver from http://raaf.atspace.org/dvbusb/ . Now I would like to bring some of my machines to 8.0 (RC1), but the driver is for the old USB stack. Is the any effort porting this driver to the new USB stack? With the new Linux compatible libusb, there seem to be multiple projects bringing webcam and DVB-T devices to FreeBSD, but I have found nothing about my device. Thanks, Jan Henrik From bugmaster at FreeBSD.org Mon Sep 21 11:07:00 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Sep 21 11:08:51 2009 Subject: Current problem reports assigned to freebsd-multimedia@FreeBSD.org Message-ID: <200909211106.n8LB6xPB030346@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/138386 multimedia multimedia/mkvtoolnix lacks the Qt-Gui and configure-k o ports/138272 multimedia graphics/exiv2: add patch from upstream o ports/138213 multimedia Apply SqueezeCenter patches to audio/faad that enable o ports/138056 multimedia multimedia/ogle: buggy pre-configure o ports/137687 multimedia multimedia/libquicktime 1.1.3 build failure o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o ports/137495 multimedia multimedia/linux-realplayer: wrong directory on ftp se o ports/135313 multimedia (patch) Update multimedia/podcatcher to 3.1.4 (Sep 200 o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o ports/133462 multimedia multimedia/x264 build fails on powerpc o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o ports/132431 multimedia multimedia/ogmtools dvdxchap are not installed. f kern/132336 multimedia [sound] [snd_hda] Realtek ALC888 audio chipset does no o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o ports/127084 multimedia multimedia/linux-realplayer is vulnerable s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt f kern/115666 multimedia [sound] Microphone does not work o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst s kern/113950 multimedia [sound] [patch] [request] add per-vchan mixer support o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o kern/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/92512 multimedia [sound] distorted mono output with emu10k1 o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup s kern/83697 multimedia [sound] [snd_mss] [patch] support, docs added for full o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/80632 multimedia [sound] pcm driver missing support for CMI8738 auxilla o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79678 multimedia [sound] sound works except recording from any source f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem 62 problems total. From avg at icyb.net.ua Mon Sep 21 12:13:52 2009 From: avg at icyb.net.ua (Andriy Gapon) Date: Mon Sep 21 12:14:03 2009 Subject: cinelerra Message-ID: <4AB76DF8.8040009@icyb.net.ua> Anybody tried porting cinelerra? -- Andriy Gapon From andreas at braml.org Mon Sep 21 17:57:05 2009 From: andreas at braml.org (Andreas Hermann Braml) Date: Mon Sep 21 17:57:13 2009 Subject: cinelerra In-Reply-To: <4AB76DF8.8040009@icyb.net.ua> References: <4AB76DF8.8040009@icyb.net.ua> Message-ID: <200909211956.56498.andreas@braml.org> Am Montag 21 September 2009 14:13:44 schrieb Andriy Gapon: > Anybody tried porting cinelerra? Yes :) Bye pseudoruprecht Well, just kidding. There were efforts over a year ago by one Aragon Gouveia See the thread on the Cinelerra-cv list: http://kevb.net/lurker/message/20080416.024842.acb82cfd.en.html And about half a year later: http://kevb.net/lurker/message/20081218.220957.316fe9e5.en.html I succeded once in getting Cinelerra to run on the Linuxulator. See thist thread for more: http://kevb.net/lurker/message/20080330.012340.5397d94e.en.html Hope this helps for a start. pseudoruprecht -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: This is a digitally signed message part. Url : http://lists.freebsd.org/pipermail/freebsd-multimedia/attachments/20090921/cb50881b/attachment.pgp From pav at FreeBSD.org Mon Sep 21 20:41:41 2009 From: pav at FreeBSD.org (Pav Lucistnik) Date: Mon Sep 21 20:41:50 2009 Subject: [Fwd: gstreamer-plugins-dvd-0.10.12,3 failed on amd64 8-exp] Message-ID: <1253564073.82569.11.camel@hood.oook.cz> Evidently, libdvdnav consumers still need libdvdread.. (Rumour has it kwm works on a fix for gstreamer already.) -------- P?eposlan? zpr?va -------- > Od: User Ports-amd64 > Komu: cvs@oook.cz, linimon@FreeBSD.org > P?edm?t: gstreamer-plugins-dvd-0.10.12,3 failed on amd64 8-exp > Datum: Mon, 21 Sep 2009 12:00:32 GMT > > You can also find this build log at > > http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/a.8-exp.20090921073642/gstreamer-plugins-dvd-0.10.12,3.log > > building gstreamer-plugins-dvd-0.10.12,3 on gohan11.freebsd.org > in directory /x/pkgbuild/8-exp/20090921073642/chroot/214 > building for: 8.0-RELEASE amd64 > maintained by: multimedia@FreeBSD.org > port directory: /usr/ports/multimedia/gstreamer-plugins-dvd > Makefile ident: $FreeBSD: ports/multimedia/gstreamer-plugins-dvd/Makefile,v 1.14 2009/01/27 23:21:13 kwm Exp $ > build started at Mon Sep 21 11:58:20 UTC 2009 > FETCH_DEPENDS= > PATCH_DEPENDS=libtool-2.2.6a.tbz > EXTRACT_DEPENDS= > BUILD_DEPENDS=gamin-0.1.10_3.tbz gettext-0.17_1.tbz gio-fam-backend-2.20.5.tbz glib-2.20.5.tbz gmake-3.81_3.tbz gstreamer-0.10.24.tbz gstreamer-plugins-0.10.24,3.tbz gstreamer-plugins-ugly-0.10.12,3.tbz kbproto-1.0.3.tbz libX11-1.2.1_1,1.tbz libXau-1.0.4.tbz libXdmcp-1.0.2_1.tbz libXext-1.0.5,1.tbz libXv-1.0.4,1.tbz libdvdnav-0.1.10_5.tbz libiconv-1.13.1.tbz liboil-0.3.16.tbz libpthread-stubs-0.1.tbz libtool-2.2.6a.tbz libxcb-1.4.tbz libxml2-2.7.4_1.tbz pcre-7.9.tbz perl-5.8.9_3.tbz pkg-config-0.23_1.tbz popt-1.14.tbz python26-2.6.2_3.tbz v4l_compat-1.0.20060801.tbz videoproto-2.2.2.tbz xcb-proto-1.5.tbz xextproto-7.0.5.tbz xproto-7.0.15.tbz > RUN_DEPENDS=gamin-0.1.10_3.tbz gettext-0.17_1.tbz gio-fam-backend-2.20.5.tbz glib-2.20.5.tbz gstreamer-0.10.24.tbz gstreamer-plugins-0.10.24,3.tbz gstreamer-plugins-ugly-0.10.12,3.tbz kbproto-1.0.3.tbz libX11-1.2.1_1,1.tbz libXau-1.0.4.tbz libXdmcp-1.0.2_1.tbz libXext-1.0.5,1.tbz libXv-1.0.4,1.tbz libdvdnav-0.1.10_5.tbz libiconv-1.13.1.tbz liboil-0.3.16.tbz libpthread-stubs-0.1.tbz libxcb-1.4.tbz libxml2-2.7.4_1.tbz pcre-7.9.tbz perl-5.8.9_3.tbz pkg-config-0.23_1.tbz popt-1.14.tbz python26-2.6.2_3.tbz videoproto-2.2.2.tbz xcb-proto-1.5.tbz xextproto-7.0.5.tbz xproto-7.0.15.tbz > prefixes: LOCALBASE=usr/local X11BASE=usr/local > add_pkg > ================================================================ > ======================================== > => gst-plugins-ugly-0.10.12.tar.bz2 doesn't seem to exist in /tmp/distfiles/. > => Attempting to fetch from ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles/. > gst-plugins-ugly-0.10.12.tar.bz2 1003 kB 23 MBps > => MD5 Checksum OK for gst-plugins-ugly-0.10.12.tar.bz2. > => SHA256 Checksum OK for gst-plugins-ugly-0.10.12.tar.bz2. > ================================================================ > ======================================== > add_pkg > ===> Extracting for gstreamer-plugins-dvd-0.10.12,3 > => MD5 Checksum OK for gst-plugins-ugly-0.10.12.tar.bz2. > => SHA256 Checksum OK for gst-plugins-ugly-0.10.12.tar.bz2. > ================================================================ > ======================================== > add_pkg libtool-2.2.6a.tbz > adding dependencies > pkg_add libtool-2.2.6a.tbz > ===> Patching for gstreamer-plugins-dvd-0.10.12,3 > ===> gstreamer-plugins-dvd-0.10.12,3 depends on package: libtool>=2.2 - found > ===> gstreamer-plugins-dvd-0.10.12,3 depends on package: libtool>=2.2 - found > Deleting libtool-2.2.6a > ================================================================ > ======================================== > add_pkg gamin-0.1.10_3.tbz gettext-0.17_1.tbz gio-fam-backend-2.20.5.tbz glib-2.20.5.tbz gmake-3.81_3.tbz gstreamer-0.10.24.tbz gstreamer-plugins-0.10.24,3.tbz gstreamer-plugins-ugly-0.10.12,3.tbz kbproto-1.0.3.tbz libX11-1.2.1_1,1.tbz libXau-1.0.4.tbz libXdmcp-1.0.2_1.tbz libXext-1.0.5,1.tbz libXv-1.0.4,1.tbz libdvdnav-0.1.10_5.tbz libiconv-1.13.1.tbz liboil-0.3.16.tbz libpthread-stubs-0.1.tbz libtool-2.2.6a.tbz libxcb-1.4.tbz libxml2-2.7.4_1.tbz pcre-7.9.tbz perl-5.8.9_3.tbz pkg-config-0.23_1.tbz popt-1.14.tbz python26-2.6.2_3.tbz v4l_compat-1.0.20060801.tbz videoproto-2.2.2.tbz xcb-proto-1.5.tbz xextproto-7.0.5.tbz xproto-7.0.15.tbz > adding dependencies > pkg_add gamin-0.1.10_3.tbz > > ==== > Note that some of the standard modules are provided as separate > ports since they require extra dependencies: > > bsddb databases/py-bsddb > gdbm databases/py-gdbm > sqlite3 databases/py-sqlite3 > tkinter x11-toolkits/py-tkinter > > Install them as needed. > ==== > > Removing stale symlinks from /usr/bin... > Skipping /usr/bin/perl > Skipping /usr/bin/perl5 > Done. > Creating various symlinks in /usr/bin... > Symlinking /usr/local/bin/perl5.8.9 to /usr/bin/perl > Symlinking /usr/local/bin/perl5.8.9 to /usr/bin/perl5 > Done. > Cleaning up /etc/make.conf... Done. > Spamming /etc/make.conf... Done. > Cleaning up /etc/manpath.config... Done. > Spamming /etc/manpath.config... Done. > > =============================================================================== > > Gamin will only provide realtime notification of changes for at most n files, > where n is the minimum value between (kern.maxfiles * 0.7) and > (kern.maxfilesperproc - 200). Beyond that limit, files will be polled. > > If you often open several large folders with Nautilus, you might want to > increase the kern.maxfiles tunable (you do not need to set > kern.maxfilesperproc, since it is computed at boot time from kern.maxfiles). > > For a typical desktop, add the following line to /boot/loader.conf, then > reboot the system: > > kern.maxfiles="25000" > > The behavior of gamin can be controlled via the various gaminrc files. > See http://www.gnome.org/~veillard/gamin/config.html on how to create > these files. In particular, if you find gam_server is taking up too much > CPU time polling for changes, something like the following may help > in one of the gaminrc files: > > # reduce polling frequency to once per 10 seconds > # for UFS file systems in order to lower CPU load > fsset ufs poll 10 > > =============================================================================== > > pkg_add gettext-0.17_1.tbz > skipping gettext-0.17_1, already added > pkg_add gio-fam-backend-2.20.5.tbz > pkg_add glib-2.20.5.tbz > skipping glib-2.20.5, already added > pkg_add gmake-3.81_3.tbz > pkg_add gstreamer-0.10.24.tbz > > > ***************************************************************** > Although libxcb can yield dramatic improvements in speed, > memory footprint, and responsiveness, and will probably > become the default Xlib for X.org/freedesktop.org, it is > still experimental software. Some broken callers will abort() > on locking assertion failures. As a temporary workaround, set > LIBXCB_ALLOW_SLOPPY_LOCK in your environment to skip the abort(). > This may result in noisy stacktrace printing. > ***************************************************************** > > pkg_add gstreamer-plugins-0.10.24,3.tbz > pkg_add gstreamer-plugins-ugly-0.10.12,3.tbz > pkg_add kbproto-1.0.3.tbz > skipping kbproto-1.0.3, already added > pkg_add libX11-1.2.1_1,1.tbz > skipping libX11-1.2.1_1,1, already added > pkg_add libXau-1.0.4.tbz > skipping libXau-1.0.4, already added > pkg_add libXdmcp-1.0.2_1.tbz > skipping libXdmcp-1.0.2_1, already added > pkg_add libXext-1.0.5,1.tbz > skipping libXext-1.0.5,1, already added > pkg_add libXv-1.0.4,1.tbz > skipping libXv-1.0.4,1, already added > pkg_add libdvdnav-0.1.10_5.tbz > pkg_add libiconv-1.13.1.tbz > skipping libiconv-1.13.1, already added > pkg_add liboil-0.3.16.tbz > skipping liboil-0.3.16, already added > pkg_add libpthread-stubs-0.1.tbz > skipping libpthread-stubs-0.1, already added > pkg_add libtool-2.2.6a.tbz > pkg_add libxcb-1.4.tbz > skipping libxcb-1.4, already added > pkg_add libxml2-2.7.4_1.tbz > skipping libxml2-2.7.4_1, already added > pkg_add pcre-7.9.tbz > skipping pcre-7.9, already added > pkg_add perl-5.8.9_3.tbz > skipping perl-5.8.9_3, already added > pkg_add pkg-config-0.23_1.tbz > skipping pkg-config-0.23_1, already added > pkg_add popt-1.14.tbz > skipping popt-1.14, already added > pkg_add python26-2.6.2_3.tbz > skipping python26-2.6.2_3, already added > pkg_add v4l_compat-1.0.20060801.tbz > pkg_add videoproto-2.2.2.tbz > skipping videoproto-2.2.2, already added > pkg_add xcb-proto-1.5.tbz > skipping xcb-proto-1.5, already added > pkg_add xextproto-7.0.5.tbz > skipping xextproto-7.0.5, already added > pkg_add xproto-7.0.15.tbz > skipping xproto-7.0.15, already added > ===> gstreamer-plugins-dvd-0.10.12,3 depends on package: v4l_compat>=1.0.20060801 - found > ===> gstreamer-plugins-dvd-0.10.12,3 depends on executable: gmake - found > ===> gstreamer-plugins-dvd-0.10.12,3 depends on package: gstreamer-plugins>=0.10.0 - found > ===> gstreamer-plugins-dvd-0.10.12,3 depends on package: gstreamer-plugins-ugly>=0.10.0 - found > ===> gstreamer-plugins-dvd-0.10.12,3 depends on package: libtool>=2.2 - found > ===> gstreamer-plugins-dvd-0.10.12,3 depends on executable: pkg-config - found > ===> gstreamer-plugins-dvd-0.10.12,3 depends on shared library: gstreamer-0.10.0 - found > ===> gstreamer-plugins-dvd-0.10.12,3 depends on shared library: popt.0 - found > ===> gstreamer-plugins-dvd-0.10.12,3 depends on shared library: oil-0.3.0 - found > ===> gstreamer-plugins-dvd-0.10.12,3 depends on shared library: dvdnav.4 - found > ===> gstreamer-plugins-dvd-0.10.12,3 depends on shared library: intl - found > ===> Configuring for gstreamer-plugins-dvd-0.10.12,3 > configure: WARNING: unrecognized options: --disable-alsa, --disable-cdparanoia, --disable-gio, --disable-gnomevfs, --disable-libvisual, --disable-ogg, --disable-pango, --disable-theora, --disable-vorbis, --disable-alsa, --disable-amrwb, --disable-apexsink, --disable-bz2, --disable-cdaudio, --disable-celt, --disable-dc1394, --disable-directfb, --disable-dirac, --disable-divx, --disable-dts, --disable-dvb, --disable-faac, --disable-faad, --disable-gsm, --disable-ivorbis, --disable-jack, --disable-libmms, --disable-metadata, --disable-mpeg2enc, --disable-mplex, --disable-musepack, --disable-musicbrainz, --disable-mythtv, --disable-nas, --disable-neon, --disable-ofa, --disable-oss4, --disable-qtwrapper, --disable-resindvd, --disable-sdl, --disable-sf, --disable-sndfile, --disable-soundtouch, --disable-spc, --disable-swfdec, --disable-theoraexpdec, --disable-timidity, --disable-vcdsrc, --disable-wildmidi, --disable-wininet, --disable-xvid, --disable-aalib, --disable-annodex, --dis > able-cairo, --disable-dv, --disable-esd, --disable-flac, --disable-gconf, --disable-gdk_pixbuf, --disable-hal, --disable-jpeg, --disable-ladspa, --disable-libcaca, --disable-libpng, --disable-pulse, --disable-raw1394, --disable-shout2, --disable-soup, --disable-speex, --disable-taglib, --disable-wavpack, --disable-gnome_vfs, --enable-dvd, --disable-tests, --disable-1394, --disable-acm, --disable-alsa, --disable-http, --enable-cdrom, --disable-gconf, --disable-gconftool, --disable-schemas-install, --enable-oss, --enable-oss4, --disable-osx_audio, --disable-osx_video, --disable-directdrawsink, --disable-directsoundsink, --disable-v4l2src, --disable-tarkin, --disable-sunaudio, --disable-xine, --enable-x, --enable-xshm, --enable-xvideo > checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel > checking whether build environment is sane... yes > checking for a thread-safe mkdir -p... ./install-sh -c -d > checking for gawk... no > checking for mawk... no > checking for nawk... nawk > checking whether gmake sets $(MAKE)... yes > checking nano version... 0 (release) > checking whether to enable maintainer-specific portions of Makefiles... no > checking build system type... amd64-portbld-freebsd8.0 > checking host system type... amd64-portbld-freebsd8.0 > checking for style of include used by gmake... GNU > checking for gcc... cc > checking for C compiler default output file name... a.out > checking whether the C compiler works... yes > checking whether we are cross compiling... no > checking for suffix of executables... > checking for suffix of object files... o > checking whether we are using the GNU C compiler... yes > checking whether cc accepts -g... yes > checking for cc option to accept ISO C89... none needed > checking dependency style of cc... gcc3 > checking for a sed that does not truncate output... /usr/bin/sed > checking for grep that handles long lines and -e... /usr/bin/grep > checking for egrep... /usr/bin/grep -E > checking for fgrep... /usr/bin/grep -F > checking for ld used by cc... /usr/bin/ld > checking if the linker (/usr/bin/ld) is GNU ld... yes > checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B > checking the name lister (/usr/bin/nm -B) interface... BSD nm > checking whether ln -s works... yes > checking the maximum length of command line arguments... (cached) 262144 > checking whether the shell understands some XSI constructs... yes > checking whether the shell understands "+="... no > checking for /usr/bin/ld option to reload object files... -r > checking for objdump... objdump > checking how to recognize dependent libraries... pass_all > checking for ar... ar > checking for strip... strip > checking for ranlib... ranlib > checking command to parse /usr/bin/nm -B output from cc object... ok > checking how to run the C preprocessor... cc -E > checking for ANSI C header files... yes > checking for sys/types.h... yes > checking for sys/stat.h... yes > checking for stdlib.h... yes > checking for string.h... yes > checking for memory.h... yes > checking for strings.h... yes > checking for inttypes.h... yes > checking for stdint.h... yes > checking for unistd.h... yes > checking for dlfcn.h... yes > checking for objdir... .libs > checking if cc supports -fno-rtti -fno-exceptions... no > checking for cc option to produce PIC... -fPIC -DPIC > checking if cc PIC flag -fPIC -DPIC works... yes > checking if cc static flag -static works... yes > checking if cc supports -c -o file.o... yes > checking if cc supports -c -o file.o... (cached) yes > checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes > checking whether -lc should be explicitly linked in... no > checking dynamic linker characteristics... freebsd8.0 ld.so > checking how to hardcode library paths into programs... immediate > checking whether stripping libraries is possible... yes > checking if libtool supports shared libraries... yes > checking whether to build shared libraries... yes > checking whether to build static libraries... yes > checking whether NLS is requested... yes > checking for msgfmt... /usr/local/bin/msgfmt > checking for gmsgfmt... /usr/local/bin/msgfmt > checking for xgettext... /usr/local/bin/xgettext > checking for msgmerge... /usr/local/bin/msgmerge > checking for ld used by GCC... /usr/bin/ld > checking if the linker (/usr/bin/ld) is GNU ld... yes > checking for shared library run path origin... done > checking for CFPreferencesCopyAppValue... no > checking for CFLocaleCopyCurrent... no > checking for GNU gettext in libc... no > checking for iconv... yes > checking for working iconv... yes > checking how to link with libiconv... /usr/local/lib/libiconv.so -Wl,-rpath -Wl,/usr/local/lib > checking for GNU gettext in libintl... yes > checking whether to use NLS... yes > checking where the gettext function comes from... external libintl > checking how to link with libintl... /usr/local/lib/libintl.so /usr/local/lib/libiconv.so -Wl,-rpath -Wl,/usr/local/lib > checking for pkg-config... /usr/local/bin/pkg-config > checking pkg-config is at least version 0.9.0... yes > checking for VALGRIND... gnome-config: not found > no > no > configure: Using GStreamer Ugly Plug-ins source release as package name > configure: Using Unknown package origin as package origin > > configure: *** checking feature: building of plug-ins with external deps *** > configure: building external plug-ins > > configure: *** checking feature: building of experimental plug-ins *** > configure: not building experimental plug-ins > checking whether byte ordering is bigendian... no > checking whether byte ordering is bigendian... (cached) no > checking for gcc... (cached) cc > checking whether we are using the GNU C compiler... (cached) yes > checking whether cc accepts -g... (cached) yes > checking for cc option to accept ISO C89... (cached) none needed > checking dependency style of cc... (cached) gcc3 > checking whether we are using the GNU C++ compiler... yes > checking whether c++ accepts -g... yes > checking dependency style of c++... gcc3 > checking whether we are using the GNU C++ compiler... (cached) yes > checking whether c++ accepts -g... (cached) yes > checking dependency style of c++... (cached) gcc3 > checking how to run the C++ preprocessor... c++ -E > checking for ld used by c++... /usr/bin/ld > checking if the linker (/usr/bin/ld) is GNU ld... yes > checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes > checking for c++ option to produce PIC... -fPIC -DPIC > checking if c++ PIC flag -fPIC -DPIC works... yes > checking if c++ static flag -static works... yes > checking if c++ supports -c -o file.o... yes > checking if c++ supports -c -o file.o... (cached) yes > checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes > checking dynamic linker characteristics... freebsd8.0 ld.so > checking how to hardcode library paths into programs... immediate > checking for c++... yes > checking whether cc understands -c and -o together... yes > checking for valgrind... no > checking for working do while(0) macros... yes > checking whether to build gtk-doc documentation... no > checking for gtkdoc-check... no > configure: Looking for Python version >= 2.1 > checking for python... /usr/local/bin/python > checking "/usr/local/bin/python":... okay > checking local Python configuration... looks good > checking whether to build plugin documentation... no (gtk-doc disabled or not available) > checking for cos in -lm... yes > checking for stdint types... stdint.h (shortcircuit) > make use of stdint.h in _stdint.h (assuming C99 compatible system) > checking for stdlib.h... (cached) yes > checking whether cc implements __PRETTY_FUNCTION__... yes > checking whether cc implements __FUNCTION__... yes > checking whether cc implements __func__... yes > checking for GLIB... yes > checking for LIBOIL... yes > checking for GST... yes > configure: using GStreamer tools in /usr/local/bin > configure: using GStreamer plug-ins in /usr/local/lib/gstreamer-0.10 > checking for GST_BASE... yes > checking for GST_CHECK... gnome-config: not found > no > no > configure: No package 'gstreamer-check-0.10' found > configure: no gstreamer-check-0.10 >= 0.10.23 (GStreamer Check unittest Library) found > checking for GST_PLUGINS_BASE... yes > configure: using GStreamer Base Plug-ins in /usr/local/lib/gstreamer-0.10 > configure: Using /usr/local/lib/gstreamer-0.10 as the plugin install location > checking to see if compiler understands -Wall... yes > checking to see if compiler understands -Wdeclaration-after-statement... yes > checking to see if compiler understands -Wvla... no > checking to see if compiler understands -Wpointer-arith... yes > configure: set ERROR_CFLAGS to -Wall -Wdeclaration-after-statement -Wpointer-arith > checking to see if c++ compiler understands ... yes > checking to see if c++ compiler understands -Wall... yes > configure: set ERROR_CXXFLAGS to -Wall > configure: Using autoaudiosink as default audio sink > configure: Using osssrc as default audio source > configure: Using autovideosink as default video sink > configure: Using v4l2src as default video source > configure: Using goom as default visualizer > checking winsock2.h usability... no > checking winsock2.h presence... no > checking for winsock2.h... no > > configure: Checking libraries for plugins in ext/ > > > configure: *** checking feature: a52dec *** > configure: *** for plug-ins: a52dec *** > checking for a52_init in -la52... no > configure: *** These plugins will not be built: a52dec > > configure: *** checking feature: AMR-NB *** > configure: *** for plug-ins: amrnb *** > configure: *** These plugins will not be built: amrnb > > configure: *** checking feature: cdio library *** > configure: *** for plug-ins: cdio *** > checking for CDIO... gnome-config: not found > no > no > configure: No package 'libcdio' found > configure: *** These plugins will not be built: cdio > > configure: *** checking feature: dvdread library *** > configure: *** for plug-ins: dvdreadsrc *** > checking for DVDOpen in -ldvdread... no > configure: *** These plugins will not be built: dvdreadsrc > > configure: *** checking feature: dvdnav library *** > configure: *** for plug-ins: dvdnav *** > configure: *** These plugins will not be built: dvdnav > configure: dvdnavsrc not stable yet, not building > > configure: *** checking feature: lame mp3 encoder library *** > configure: *** for plug-ins: lame *** > checking for lame_init in -lmp3lame... no > configure: *** These plugins will not be built: lame > > configure: *** checking feature: id3tag reading and writing from the MAD project *** > configure: *** for plug-ins: id3tag *** > checking for ID3TAG... gnome-config: not found > no > no > configure: No package 'id3tag' found > checking id3tag.h usability... no > checking id3tag.h presence... no > checking for id3tag.h... no > configure: *** These plugins will not be built: id3tag > > configure: *** checking feature: mad mp3 decoder *** > configure: *** for plug-ins: mad *** > configure: WARNING: libid3tag not available, cannot build MAD MP3 decoder plugin > configure: *** These plugins will not be built: mad > > configure: *** checking feature: mpeg2dec *** > configure: *** for plug-ins: mpeg2dec *** > checking for MPEG2DEC... gnome-config: not found > no > no > configure: No package 'libmpeg2' found > configure: *** These plugins will not be built: mpeg2dec > > configure: *** checking feature: libsidplay *** > configure: *** for plug-ins: sid *** > checking for libsidplay 1.36.x... checking sidplay/player.h usability... no > checking sidplay/player.h presence... no > checking for sidplay/player.h... no > configure: *** These plugins will not be built: sid > > configure: *** checking feature: twolame *** > configure: *** for plug-ins: twolame *** > configure: *** These plugins will not be built: twolame > > configure: *** checking feature: x264 plug-in *** > configure: *** for plug-ins: x264 *** > configure: *** These plugins will not be built: x264 > checking for sed... /usr/bin/sed > configure: creating ./config.status > config.status: creating Makefile > config.status: creating common/Makefile > config.status: creating common/m4/Makefile > config.status: creating common/shave > config.status: creating common/shave-libtool > config.status: creating gst-libs/Makefile > config.status: creating gst-libs/gst/Makefile > config.status: creating gst/Makefile > config.status: creating gst/asfdemux/Makefile > config.status: creating gst/dvdlpcmdec/Makefile > config.status: creating gst/dvdsub/Makefile > config.status: creating gst/iec958/Makefile > config.status: creating gst/mpegaudioparse/Makefile > config.status: creating gst/mpegstream/Makefile > config.status: creating gst/realmedia/Makefile > config.status: creating gst/synaesthesia/Makefile > config.status: creating ext/Makefile > config.status: creating ext/a52dec/Makefile > config.status: creating ext/amrnb/Makefile > config.status: creating ext/cdio/Makefile > config.status: creating ext/dvdnav/Makefile > config.status: creating ext/dvdread/Makefile > config.status: creating ext/lame/Makefile > config.status: creating ext/mad/Makefile > config.status: creating ext/mpeg2dec/Makefile > config.status: creating ext/sidplay/Makefile > config.status: creating ext/twolame/Makefile > config.status: creating ext/x264/Makefile > config.status: creating docs/Makefile > config.status: creating docs/plugins/Makefile > config.status: creating docs/version.entities > config.status: creating tests/Makefile > config.status: creating tests/check/Makefile > config.status: creating m4/Makefile > config.status: creating po/Makefile.in > config.status: creating win32/common/config.h > config.status: creating gst-plugins-ugly.spec > config.status: creating config.h > config.status: executing depfiles commands > config.status: executing libtool commands > config.status: executing po-directories commands > config.status: creating po/POTFILES > config.status: creating po/Makefile > config.status: executing _stdint.h commands > config.status: creating _stdint.h : _GST_PLUGINS_UGLY__STDINT_H > configure: WARNING: unrecognized options: --disable-alsa, --disable-cdparanoia, --disable-gio, --disable-gnomevfs, --disable-libvisual, --disable-ogg, --disable-pango, --disable-theora, --disable-vorbis, --disable-alsa, --disable-amrwb, --disable-apexsink, --disable-bz2, --disable-cdaudio, --disable-celt, --disable-dc1394, --disable-directfb, --disable-dirac, --disable-divx, --disable-dts, --disable-dvb, --disable-faac, --disable-faad, --disable-gsm, --disable-ivorbis, --disable-jack, --disable-libmms, --disable-metadata, --disable-mpeg2enc, --disable-mplex, --disable-musepack, --disable-musicbrainz, --disable-mythtv, --disable-nas, --disable-neon, --disable-ofa, --disable-oss4, --disable-qtwrapper, --disable-resindvd, --disable-sdl, --disable-sf, --disable-sndfile, --disable-soundtouch, --disable-spc, --disable-swfdec, --disable-theoraexpdec, --disable-timidity, --disable-vcdsrc, --disable-wildmidi, --disable-wininet, --disable-xvid, --disable-aalib, --disable-annodex, --dis > able-cairo, --disable-dv, --disable-esd, --disable-flac, --disable-gconf, --disable-gdk_pixbuf, --disable-hal, --disable-jpeg, --disable-ladspa, --disable-libcaca, --disable-libpng, --disable-pulse, --disable-raw1394, --disable-shout2, --disable-soup, --disable-speex, --disable-taglib, --disable-wavpack, --disable-gnome_vfs, --enable-dvd, --disable-tests, --disable-1394, --disable-acm, --disable-alsa, --disable-http, --enable-cdrom, --disable-gconf, --disable-gconftool, --disable-schemas-install, --enable-oss, --enable-oss4, --disable-osx_audio, --disable-osx_video, --disable-directdrawsink, --disable-directsoundsink, --disable-v4l2src, --disable-tarkin, --disable-sunaudio, --disable-xine, --enable-x, --enable-xshm, --enable-xvideo > configure: *** Plug-ins without external dependencies that will be built: > asfdemux > dvdlpcmdec > dvdsub > iec958 > mpegaudioparse > mpegstream > realmedia > > configure: *** Plug-ins without external dependencies that will NOT be built: > synaesthesia > > configure: *** Plug-ins with dependencies that will be built: > > configure: *** Plug-ins with dependencies that will NOT be built: > a52dec > amrnb > cdio > dvdnav > dvdreadsrc > id3tag > lame > mad > mpeg2dec > sid > twolame > x264 > > ===> Building for gstreamer-plugins-dvd-0.10.12,3 > CC dvdnavsrc.o > In file included from dvdnavsrc.c:36: > dvdnavsrc.h:23:32: error: dvdread/dvd_reader.h: No such file or directory > dvdnavsrc.h:24:30: error: dvdread/ifo_read.h: No such file or directory > dvdnavsrc.c: In function 'gst_dvd_nav_src_update_tmaps': > dvdnavsrc.c:566: warning: implicit declaration of function 'ifoClose' > dvdnavsrc.c:582: warning: implicit declaration of function 'ifoOpen' > dvdnavsrc.c:582: warning: assignment makes pointer from integer without a cast > dvdnavsrc.c:609: warning: ISO C90 forbids mixed declarations and code > dvdnavsrc.c: In function 'gst_dvd_nav_src_update_highlight': > dvdnavsrc.c:1114: warning: ISO C90 forbids mixed declarations and code > dvdnavsrc.c: In function 'read_vts_info': > dvdnavsrc.c:1484: warning: assignment makes pointer from integer without a cast > dvdnavsrc.c:1501: warning: assignment makes pointer from integer without a cast > dvdnavsrc.c: In function 'gst_dvd_nav_src_process_next_block': > dvdnavsrc.c:1644: warning: ISO C90 forbids mixed declarations and code > dvdnavsrc.c:1659: warning: ISO C90 forbids mixed declarations and code > dvdnavsrc.c:1683: warning: ISO C90 forbids mixed declarations and code > dvdnavsrc.c:1759: warning: ISO C90 forbids mixed declarations and code > dvdnavsrc.c: In function 'gst_dvd_nav_src_start': > dvdnavsrc.c:1979: warning: assignment makes pointer from integer without a cast > gmake: *** [libgstdvdnav_la-dvdnavsrc.lo] Error 1 > *** Error code 2 > > Stop in /a/ports/multimedia/gstreamer-plugins-dvd. > ================================================================ > build of /usr/ports/multimedia/gstreamer-plugins-dvd ended at Mon Sep 21 12:00:26 UTC 2009 -- Pav Lucistnik Fairy tales do not tell children that dragons exist. Children already know dragons exist. Fairy tales tell children that dragons can be killed. -- G. K. Chesterton -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: Toto je =?UTF-8?Q?digit=C3=A1ln=C4=9B?= =?ISO-8859-1?Q?_podepsan=E1?= =?UTF-8?Q?_=C4=8D=C3=A1st?= =?ISO-8859-1?Q?_zpr=E1vy?= Url : http://lists.freebsd.org/pipermail/freebsd-multimedia/attachments/20090921/3cb2222b/attachment.pgp From naddy at mips.inka.de Mon Sep 21 21:27:31 2009 From: naddy at mips.inka.de (Christian Weisgerber) Date: Mon Sep 21 21:27:45 2009 Subject: Downloading RTSP stream? References: Message-ID: b. f. wrote: > By the way, when you were attempting to download this with > mplayer, did you use -dumpstream in conjunction with -dumpfile, and > did you experiment with the -rtsp-* switches? The -rtsp-* switches didn't seem relevant. Turns out they aren't available at all unless mplayer is built with liveMedia. So I recompiled the mplayer port with option LIVEMEDIA. And presto, mplayer -rtsp-stream-over-tcp (to cope with NAT) now *plays* the stream just fine. However, -dumpstream errors out: Cannot dump this stream - no file descriptor available. > tinker with various knobs. I got mplayer to play the output of the > first 30 seconds of your stream, albeit with a stream of error > messages (I used tcp transport to allow passage through a firewall, > and had to bump the buffer sizes as a result): > > openRTSP -4 -B 100000 -b 100000 -d 30 -D 110 -Q -n -t > rtsp://ondemand.quicktime.zdf.newmedia.nacamar.net/zdf/data/quicktime/zdf/09/09/090920_untergang_szent_istvan_tex_vh.mp4 I don't see how most of these switches are relevant. Hmm, "openRTSP -f 25 -w 688 -h 384 -4 -d 30 -t " now captures something that mplayer can sort of play. Tons of errors, though. Oh well. I'll pass for now and maybe revisit this topic in a year. -- Christian "naddy" Weisgerber naddy@mips.inka.de From dbalas at mail.ru Tue Sep 22 17:38:22 2009 From: dbalas at mail.ru (=?windows-1251?Q?=C1=E0=EB=FF=F1=ED=E8=EA=EE=E2_=C4=EC=E8=F2=F0=E8=E9?=) Date: Tue Sep 22 17:38:29 2009 Subject: please help Message-ID: Please help checking for gtkdoc-check... no configure: Looking for Python version >= 2.1 checking for python... /usr/local/bin/python checking "/usr/local/bin/python":... okay checking local Python configuration... looks good checking whether to build plugin documentation... no (gtk-doc disabled or not available) checking for cos in -lm... yes checking for ANSI C header files... (cached) yes checking for stdint types... stdint.h (shortcircuit) make use of stdint.h in _stdint.h (assuming C99 compatible system) checking netinet/in.h usability... yes checking netinet/in.h presence... yes checking for netinet/in.h... yes checking winsock2.h usability... no checking winsock2.h presence... no checking for winsock2.h... no checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking for FIONREAD in sys/ioctl.h... yes checking if compiler supports gcc-style inline assembly... yes checking for rint... yes checking for sinh... yes checking for cosh... yes checking for asinh... yes checking for stdlib.h... (cached) yes checking for unistd.h... (cached) yes checking for getpagesize... yes checking for working mmap... yes test: xyes: unexpected operator checking for struct ip_mreqn... yes checking for GLIB... yes checking for LIBOIL... yes checking for GST... no no configure: Requested 'gstreamer-0.10 >= 0.10.24' but version of GStreamer is 0.10.22 configure: error: no gstreamer-0.10 >= 0.10.24 (GStreamer) found ===> Script "configure" failed unexpectedly. Please report the problem to multimedia@FreeBSD.org [maintainer] and attach the "/usr/ports/devel/gstreamer-plugins-gconf/work/gst-plugins-good-0.10.16/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/devel/gstreamer-plugins-gconf. *** Error code 1 Stop in /usr/ports/audio/gnome-media. *** Error code 1 Stop in /usr/ports/audio/gnome-media. *** Error code 1 Stop in /usr/ports/x11/gnome2. *** Error code 1 Stop in /usr/ports/x11/gnome2. From edwin at FreeBSD.org Tue Sep 22 23:30:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue Sep 22 23:30:25 2009 Subject: ports/139071: multimedia/x264 does not link on 8-RC1 Message-ID: <200909222330.n8MNUCWJ078523@freefall.freebsd.org> Synopsis: multimedia/x264 does not link on 8-RC1 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 22 23:30:12 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=139071 From anatoly.borodin at gmail.com Wed Sep 23 00:10:03 2009 From: anatoly.borodin at gmail.com (Anatoly Borodin) Date: Wed Sep 23 00:10:09 2009 Subject: ports/139071: multimedia/x264 does not link on 8-RC1 Message-ID: <200909230010.n8N0A2mH016914@freefall.freebsd.org> The following reply was made to PR ports/139071; it has been noted by GNATS. From: Anatoly Borodin To: bug-followup@freebsd.org Cc: Subject: Re: ports/139071: multimedia/x264 does not link on 8-RC1 Date: Wed, 23 Sep 2009 03:00:06 +0300 That was the listing with the package nvidia-driver installed, but compat5x and localedata temporarilly removed. If I remove nvidia-driver too I get: yasm -O2 -f elf -Icommon/x86/ -o common/x86/cabac-a.o common/x86/cabac-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/dct-a.o common/x86/dct-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/deblock-a.o common/x86/deblock-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/mc-a.o common/x86/mc-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/mc-a2.o common/x86/mc-a2.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/pixel-a.o common/x86/pixel-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/predict-a.o common/x86/predict-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/quant-a.o common/x86/quant-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/sad-a.o common/x86/sad-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/cpu-a.o common/x86/cpu-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/dct-32.o common/x86/dct-32.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/pixel-32.o common/x86/pixel-32.asm ar rc libx264.a common/mc.o common/predict.o common/pixel.o common/macroblock.o common/frame.o common/dct.o common/cpu.o common/cabac.o common/common.o common/mdate.o common/set.o common/quant.o common/vlc.o encoder/analyse.o encoder/me.o encoder/ratecontrol.o encoder/set.o encoder/macroblock.o encoder/cabac.o encoder/cavlc.o encoder/encoder.o common/visualize.o common/display-x11.o common/x86/mc-c.o common/x86/predict-c.o common/x86/cabac-a.o common/x86/dct-a.o common/x86/deblock-a.o common/x86/mc-a.o common/x86/mc-a2.o common/x86/pixel-a.o common/x86/predict-a.o common/x86/quant-a.o common/x86/sad-a.o common/x86/cpu-a.o common/x86/dct-32.o common/x86/pixel-32.o ranlib libx264.a cc -o x264 x264.o matroska.o muxers.o libx264.a -L/usr/local/lib -L/usr/local/lib -L/usr/X11R6/lib -lX11 -lm -pthread -lgpac -s -fprofile-generate /usr/lib/libgcov.a(_gcov.o)(.text+0x145f): In function `gcov_exit': : undefined reference to `__stack_chk_fail_local' gmake[1]: *** [x264] Error 1 gmake[1]: Leaving directory `/usr/obj/usr/ports/multimedia/x264/work/x264-snapshot-20081218-2245' gmake: *** [fprofiled] Error 2 *** Error code 1 Stop in /usr/ports/multimedia/x264. *** Error code 1 Stop in /usr/ports/multimedia/x264. With all the beforementioned packages installed I get more messages, but the result is the same: yasm -O2 -f elf -Icommon/x86/ -o common/x86/cabac-a.o common/x86/cabac-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/dct-a.o common/x86/dct-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/deblock-a.o common/x86/deblock-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/mc-a.o common/x86/mc-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/mc-a2.o common/x86/mc-a2.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/pixel-a.o common/x86/pixel-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/predict-a.o common/x86/predict-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/quant-a.o common/x86/quant-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/sad-a.o common/x86/sad-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/cpu-a.o common/x86/cpu-a.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/dct-32.o common/x86/dct-32.asm yasm -O2 -f elf -Icommon/x86/ -o common/x86/pixel-32.o common/x86/pixel-32.asm ar rc libx264.a common/mc.o common/predict.o common/pixel.o common/macroblock.o common/frame.o common/dct.o common/cpu.o common/cabac.o common/common.o common/mdate.o common/set.o common/quant.o common/vlc.o encoder/analyse.o encoder/me.o encoder/ratecontrol.o encoder/set.o encoder/macroblock.o encoder/cabac.o encoder/cavlc.o encoder/encoder.o common/visualize.o common/display-x11.o common/x86/mc-c.o common/x86/predict-c.o common/x86/cabac-a.o common/x86/dct-a.o common/x86/deblock-a.o common/x86/mc-a.o common/x86/mc-a2.o common/x86/pixel-a.o common/x86/predict-a.o common/x86/quant-a.o common/x86/sad-a.o common/x86/cpu-a.o common/x86/dct-32.o common/x86/pixel-32.o ranlib libx264.a cc -o x264 x264.o matroska.o muxers.o libx264.a -L/usr/local/lib -L/usr/local/lib -L/usr/X11R6/lib -lX11 -lm -pthread -lgpac -s -fprofile-generate /usr/bin/ld: warning: libm.so.3, needed by /usr/local/lib/libGL.so.1, may conflict with libm.so.5 /usr/bin/ld: warning: libc.so.5, needed by /usr/local/lib/libGLcore.so.1, may conflict with libc.so.7 /usr/local/lib/compat/libc.so.5: warning: WARNING! setkey(3) not present in the system! /usr/local/lib/compat/libc.so.5: warning: warning: this program uses gets(), which is unsafe. /usr/local/lib/compat/libc.so.5: warning: warning: mktemp() possibly used unsafely; consider using mkstemp() /usr/local/lib/compat/libc.so.5: warning: WARNING! des_setkey(3) not present in the system! /usr/local/lib/compat/libc.so.5: warning: WARNING! encrypt(3) not present in the system! /usr/local/lib/compat/libc.so.5: warning: warning: tmpnam() possibly used unsafely; consider using mkstemp() /usr/local/lib/compat/libc.so.5: warning: warning: this program uses f_prealloc(), which is not recommended. /usr/local/lib/compat/libc.so.5: warning: WARNING! des_cipher(3) not present in the system! /usr/local/lib/compat/libc.so.5: warning: warning: tempnam() possibly used unsafely; consider using mkstemp() /usr/lib/libgcov.a(_gcov.o)(.text+0x145f): In function `gcov_exit': : undefined reference to `__stack_chk_fail_local' gmake[1]: *** [x264] Error 1 gmake[1]: Leaving directory `/usr/obj/usr/ports/multimedia/x264/work/x264-snapshot-20081218-2245' gmake: *** [fprofiled] Error 2 *** Error code 1 Stop in /usr/ports/multimedia/x264. *** Error code 1 Stop in /usr/ports/multimedia/x264. From bsam at ipt.ru Wed Sep 23 07:58:23 2009 From: bsam at ipt.ru (Boris Samorodov) Date: Wed Sep 23 07:58:30 2009 Subject: please help In-Reply-To: (=?utf-8?B?ItCR0LDQu9GP0YHQvdC40LrQvtCyINCU0LzQuNGC0YDQuNC5Iidz?= message of "Tue\, 22 Sep 2009 17\:12\:04 +0400") References: Message-ID: <22940558@ipt.ru> ?????????? ??????? writes: > configure: Requested 'gstreamer-0.10 >= 0.10.24' but version of GStreamer is 0.10.22 > configure: error: no gstreamer-0.10 >= 0.10.24 (GStreamer) found Seems that the diagnistic is very descriptive. -- WBR, bsam From avg at icyb.net.ua Wed Sep 23 09:45:40 2009 From: avg at icyb.net.ua (Andriy Gapon) Date: Wed Sep 23 09:45:47 2009 Subject: libmad mp3 distortions In-Reply-To: <20090918212417.4472db3f.ariff@FreeBSD.org> References: <4AAF7604.3070304@icyb.net.ua> <20090917161442.176733aid7epmr8k@webmail.leidinger.net> <4AB36AAD.7040704@icyb.net.ua> <20090918212417.4472db3f.ariff@FreeBSD.org> Message-ID: <4AB9EE3F.9050708@icyb.net.ua> on 18/09/2009 16:24 Ariff Abdullah said the following: > > It is time for mp3gain/replaygain . You have to retrain your hearing > and listening comfort. > > Search for "Loudness War". > Thank you for pointing me in the right direction! It looks like the files already have Replaygain data in APE format (looks to be produced by mp3gain). Unfortunately there were two issues: 1) there seems to be a bug in audacious madplug (MPEG/MP3 plugin), because of which it doesn't correctly parse APEv2 header; 2) the files also contains another APE header (without Replaygain data) that confuses some players that do not have the same bug as audacious Anyway, by "applying" Replaygain parameters to MP3 data iself I became a happier man :-) Thanks! -- Andriy Gapon From aragon at phat.za.net Wed Sep 23 18:01:37 2009 From: aragon at phat.za.net (Aragon Gouveia) Date: Wed Sep 23 18:01:44 2009 Subject: cinelerra In-Reply-To: <200909211956.56498.andreas@braml.org> References: <4AB76DF8.8040009@icyb.net.ua> <200909211956.56498.andreas@braml.org> Message-ID: <4ABA5ED0.4030309@phat.za.net> Andreas Hermann Braml wrote: > Am Montag 21 September 2009 14:13:44 schrieb Andriy Gapon: >> Anybody tried porting cinelerra? > > Yes :) > > Bye > pseudoruprecht > > Well, just kidding. > > There were efforts over a year ago by one Aragon Gouveia Yes, I did try it a while ago. Got it to the point of compiling and running, but it kept crashing (freezing). No one was able to help, and I didn't spend more time on it. I'm hoping the Lumiera project [1] produces something more FreeBSD friendly and usable soon. [1] http://lumiera.org/ Regards, Aragon From mav at FreeBSD.org Wed Sep 23 21:16:04 2009 From: mav at FreeBSD.org (Alexander Motin) Date: Wed Sep 23 21:16:37 2009 Subject: snd_hda same output on two pcms? In-Reply-To: <1253107380.00163698.1253094002@10.7.7.3> References: <1253107380.00163698.1253094002@10.7.7.3> Message-ID: <4ABA9008.5010505@FreeBSD.org> J.R. Oldroyd wrote: > Is it possible to configure snd_hda so that one output is available > on two pcm devices? > > I would like: > pcm0: built-in speaker, headphone jack > mic > > pcm1: built-in speaker only If I understand right, you want to configure hardware mixing. Most of HDA codecs unable to do it in hardware. Some other are able, but this is not supported by the driver. It tries to isolate pcmX devices one from another. -- Alexander Motin From guru at unixarea.de Thu Sep 24 12:47:03 2009 From: guru at unixarea.de (Matthias Apitz) Date: Thu Sep 24 12:47:10 2009 Subject: 8-CURRENT && ogle can't play some DVD Message-ID: <20090924122731.GA2589@current.Sisis.de> Hello, I have 8-CURRENT and ogle-0.9.2_11 from the ports. About one DVD my son likes to see it says: $ ogle WARNING[dvd_gui]: add_keybinding(): No such action: 'SaveScreenshot' WARNING[dvd_gui]: add_keybinding(): No such action: 'SaveScreenshotWithSPU' WARNING[dvd_gui]: add_keybinding(): No such action: 'SaveScreenshot' WARNING[dvd_gui]: add_keybinding(): No such action: 'SaveScreenshotWithSPU' Xlib: extension "RANDR" missing on display ":0.0". libdvdread: Using libdvdcss version 1.2.10 for DVD access libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VTS_03_0.IFO failed libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VTS_04_0.IFO failed libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VTS_05_0.IFO failed libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VTS_06_0.IFO failed libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VTS_07_0.IFO failed libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VTS_08_0.IFO failed libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VTS_09_0.IFO failed libdvdread: Using libdvdcss version 1.2.10 for DVD access libdvdread: Attempting to retrieve all CSS keys libdvdread: This can take a _long_ time, please be patient libdvdread: Get key for /VIDEO_TS/VIDEO_TS.VOB at 0x00000121 libdvdread: Error cracking CSS key for /VIDEO_TS/VIDEO_TS.VOB (0x00000121) libdvdread: Elapsed time 7 libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x0000654c libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_01_1.VOB (0x0000654c)!! libdvdread: Elapsed time 6 libdvdread: Get key for /VIDEO_TS/VTS_02_0.VOB at 0x0000b653 libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_02_0.VOB (0x0000b653) libdvdread: Elapsed time 7 libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x0000b688 libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_02_1.VOB (0x0000b688)!! libdvdread: Elapsed time 7 libdvdread: Found 2 VTS's libdvdread: Elapsed time 27 FATAL[ogle_mpeg_ps]: dvdreadblocks failed $ Any idea? Thanks matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ People who hate Microsoft Windows use Linux but people who love UNIX use FreeBSD. From onemda at gmail.com Thu Sep 24 21:44:11 2009 From: onemda at gmail.com (Paul B. Mahol) Date: Thu Sep 24 21:44:17 2009 Subject: 8-CURRENT && ogle can't play some DVD In-Reply-To: <20090924122731.GA2589@current.Sisis.de> References: <20090924122731.GA2589@current.Sisis.de> Message-ID: <3a142e750909241412y6c3f6358j5c675909a5440865@mail.gmail.com> On 9/24/09, Matthias Apitz wrote: > > Hello, > > I have 8-CURRENT and ogle-0.9.2_11 from the ports. About one DVD my son > likes to see it says: > > $ ogle > WARNING[dvd_gui]: add_keybinding(): No such action: 'SaveScreenshot' > WARNING[dvd_gui]: add_keybinding(): No such action: 'SaveScreenshotWithSPU' > WARNING[dvd_gui]: add_keybinding(): No such action: 'SaveScreenshot' > WARNING[dvd_gui]: add_keybinding(): No such action: 'SaveScreenshotWithSPU' > Xlib: extension "RANDR" missing on display ":0.0". > libdvdread: Using libdvdcss version 1.2.10 for DVD access > libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VTS_03_0.IFO failed > libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VTS_04_0.IFO failed > libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VTS_05_0.IFO failed > libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VTS_06_0.IFO failed > libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VTS_07_0.IFO failed > libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VTS_08_0.IFO failed > libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VTS_09_0.IFO failed > libdvdread: Using libdvdcss version 1.2.10 for DVD access > > libdvdread: Attempting to retrieve all CSS keys > libdvdread: This can take a _long_ time, please be patient > > libdvdread: Get key for /VIDEO_TS/VIDEO_TS.VOB at 0x00000121 > libdvdread: Error cracking CSS key for /VIDEO_TS/VIDEO_TS.VOB (0x00000121) > libdvdread: Elapsed time 7 > libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x0000654c > libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_01_1.VOB (0x0000654c)!! > libdvdread: Elapsed time 6 > libdvdread: Get key for /VIDEO_TS/VTS_02_0.VOB at 0x0000b653 > libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_02_0.VOB (0x0000b653) > libdvdread: Elapsed time 7 > libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x0000b688 > libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_02_1.VOB (0x0000b688)!! > libdvdread: Elapsed time 7 > libdvdread: Found 2 VTS's > libdvdread: Elapsed time 27 > FATAL[ogle_mpeg_ps]: dvdreadblocks failed > $ It worked before? why not use svn mplayer? It is obvious from output that key could not be cracked ..... This is really not freebsd(-multimedia) issue. -- Paul From guru at unixarea.de Fri Sep 25 09:28:33 2009 From: guru at unixarea.de (Matthias Apitz) Date: Fri Sep 25 09:28:40 2009 Subject: 8-CURRENT && ogle can't play some DVD In-Reply-To: <3a142e750909241412y6c3f6358j5c675909a5440865@mail.gmail.com> References: <20090924122731.GA2589@current.Sisis.de> <3a142e750909241412y6c3f6358j5c675909a5440865@mail.gmail.com> Message-ID: <20090925092834.GA16551@current.Sisis.de> El d?a Thursday, September 24, 2009 a las 11:12:48PM +0200, Paul B. Mahol escribi?: > > libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_02_0.VOB (0x0000b653) > > libdvdread: Elapsed time 7 > > libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x0000b688 > > libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_02_1.VOB (0x0000b688)!! > > libdvdread: Elapsed time 7 > > libdvdread: Found 2 VTS's > > libdvdread: Elapsed time 27 > > FATAL[ogle_mpeg_ps]: dvdreadblocks failed > > $ > > It worked before? Ogle works with other DVD, but not with the one my son got. > why not use svn mplayer? Thanks for your hint, I just did a svn co and now I'm compiling it. > It is obvious from output that key could not be cracked ..... > > This is really not freebsd(-multimedia) issue. Well, I thought that if someone has a problem with a FreeBSD multimedia application from the FreeBSD ports collection, that this list is the place to ask for hints. Sorry, if I was wrong matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ People who hate Microsoft Windows use Linux but people who love UNIX use FreeBSD. From onemda at gmail.com Fri Sep 25 10:31:33 2009 From: onemda at gmail.com (Paul B. Mahol) Date: Fri Sep 25 10:31:39 2009 Subject: 8-CURRENT && ogle can't play some DVD In-Reply-To: <20090925092834.GA16551@current.Sisis.de> References: <20090924122731.GA2589@current.Sisis.de> <3a142e750909241412y6c3f6358j5c675909a5440865@mail.gmail.com> <20090925092834.GA16551@current.Sisis.de> Message-ID: <3a142e750909250331k2adb47fr20e89460ec4674ea@mail.gmail.com> On 9/25/09, Matthias Apitz wrote: > El d?a Thursday, September 24, 2009 a las 11:12:48PM +0200, Paul B. Mahol > escribi?: > >> > libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_02_0.VOB >> > (0x0000b653) >> > libdvdread: Elapsed time 7 >> > libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x0000b688 >> > libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_02_1.VOB >> > (0x0000b688)!! >> > libdvdread: Elapsed time 7 >> > libdvdread: Found 2 VTS's >> > libdvdread: Elapsed time 27 >> > FATAL[ogle_mpeg_ps]: dvdreadblocks failed >> > $ >> >> It worked before? > > Ogle works with other DVD, but not with the one my son got. Search for similar problems regarding encrypted/protected DVDs: http://en.wikipedia.org/wiki/Ogle_DVD_Player > >> why not use svn mplayer? > > Thanks for your hint, I just did a svn co and now I'm compiling it. > >> It is obvious from output that key could not be cracked ..... >> >> This is really not freebsd(-multimedia) issue. > > Well, I thought that if someone has a problem with a FreeBSD multimedia > application from the FreeBSD ports collection, that this list is the place > to > ask for hints. Sorry, if I was wrong Well I think that there are much better place to ask general question not directly related to FreeBSD. Most likely because you will get more useful responses .... -- Paul From kmckay at dynam.ca Sat Sep 26 08:14:44 2009 From: kmckay at dynam.ca (Kris McKay) Date: Sat Sep 26 08:14:50 2009 Subject: faad failing to install on freebsd 5.4 with recently updated ports tree Message-ID: <005a01ca3e86$4eb3b3a0$6800a8c0@DYNAMTABLET> Hoping someone can help.. I'm trying to install faad as it's required for ffmpeg and the mediatomb ports however it keeps failing.. I receive a number of warnings similar to the following: configure.in:14: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached and finally the install fails with the following message: ... checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... gawk checking whether gmake sets $(MAKE)... yes ./configure.lineno: 2552: Syntax error: word unexpected (expecting ")") ===> Script "configure" failed unexpectedly. Please report the problem to multimedia@FreeBSD.org [maintainer] and attach the "/usr/ports/audio/faad/work/faad2-2.7/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/audio/faad. -------------- next part -------------- A non-text attachment was scrubbed... Name: config.log Type: application/octet-stream Size: 5366 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-multimedia/attachments/20090926/f13044aa/config.obj From miwi at FreeBSD.org Sat Sep 26 08:34:45 2009 From: miwi at FreeBSD.org (Martin Wilke) Date: Sat Sep 26 08:34:52 2009 Subject: faad failing to install on freebsd 5.4 with recently updated ports tree In-Reply-To: <005a01ca3e86$4eb3b3a0$6800a8c0@DYNAMTABLET> References: <005a01ca3e86$4eb3b3a0$6800a8c0@DYNAMTABLET> Message-ID: <20090926081915.GJ60830@bsdcrew.de> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Sat, Sep 26, 2009 at 03:49:49AM -0500, Kris McKay wrote: > Hoping someone can help.. > > I'm trying to install faad as it's required for ffmpeg and the mediatomb ports however it keeps failing.. I receive a number of warnings similar to the following: > > configure.in:14: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached > > and finally the install fails with the following message: > ... > checking whether build environment is sane... yes > checking for a thread-safe mkdir -p... ./install-sh -c -d > checking for gawk... gawk > checking whether gmake sets $(MAKE)... yes > ./configure.lineno: 2552: Syntax error: word unexpected (expecting ")") > ===> Script "configure" failed unexpectedly. > Please report the problem to multimedia@FreeBSD.org [maintainer] and attach > the "/usr/ports/audio/faad/work/faad2-2.7/config.log" including the output > of the failure of your make command. Also, it might be a good idea to provide > an overview of all packages installed on your system (e.g. an `ls > /var/db/pkg`). > *** Error code 1 > > Stop in /usr/ports/audio/faad. > > > Sorry but FreeBSD 5.X isn't longer supported please update to 7 or above. - - Martin > _______________________________________________ > freebsd-multimedia@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-multimedia > To unsubscribe, send any mail to "freebsd-multimedia-unsubscribe@freebsd.org" - -- +-----------------------+-------------------------------+ | PGP : 0xB1E6FCE9 | Jabber : miwi(at)BSDCrew.de | | Skype : splash_111 | Mail : miwi(at)FreeBSD.org | +-----------------------+-------------------------------+ | Mess with the Best, Die like the Rest! | +-----------------------+-------------------------------+ -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.12 (FreeBSD) iEYEARECAAYFAkq9zoMACgkQdLJIhLHm/Onc2gCffXjmhLBNpCYECcrweNa4Eft/ W1MAnjISlpJloFqy6j0ZvUbDDU+KRG+2 =KM0S -----END PGP SIGNATURE----- From ruinevil at gmail.com Sun Sep 27 15:03:55 2009 From: ruinevil at gmail.com (ruin evil) Date: Sun Sep 27 15:04:01 2009 Subject: Mplayer SVN or linux-mplayer Message-ID: <4629472d0909270733w3bb923f1u50ecfa57cf1edaea@mail.gmail.com> Paul B. Mahol said: "why not use svn mplayer?" How do you install svn mplayer? Does someone have a tarball of the port(s) that I can drop in, and a list of options to avoid because they prevent compilation? Also has anyone tried to use mplayer under the linux compatibility layer? -ruinevil From henry.hu.sh at gmail.com Sun Sep 27 15:48:54 2009 From: henry.hu.sh at gmail.com (Henry Hu) Date: Sun Sep 27 15:48:59 2009 Subject: Mplayer SVN or linux-mplayer In-Reply-To: <4629472d0909270733w3bb923f1u50ecfa57cf1edaea@mail.gmail.com> References: <4629472d0909270733w3bb923f1u50ecfa57cf1edaea@mail.gmail.com> Message-ID: <53a1e0710909270822o7fefb630sbb7fcfd280700c82@mail.gmail.com> On Sun, Sep 27, 2009 at 10:33 PM, ruin evil wrote: > Paul B. Mahol said: > > "why not use svn mplayer?" > > How do you install svn mplayer? Does someone have a tarball of the port(s) > that I can drop in, and a list of options to avoid because they prevent > compilation? > You just need to checkout it from svn: svn co svn://svn.mplayerhq.hu/mplayer/trunk mplayer and the only configure argument I used is --disable-v4l2, since the configure would enable v4l2, but the compilation process would stop with error. Maybe CFLAGS=-I/usr/local/include and LDFLAGS=-L/usr/local/lib are also needed, as once they are required. > Also has anyone tried to use mplayer under the linux compatibility layer? > > -ruinevil > _______________________________________________ > freebsd-multimedia@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-multimedia > To unsubscribe, send any mail to "freebsd-multimedia-unsubscribe@freebsd.org" > Henry From ruinevil at gmail.com Sun Sep 27 17:17:23 2009 From: ruinevil at gmail.com (ruin evil) Date: Sun Sep 27 17:17:29 2009 Subject: Mplayer SVN or linux-mplayer In-Reply-To: <53a1e0710909270822o7fefb630sbb7fcfd280700c82@mail.gmail.com> References: <4629472d0909270733w3bb923f1u50ecfa57cf1edaea@mail.gmail.com> <53a1e0710909270822o7fefb630sbb7fcfd280700c82@mail.gmail.com> Message-ID: <4629472d0909271017pffe1e96p1081ac0e3037863a@mail.gmail.com> Doesn't appear to work on AMD64. Some assembly error. cc -DHAVE_AV_CONFIG_H -I.. -I.. -Wundef -Wdisabled-optimization -Wno-pointer-sign -Wdeclaration-after-statement -std=gnu99 -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -Ilibdvdread4 -I. -I/usr/local/include -D_THREAD_SAFE -I/usr/X11R6/include -I/usr/local/include/ -I/usr/local/include/SDL -I/usr/local/include -D_REENTRANT -I/usr/local/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/local/include/fribidi -I/usr/local/include -I/usr/local/include -c -o h264.o h264.c In file included from h264.c:42: x86/h264_i386.h: In function 'decode_significance_x86': x86/h264_i386.h:41: warning: cast from pointer to integer of different size x86/h264_i386.h:42: warning: cast from pointer to integer of different size x86/h264_i386.h: In function 'decode_significance_8x8_x86': x86/h264_i386.h:94: warning: cast from pointer to integer of different size h264.c: In function 'pred_direct_motion': h264.c:1048: warning: assignment from incompatible pointer type h264.c:1049: warning: assignment from incompatible pointer type h264.c: In function 'filter_mb_dir': h264.c:6351: warning: initialization from incompatible pointer type h264.c:6352: warning: initialization from incompatible pointer type /var/tmp//ccu6Kck4.s: Assembler messages: /var/tmp//ccu6Kck4.s:69: Error: `ff_h264_lps_range(%eax,%esi,2)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:79: Error: `ff_h264_norm_shift(%esi)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:81: Error: `ff_h264_mlps_state+128(%eax)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:93: Error: `-1(%ebx)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:96: Error: `ff_h264_norm_shift(%ecx)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:139: Error: `ff_h264_lps_range(%eax,%esi,2)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:149: Error: `ff_h264_norm_shift(%esi)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:151: Error: `ff_h264_mlps_state+128(%eax)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:163: Error: `-1(%ebx)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:166: Error: `ff_h264_norm_shift(%ecx)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7098: Error: `ff_h264_lps_range(%edx,%esi,2)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7108: Error: `ff_h264_norm_shift(%esi)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7110: Error: `ff_h264_mlps_state+128(%edx)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7122: Error: `-1(%ebx)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7125: Error: `ff_h264_norm_shift(%ecx)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7136: Error: `ff_h264_lps_range(%edx,%esi,2)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7146: Error: `ff_h264_norm_shift(%esi)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7148: Error: `ff_h264_mlps_state+128(%edx)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7160: Error: `-1(%ebx)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7163: Error: `ff_h264_norm_shift(%ecx)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7234: Error: `ff_h264_lps_range(%edx,%esi,2)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7244: Error: `ff_h264_norm_shift(%esi)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7246: Error: `ff_h264_mlps_state+128(%edx)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7258: Error: `-1(%ebx)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7261: Error: `ff_h264_norm_shift(%ecx)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7270: Error: `last_coeff_flag_offset_8x8(%edi)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7275: Error: `ff_h264_lps_range(%edx,%esi,2)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7285: Error: `ff_h264_norm_shift(%esi)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7287: Error: `ff_h264_mlps_state+128(%edx)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7299: Error: `-1(%ebx)' is not a valid 64 bit base/index expression /var/tmp//ccu6Kck4.s:7302: Error: `ff_h264_norm_shift(%ecx)' is not a valid 64 bit base/index expression gmake[1]: *** [h264.o] Error 1 gmake[1]: Leaving directory `/root/mplayer/libavcodec' gmake: *** [libavcodec/libavcodec.a] Error 2 Oh well. On Sun, Sep 27, 2009 at 11:22 AM, Henry Hu wrote: > On Sun, Sep 27, 2009 at 10:33 PM, ruin evil wrote: > > Paul B. Mahol said: > > > > "why not use svn mplayer?" > > > > How do you install svn mplayer? Does someone have a tarball of the > port(s) > > that I can drop in, and a list of options to avoid because they prevent > > compilation? > > > > You just need to checkout it from svn: > svn co svn://svn.mplayerhq.hu/mplayer/trunk mplayer > and the only configure argument I used is --disable-v4l2, since the > configure would enable v4l2, but the compilation process would stop > with error. > Maybe CFLAGS=-I/usr/local/include and LDFLAGS=-L/usr/local/lib are > also needed, as once they are required. > > > Also has anyone tried to use mplayer under the linux compatibility layer? > > > > -ruinevil > > _______________________________________________ > > freebsd-multimedia@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-multimedia > > To unsubscribe, send any mail to " > freebsd-multimedia-unsubscribe@freebsd.org" > > > > Henry > From hinokind at gmail.com Sun Sep 27 19:20:26 2009 From: hinokind at gmail.com (=?utf-8?B?QW5kcml1cyBNb3JrxatuYXM=?=) Date: Sun Sep 27 19:20:39 2009 Subject: Mplayer SVN or linux-mplayer In-Reply-To: <4629472d0909271017pffe1e96p1081ac0e3037863a@mail.gmail.com> References: <4629472d0909270733w3bb923f1u50ecfa57cf1edaea@mail.gmail.com> <53a1e0710909270822o7fefb630sbb7fcfd280700c82@mail.gmail.com> <4629472d0909271017pffe1e96p1081ac0e3037863a@mail.gmail.com> Message-ID: On Sun, 27 Sep 2009 20:17:20 +0300, ruin evil wrote: > Doesn't appear to work on AMD64. Some assembly error. You need to compile h264.c with -DBROKEN_RELOCATIONS. Here's what works for me: $ svn diff Index: vidix/pci.c =================================================================== --- vidix/pci.c (revision 29723) +++ vidix/pci.c (working copy) @@ -481,8 +481,6 @@ #include "sysdep/pci_arm32.c" #elif defined(__powerpc__) #include "sysdep/pci_powerpc.c" -#elif defined(__x86_64__) || defined(__sh__) -/* Nothing here right now */ #else #include "sysdep/pci_x86.c" #endif ./configure --extra-cflags=-DBROKEN_RELOCATIONS vidix/pci.c is modified like in a patch in original mplayer port. -- Andrius From guru at unixarea.de Mon Sep 28 05:14:20 2009 From: guru at unixarea.de (Matthias Apitz) Date: Mon Sep 28 05:14:27 2009 Subject: Mplayer SVN or linux-mplayer In-Reply-To: <53a1e0710909270822o7fefb630sbb7fcfd280700c82@mail.gmail.com> References: <4629472d0909270733w3bb923f1u50ecfa57cf1edaea@mail.gmail.com> <53a1e0710909270822o7fefb630sbb7fcfd280700c82@mail.gmail.com> Message-ID: <20090928051420.GA2025@current.Sisis.de> El d?a Sunday, September 27, 2009 a las 11:22:27PM +0800, Henry Hu escribi?: > On Sun, Sep 27, 2009 at 10:33 PM, ruin evil wrote: > > Paul B. Mahol said: > > > > "why not use svn mplayer?" > > > > How do you install svn mplayer? Does someone have a tarball of the port(s) > > that I can drop in, and a list of options to avoid because they prevent > > compilation? > > > > You just need to checkout it from svn: > svn co svn://svn.mplayerhq.hu/mplayer/trunk mplayer > and the only configure argument I used is --disable-v4l2, since the > configure would enable v4l2, but the compilation process would stop > with error. > Maybe CFLAGS=-I/usr/local/include and LDFLAGS=-L/usr/local/lib are > also needed, as once they are required. I have compiled mlayer from SVN without any args for ./configure; it compiles and installs fine on 8-CURRENT x86 (but can't crack the DVD I wanted to see either). matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ People who hate Microsoft Windows use Linux but people who love UNIX use FreeBSD. From bugmaster at FreeBSD.org Mon Sep 28 11:06:59 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Sep 28 11:08:45 2009 Subject: Current problem reports assigned to freebsd-multimedia@FreeBSD.org Message-ID: <200909281106.n8SB6x1c064086@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/139071 multimedia multimedia/x264 does not link on 8-RC1 o ports/138386 multimedia multimedia/mkvtoolnix lacks the Qt-Gui and configure-k o ports/138272 multimedia graphics/exiv2: add patch from upstream o ports/138213 multimedia Apply SqueezeCenter patches to audio/faad that enable o ports/138056 multimedia multimedia/ogle: buggy pre-configure o ports/137687 multimedia multimedia/libquicktime 1.1.3 build failure o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o ports/137495 multimedia multimedia/linux-realplayer: wrong directory on ftp se o ports/135313 multimedia (patch) Update multimedia/podcatcher to 3.1.4 (Sep 200 o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o ports/133462 multimedia multimedia/x264 build fails on powerpc o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o ports/132431 multimedia multimedia/ogmtools dvdxchap are not installed. f kern/132336 multimedia [sound] [snd_hda] Realtek ALC888 audio chipset does no o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o ports/127084 multimedia multimedia/linux-realplayer is vulnerable s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt f kern/115666 multimedia [sound] Microphone does not work o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst s kern/113950 multimedia [sound] [patch] [request] add per-vchan mixer support o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o kern/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/92512 multimedia [sound] distorted mono output with emu10k1 o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup s kern/83697 multimedia [sound] [snd_mss] [patch] support, docs added for full o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/80632 multimedia [sound] pcm driver missing support for CMI8738 auxilla o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79678 multimedia [sound] sound works except recording from any source f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem 63 problems total.