Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 26 Dec 2006 19:50:23 -0200 (BRST)
From:      Sergio Lenzi <lenzi@k1.com.br>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        riggs@rrr.de
Subject:   ports/107217: [PATCH] multimedia/mplayer: [SUMMARIZE CHANGES]
Message-ID:  <200612262150.kBQLoNEb066129@k1.com.br>
Resent-Message-ID: <200612262210.kBQMAIui049447@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         107217
>Category:       ports
>Synopsis:       [PATCH] multimedia/mplayer: [SUMMARIZE CHANGES]
>Confidential:   no
>Severity:       critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Dec 26 22:10:17 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Sergio Lenzi
>Release:        FreeBSD 6.1-RELEASE i386
>Organization:
k1 sistemas
>Environment:
System: FreeBSD k1.com.br 6.1-RELEASE FreeBSD 6.1-RELEASE #1: Sat Nov  4 17:26:48 BRST
>Description:
[DESCRIBE CHANGES]
when building mplayer with h264 and polyaudio, an external
reference is generated to: last_coeff_flag_offset in the polyaudio
module, that is static in the h264. 
a patch is done to remove the static atribute... 

Added file(s):
- files/patch-h264

Port maintainer (riggs@rrr.de) is cc'd.

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
build the package (mplayer) with all the options turned on (h264 & polyaudio)
>Fix:

--- mplayer-0.99.10_1.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/multimedia/mplayer/files/patch-h264 /fileserver/ports/multimedia/mplayer/files/patch-h264
--- /usr/ports/multimedia/mplayer/files/patch-h264	Wed Dec 31 21:00:00 1969
+++ /fileserver/ports/multimedia/mplayer/files/patch-h264	Thu Dec 21 15:02:08 2006
@@ -0,0 +1,11 @@
+--- libavcodec/h264.c.orig	Thu Dec 21 14:57:54 2006
++++ libavcodec/h264.c	Thu Dec 21 15:00:14 2006
+@@ -6034,7 +6034,7 @@
+     return ctx + 4 * cat;
+ }
+ 
+-static const __attribute((used)) uint8_t last_coeff_flag_offset_8x8[63] = {
++const __attribute((used)) uint8_t last_coeff_flag_offset_8x8[63] = {
+     0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+     2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+     3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4,
--- mplayer-0.99.10_1.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200612262150.kBQLoNEb066129>