Your message dated Thu, 02 Feb 2006 17:32:06 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#287422: fixed in libmpeg3 1.5.4-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 27 Dec 2004 16:13:01 +0000
>From [EMAIL PROTECTED] Mon Dec 27 08:13:01 2004
Return-path: <[EMAIL PROTECTED]>
Received: from c156115.adsl.hansenet.de (localhost.localdomain) 
[213.39.156.115] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1CixUT-0006X2-00; Mon, 27 Dec 2004 08:13:01 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
        id 1CixZa-0005Rp-3D; Mon, 27 Dec 2004 17:18:18 +0100
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: libmpeg3: FTBFS (amd64/gcc-4.0): invalid lvalue in increment
Message-Id: <[EMAIL PROTECTED]>
Date: Mon, 27 Dec 2004 17:18:18 +0100
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: libmpeg3
Severity: normal
Tags: patch

When building 'libmpeg3' on amd64 with gcc-4.0,
I get the following error:

gcc -c -D_REENTRANT `cat amd64/c_flags`  video/mpeg3video.c -o 
amd64/video/mpeg3video.o
video/mpeg3video.c: In function 'mpeg3video_read_yuvframe_ptr':
video/mpeg3video.c:716: warning: pointer targets in assignment differ in 
signedness
video/mpeg3video.c:717: warning: pointer targets in assignment differ in 
signedness
video/mpeg3video.c:718: warning: pointer targets in assignment differ in 
signedness
gcc -c -D_REENTRANT `cat amd64/c_flags`  video/output.c -o amd64/video/output.o
video/output.c: In function 'mpeg3video_ditherframe':
video/output.c:722: error: invalid lvalue in increment
video/output.c:747: error: invalid lvalue in increment
video/output.c:787: error: invalid lvalue in increment
video/output.c:812: error: invalid lvalue in increment
make[1]: *** [amd64/video/output.o] Error 1
make[1]: Leaving directory `/libmpeg3-1.5.4'
make: *** [build-stamp] Error 2

With the attached patch 'libmpeg3' can be compiled
on amd64 using gcc-4.0.

Regards
Andreas Jochens

diff -urN ../tmp-orig/libmpeg3-1.5.4/video/output.c ./video/output.c
--- ../tmp-orig/libmpeg3-1.5.4/video/output.c   2003-11-07 22:32:32.000000000 
+0100
+++ ./video/output.c    2004-12-27 17:08:29.879960072 +0100
@@ -497,10 +497,11 @@
        *data++ = 0;
 
 #define STORE_PIXEL_RGB565 \
-       *((unsigned short*)data)++ = \
+       *((unsigned short*)data) = \
                ((CLIP(r_l) & 0xf8) << 8) | \
                ((CLIP(g_l) & 0xfc) << 3) | \
-               ((CLIP(b_l) & 0xf8) >> 3);
+               ((CLIP(b_l) & 0xf8) >> 3);  \
+       data = ((unsigned short*)data) + 1;
 
 #define STORE_PIXEL_RGB888 \
        *data++ = CLIP(r_l); \

---------------------------------------
Received: (at 287422-close) by bugs.debian.org; 3 Feb 2006 01:40:23 +0000
>From [EMAIL PROTECTED] Thu Feb 02 17:40:23 2006
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 4.50)
        id 1F4pny-000691-MA; Thu, 02 Feb 2006 17:32:06 -0800
From: =?utf-8?q?David_Mart=C3=ADnez_Moreno?= <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.65 $
Subject: Bug#287422: fixed in libmpeg3 1.5.4-5
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Thu, 02 Feb 2006 17:32:06 -0800
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

Source: libmpeg3
Source-Version: 1.5.4-5

We believe that the bug you reported is fixed in the latest version of
libmpeg3, which is due to be installed in the Debian FTP archive:

libmpeg3-1_1.5.4-5_i386.deb
  to pool/main/libm/libmpeg3/libmpeg3-1_1.5.4-5_i386.deb
libmpeg3-dev_1.5.4-5_i386.deb
  to pool/main/libm/libmpeg3/libmpeg3-dev_1.5.4-5_i386.deb
libmpeg3_1.5.4-5.diff.gz
  to pool/main/libm/libmpeg3/libmpeg3_1.5.4-5.diff.gz
libmpeg3_1.5.4-5.dsc
  to pool/main/libm/libmpeg3/libmpeg3_1.5.4-5.dsc
mpeg3-utils_1.5.4-5_i386.deb
  to pool/main/libm/libmpeg3/mpeg3-utils_1.5.4-5_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
David Martínez Moreno <[EMAIL PROTECTED]> (supplier of updated libmpeg3 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Fri,  3 Feb 2006 02:13:40 +0100
Source: libmpeg3
Binary: mpeg3-utils libmpeg3-dev libmpeg3-1
Architecture: source i386
Version: 1.5.4-5
Distribution: unstable
Urgency: low
Maintainer: David Martínez Moreno <[EMAIL PROTECTED]>
Changed-By: David Martínez Moreno <[EMAIL PROTECTED]>
Description: 
 libmpeg3-1 - MPEG streams decoding library
 libmpeg3-dev - Headers and static libraries for libMPEG3
 mpeg3-utils - MPEG streams decoding library
Closes: 287422 350689
Changes: 
 libmpeg3 (1.5.4-5) unstable; urgency=low
 .
   * Fixed syntax in Makefile for compatibility with new make. Thanks, Daniel
     Schepler (closes: #350689).
   * Acknowledge NMU from Steve (closes: #287422).
   * debian/control: Bumped Standards-Version to 3.6.2.2.
   * debian/copyright: Updated FSF's address.
Files: 
 ca11235e15b2bf4ca255983f7b5c82a1 616 libs optional libmpeg3_1.5.4-5.dsc
 b9465cc2490db149c55860cd9e60c5c5 6349 libs optional libmpeg3_1.5.4-5.diff.gz
 371669e1c4d80dbe212d16ce4fcc568d 17680 utils optional 
mpeg3-utils_1.5.4-5_i386.deb
 6a8a9908100e66c5d2f60218d2caf992 82844 libs optional 
libmpeg3-1_1.5.4-5_i386.deb
 a6d60e5f1f4588aaf714f544e453b55a 106888 libdevel optional 
libmpeg3-dev_1.5.4-5_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFD4q7wWs/EhA1iABsRAgoLAKChPADVdn/mzHxUaux7MmZBVRl/LACgiHjA
2svfseFmwPXqB+ksrnKn6qE=
=3Ibv
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to