From owner-freebsd-multimedia@FreeBSD.ORG Mon Dec 7 19:43:09 2009 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 960D5106568F for ; Mon, 7 Dec 2009 19:43:09 +0000 (UTC) (envelope-from hinokind@gmail.com) Received: from mail-ew0-f211.google.com (mail-ew0-f211.google.com [209.85.219.211]) by mx1.freebsd.org (Postfix) with ESMTP id EF33E8FC20 for ; Mon, 7 Dec 2009 19:43:06 +0000 (UTC) Received: by ewy3 with SMTP id 3so59150ewy.33 for ; Mon, 07 Dec 2009 11:43:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:content-type:to:subject :references:date:mime-version:content-transfer-encoding:from :message-id:in-reply-to:user-agent; bh=ZQg3ZWHg3j7+vFJltghLf+tvMf/DzMN2JRWKS3ht5VU=; b=NRnRTcj4r6HhPsywGktNdiuNBOlyD9yzciL/AM9G/l2ef6AI++UEeYDSrECrRrirLr WYTjIpuUhvDUaF7FnxJQceTO7m10/JYmOCL14dDZci7dujoKLGt/uI22zSxFUDcEnGEF 5ytVEKi7t0QviqlDBCJjCMgYoWHI5Um4G4TTQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=content-type:to:subject:references:date:mime-version :content-transfer-encoding:from:message-id:in-reply-to:user-agent; b=xSOP9fznqdnqbhIzkuFGnqEUi2wVkq3+oFcc0bVWm31E9KNFcTMRtUZnG16JzkzJaY jzzLl3bDu6VOWF/ysHX6Xh7IUmsG7kZYm8ksp+1ywBaZGsmnPzWdbXAYakagVL/K3ZIE y94bPHhRXlLLDcBqQr6lBTynXuRLcRj2cTKNU= Received: by 10.213.50.139 with SMTP id z11mr33314ebf.13.1260214947204; Mon, 07 Dec 2009 11:42:27 -0800 (PST) Received: from klevas (hst-17-80.splius.lt [77.79.17.80]) by mx.google.com with ESMTPS id 14sm3585463ewy.3.2009.12.07.11.42.25 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 07 Dec 2009 11:42:26 -0800 (PST) Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes To: "Tom Evans" , freebsd-multimedia@freebsd.org References: <2e027be00912070613y5b3c4841tcd4d9ff58e1db330@mail.gmail.com> <2e027be00912071114t6a69b0a5vfdefea06e6ea9273@mail.gmail.com> Date: Mon, 07 Dec 2009 21:42:23 +0200 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: =?utf-8?B?QW5kcml1cyBNb3JrxatuYXM=?= Message-ID: In-Reply-To: <2e027be00912071114t6a69b0a5vfdefea06e6ea9273@mail.gmail.com> User-Agent: Opera Mail/10.10 (FreeBSD) Cc: Subject: Re: mplayer SVN plays video too fast on FreeBSD X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Dec 2009 19:43:09 -0000 On Mon, 07 Dec 2009 21:14:14 +0200, Tom Evans wrote: > I sent this to the mplayer mailing list earlier today, without > thinking that probably someone on multimedia@ has tried to compile > mplayer from svn. Has anyone succesfully managed to do it? - and get a > working player out of it! I've seen quite a lot of reports of working SVN mplayer on FreeBSD and I've yet to run into a version that doesn't build/work, but I don't update mplayer too often. My setup on amd64: $ svn diff Index: vidix/pci.c =================================================================== --- vidix/pci.c (revision 29978) +++ vidix/pci.c (working copy) @@ -481,7 +481,7 @@ #include "sysdep/pci_arm32.c" #elif defined(__powerpc__) #include "sysdep/pci_powerpc.c" -#elif defined(__x86_64__) || defined(__sh__) +#elif (defined(__x86_64__) || defined(__sh__)) && !defined(__FreeBSD__) /* Nothing here right now */ #else #include "sysdep/pci_x86.c" $ cat build #!/bin/sh ./configure --extra-cflags=-DBROKEN_RELOCATIONS gmake -j2 In case you just updated your drivers and compiled mplayer, you may want to restart FreeBSD, because I've had some issues (not similar to yours) until I restarted after installing xorg. Also, did you try building without infinity of configure args? -- Andrius