[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#183549: marked as done (mpeg_bits and mpeg_blocks do not work properly)



Your message dated Thu, 3 Feb 2005 11:56:43 +0100
with message-id <20050203105643.GB23367@opal.dhs.org>
and subject line [owner@bugs.debian.org: Bug#266116 acknowledged by developer (Bug#266116: fixed)]
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; 5 Mar 2003 16:54:01 +0000
>From luis.garrido@tecn.upf.es Wed Mar 05 10:54:01 2003
Return-path: <luis.garrido@tecn.upf.es>
Received: from tom.upf.es [193.145.39.17] 
	by master.debian.org with esmtp (Exim 3.12 1 (Debian))
	id 18qc9Y-00060u-00; Wed, 05 Mar 2003 10:54:00 -0600
Received: from xop.upf.es (xop.upf.es [193.145.56.29])
	by tom.upf.es (8.11.6/8.11.6) with ESMTP id h25Grwl08969
	for <submit@bugs.debian.org>; Wed, 5 Mar 2003 17:53:58 +0100
Received: from tecn.upf.es (efpc080.upf.es [193.145.44.110])
	by xop.upf.es (8.9.3 (PHNE_24419)/8.8.6) with ESMTP id RAA19729
	for <submit@bugs.debian.org>; Wed, 5 Mar 2003 17:33:32 +0100 (MET)
Message-ID: <3E6626DA.5080409@tecn.upf.es>
Date: Wed, 05 Mar 2003 17:33:30 +0100
From: Luis Garrido Ostermann <luis.garrido@tecn.upf.es>
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.3b) Gecko/20030210
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: submit@bugs.debian.org
Subject: mpeg_bits and mpeg_blocks do not work properly
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Delivered-To: submit@bugs.debian.org
X-Spam-Status: No, hits=-1.5 required=4.0
	tests=HAS_PACKAGE,SPAM_PHRASE_00_01,USER_AGENT,
	      USER_AGENT_MOZILLA_UA,X_ACCEPT_LANG
	version=2.44
X-Spam-Level: 

Package: ucbmpeg
Version: 1r2-9

I am currently using Debian unstable. The ucbmpeg package needs version 
8.0 of 'tcl' and 'tk' packages to be installed. Currently, I have 
installed the following tcl and tk packages.

ii  tcl8.0         8.0.5-7        The Tool Command Language (TCL) v8.0 - 
Run-T
ii  tcl8.0-dev     8.0.5-7        The Tool Command Language (TCL) v8.0 - 
Devel
ii  tk8.0          8.0.5-10       The Tk toolkit for TCL and X11 v8.0 - 
Run-Ti
ii  tk8.0-dev      8.0.5-10       The Tk toolkit for TCL and X11 v8.0 - 
Develo

There are no other Tcl/Tk version installed.

I have tested the mpeg_bits program and no graphical user interface is 
displayed on screen, as I would expect. (The same problem happens to 
mpeg_blocs).

I downloaded the source by means of "apt-get source" command. I then 
compiled the sources introducing the following changes due to 
compilation errors (I show here the diffs between the original and 
modified files in the 'mpeg_bits' source folder):

show.c
701c701
<   if ( (w = Tk_CreateMainWindow(interp, displayName, name, "")) == NULL )
---
 >   if ( (w = TkCreateMainWindow(interp, displayName, name, "")) == NULL )
822,830c823,825
< #ifdef LINUX
<   (void) Tcl_Eval(interp, "source /var/X11/lib/X11/tk/tk.tcl");
<   (void) Tcl_Eval(interp, "source /var/X11/lib/X11/tk/button.tcl");
<   (void) Tcl_Eval(interp, "source /var/X11/lib/X11/tk/tkerror.tcl");
< #else
<   (void) Tcl_Eval(interp, "source /usr/cluster/lib/tk/tk.tcl");
<   (void) Tcl_Eval(interp, "source /usr/cluster/lib/tk/button.tcl");
<   (void) Tcl_Eval(interp, "source /usr/cluster/lib/tk/tkerror.tcl");
< #endif
---
 >   (void) Tcl_Eval(interp, "source /usr/lib/tk8.0/tk.tcl");
 >   (void) Tcl_Eval(interp, "source ../mpeg_blocks/button.tcl");
 >   (void) Tcl_Eval(interp, "source ../mpeg_blocks/tkerror.tcl");

playframe2.c
523c523
<       if ( tk_NumMainWindows == 0 )
---
 >       if ( Tk_GetNumMainWindows() == 0 )

I then executed the debugger in order to try to find the source of the 
problem.
Execution of the first lines of the code went fine, the Tcl/Tk 
interepreter function calls did not return errors. Then I noticed that 
the execution of the program got stucked when as it reached the function 
call that performs the "update":

sprintf(command, "set libDir %s\n", BITS_DIR);
Tcl_Eval(interp, command);
Tcl_Eval(interp, "Init_Dirs\n");
Tcl_Eval(interp, "Init_Win\n");
(void) Tcl_Eval(interp, "update"); <-- Here does the program gets stucked.

The previous code is located in line 836 of the original source (not the 
modified ones that I have used).

I don't know what is going on. I have tried to echo somehow what the 
Tcl/Tk intepreter is doing during the update but I don't know how to do it.

Moreover, in similar way, when compiling mpeg_blocks I noticed that the 
program also gets stucked in an "update" call.

I should be very much obliged if anyone can solve the bug,

   Regards,

       Luis


Other info:

# uname -a
Linux d5118o 2.4.20-686 #1 Mon Jan 13 22:22:30 EST 2003 i686 unknown 
unknown GNU/Linux
# dpkg -l libc6
ii  libc6          2.3.1-14       GNU C Library: Shared libraries and 
Timezone



---------------------------------------
Received: (at 183549-done) by bugs.debian.org; 3 Feb 2005 10:57:36 +0000
>From ola@opal.dhs.org Thu Feb 03 02:57:36 2005
Return-path: <ola@opal.dhs.org>
Received: from c-adt-5.ataco.se (bixbite.opal.dhs.org) [213.115.168.248] 
	by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 1Cweg3-0005Md-00; Thu, 03 Feb 2005 02:57:35 -0800
Received: from ola by bixbite.opal.dhs.org with local (Exim 4.34)
	id 1CwefD-0006CO-Ad; Thu, 03 Feb 2005 11:56:44 +0100
Date: Thu, 3 Feb 2005 11:56:43 +0100
From: Ola Lundqvist <opal@debian.org>
To: 288115-done@bugs.debian.org, 263198-done@bugs.debian.org,
	183549-done@bugs.debian.org, 262241-done@bugs.debian.org,
	149433-done@bugs.debian.org, 153954-done@bugs.debian.org
Subject: [owner@bugs.debian.org: Bug#266116 acknowledged by developer (Bug#266116: fixed)]
Message-ID: <20050203105643.GB23367@opal.dhs.org>
Reply-To: opal@debian.org
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.6+20040907i
Delivered-To: 183549-done@bugs.debian.org
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-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
X-Spam-Level: 
X-CrossAssassin-Score: 3

As the package has been removed from unstable I'll close all the bugs.

Regards,

// Ola

----- Forwarded message from Debian Bug Tracking System <owner@bugs.debian.org> -----

Envelope-to: ola@opal.dhs.org
Delivery-date: Wed, 02 Feb 2005 23:24:07 +0100
From: Debian Bug Tracking System <owner@bugs.debian.org>
To: opal@debian.org
Subject: Bug#266116 acknowledged by developer
         (Bug#266116: fixed)
X-Debian-PR-Message: they-closed 266116
X-Debian-PR-Package: ftp.debian.org
X-Debian-PR-Keywords: 
Reply-To: 266116@bugs.debian.org
X-Spamcheck-Provider: Checked for spam by OpaL, postmaster@opalsys.net
X-Spam-Checker-Version: SpamAssassin 3.0.2 (2004-11-16) on 
	bixbite.opal.dhs.org
X-Spam-Level: 
X-Spam-Status: No, score=0.0 required=4.0 tests=none autolearn=failed 
	version=3.0.2

This is an automatic notification regarding your Bug report
#266116: RM: ucbmpeg -- RoQA; orphaned, NPOASR, non-free,
which was filed against the ftp.debian.org package.

It has been closed by one of the developers, namely
Debian Archive Maintenance <ftpmaster@ftp-master.debian.org>.

Their explanation is attached below.  If this explanation is
unsatisfactory and you have not received a better one in a separate
message then please contact the developer, by replying to this email.

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

Received: (at 266116-close) by bugs.debian.org; 2 Feb 2005 22:08:06 +0000
>From troup@newraff.debian.org Wed Feb 02 14:08:06 2005
Return-path: <troup@newraff.debian.org>
Received: from newraff.debian.org [208.185.25.31] (mail)
	by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 1CwSfO-00077K-00; Wed, 02 Feb 2005 14:08:06 -0800
Received: from troup by newraff.debian.org with local (Exim 3.35 1 (Debian))
	id 1CwSUN-0002zF-00; Wed, 02 Feb 2005 16:56:43 -0500
From: Debian Archive Maintenance <ftpmaster@ftp-master.debian.org>
To: 266116-close@bugs.debian.org
X-Katie: melanie $Revision: 1.43 $ 
Subject: Bug#266116: fixed
Message-Id: <E1CwSUN-0002zF-00@newraff.debian.org>
Sender: James Troup <troup@newraff.debian.org>
Date: Wed, 02 Feb 2005 16:56:43 -0500
Delivered-To: 266116-close@bugs.debian.org
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-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
X-Spam-Level: 

We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

   ucbmpeg |     1r2-10 | source, i386, mips

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive (ftp-master.debian.org) and will not propagate to any
mirrors (ftp.debian.org included) until the next cron.daily run at the
earliest.

Packages are never removed from testing by hand.  Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems.

Bugs which have been reported against this package are not automatically
removed from the Bug Tracking System.  Please check all open bugs and
close them or re-assign them to another package if the removed package
was superseded by another one.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 266116@bugs.debian.org.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmaster@debian.org.

Debian distribution maintenance software
pp.
James Troup (the ftpmaster behind the curtain)


----- End forwarded message -----

-- 
 --------------------- Ola Lundqvist ---------------------------
/  opal@debian.org                     Annebergsslingan 37      \
|  opal@lysator.liu.se                 654 65 KARLSTAD          |
|  +46 (0)54-10 14 30                  +46 (0)70-332 1551       |
|  http://www.opal.dhs.org             UIN/icq: 4912500         |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---------------------------------------------------------------



Reply to: