From owner-freebsd-multimedia@FreeBSD.ORG Sun Sep 27 19:20:26 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 A1D6C1065679 for ; Sun, 27 Sep 2009 19:20:26 +0000 (UTC) (envelope-from hinokind@gmail.com) Received: from mail-bw0-f227.google.com (mail-bw0-f227.google.com [209.85.218.227]) by mx1.freebsd.org (Postfix) with ESMTP id 29D718FC21 for ; Sun, 27 Sep 2009 19:20:25 +0000 (UTC) Received: by bwz27 with SMTP id 27so2809300bwz.43 for ; Sun, 27 Sep 2009 12:20:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:content-type:to:cc:subject :references:date:mime-version:content-transfer-encoding:from :message-id:in-reply-to:user-agent; bh=Luteq7Kq+6HsuyHkRu2L/IShA5nD37BhOCap93ikVhw=; b=G/lqUVxKpgJJi8ch1I9Bl+f6l/gLU2zhUuXW+H7DG5O6qXr97sRRzeHC6JkQGcJyqU krb9YC0JMpqFvWrkF5k0lQ2wr8NBe5Grddn9nsi4RdLqL6GG1bqAM7QNNJiJCtQPq2+t 4hd83dsoSE5uuTzOjSZWj5lVlZxzZRDOp9L5A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=content-type:to:cc:subject:references:date:mime-version :content-transfer-encoding:from:message-id:in-reply-to:user-agent; b=hsXlwSdU2kllPhIxEAgW23KMaACle4VfFs5q0jv7m6NnTQnKrwanqrZV7XRTbgbyCD jIAweRYmpjgoILGnzy1vrXA3HZ+Oh6SI/soEpInbX3Wkm33DGa1xEWPBEp2Cmde/Jm9U fj2ei+O1VLCvutipecdRy5O56jIK/mbkz/y7E= Received: by 10.204.34.9 with SMTP id j9mr2275754bkd.10.1254077581599; Sun, 27 Sep 2009 11:53:01 -0700 (PDT) Received: from klevas (hst-17-80.splius.lt [77.79.17.80]) by mx.google.com with ESMTPS id 13sm2644832fks.20.2009.09.27.11.53.00 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 27 Sep 2009 11:53:01 -0700 (PDT) Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes To: "ruin evil" References: <4629472d0909270733w3bb923f1u50ecfa57cf1edaea@mail.gmail.com> <53a1e0710909270822o7fefb630sbb7fcfd280700c82@mail.gmail.com> <4629472d0909271017pffe1e96p1081ac0e3037863a@mail.gmail.com> Date: Sun, 27 Sep 2009 21:52:58 +0300 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: =?utf-8?B?QW5kcml1cyBNb3JrxatuYXM=?= Message-ID: In-Reply-To: <4629472d0909271017pffe1e96p1081ac0e3037863a@mail.gmail.com> User-Agent: Opera Mail/10.00 (FreeBSD) Cc: freebsd-multimedia@freebsd.org Subject: Re: Mplayer SVN or linux-mplayer 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: Sun, 27 Sep 2009 19:20:26 -0000 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