Public bug reported:

Binary package hint: dvdauthor

Package: dvdauthor
Version: 0.6.14

dvdunauthor only writes out the button coordinates if the
auto_action_mode is true. But this is the opposite behaviour of all the
other programs - eg spuunmux crashes trying to parse the .vobs made by
dvdunauthor because if auto_action_mode on a button is false then
spuunmux tries to read the missing colour/coordinates/up/down/left/right
settings (line 1072). Similar with subgen.c:556 and dvdvob.c:956.

Simple fix:
--- src/dvdunauthor.c-orig    2006-06-01 16:03:24.000000000 +1200
+++ src/dvdunauthor.c    2007-05-02 21:29:33.000000000 +1200
@@ -790,7 +790,7 @@
         wdstr(nm1);
         wdshort(0);
         wdbyte(b->auto_action_mode);
-        if( b->auto_action_mode != 0 ) {
+        if( b->auto_action_mode == 0 ) {
             wdbyte(b->btn_coln);
             wdshort(b->x_start);
             wdshort(b->y_start);

** Affects: dvdauthor (Ubuntu)
     Importance: Undecided
         Status: New

-- 
dvdunauthor gets all buttons wrong (auto_action_mode)
https://bugs.launchpad.net/bugs/133562
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to