[Bug 658004] Re: brasero claims dvd image is too large for disc

2011-11-30 Thread Sebastien Bacher
bug #897550 seems similar, the details from comment #8 seems to
indicator a by one block error though, and bug #897550 suggests there is
a base 2,base 10 units mismatch in the computation, so they might be
different issues

** Changed in: brasero (Ubuntu)
   Status: Confirmed => Triaged

** Summary changed:

- brasero claims dvd image is too large for disc
+ brasero dvd capacity estimation is broken

** Changed in: brasero (Ubuntu)
 Assignee: (unassigned) => Canonical Desktop Team (canonical-desktop-team)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/658004

Title:
  brasero dvd capacity estimation is broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/brasero/+bug/658004/+subscriptions

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


[Bug 658004] Re: brasero claims dvd image is too large for disc

2011-11-24 Thread Bug Watch Updater
** Changed in: brasero
   Status: Unknown => New

** Changed in: brasero
   Importance: Unknown => Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/658004

Title:
  brasero claims dvd image is too large for disc

To manage notifications about this bug go to:
https://bugs.launchpad.net/brasero/+bug/658004/+subscriptions

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


[Bug 658004] Re: brasero claims dvd image is too large for disc

2011-11-14 Thread David Balažic
Why is this marked with importance "Low"?
Certain data sets can not be written at all due to this bug.

>From https://wiki.ubuntu.com/Bugs/Importance :

Low: Bugs which affect functionality, but to a lesser extent than most
bugs, examples are:

Bugs that have easy work-arounds

Bugs that affect unusual end-user configurations or uncommon hardware
Bugs that affect a non-essential aspect and limited scope of the application
Bugs that have a moderate impact on a non-core application
Cosmetic/usability issues that does not limit the functionality of a non-core 
application
Non-ideal default configurations

None of this applies.

Besides, the fix is trivial. What should be done to have it committed as
soon as possible?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/658004

Title:
  brasero claims dvd image is too large for disc

To manage notifications about this bug go to:
https://bugs.launchpad.net/brasero/+bug/658004/+subscriptions

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


[Bug 658004] Re: brasero claims dvd image is too large for disc

2011-11-08 Thread David Balažic
** Bug watch added: GNOME Bug Tracker #663637
   https://bugzilla.gnome.org/show_bug.cgi?id=663637

** Also affects: brasero via
   https://bugzilla.gnome.org/show_bug.cgi?id=663637
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/658004

Title:
  brasero claims dvd image is too large for disc

To manage notifications about this bug go to:
https://bugs.launchpad.net/brasero/+bug/658004/+subscriptions

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


[Bug 658004] Re: brasero claims dvd image is too large for disc

2011-11-02 Thread David Balažic
The error seems to be in the file libbrasero-burn/brasero-session-cfg.c
function brasero_session_cfg_check_size() line 873:


BRASERO_BURN_LOG ("Session size %lli/Disc size %lli",
  priv->session_blocks,
  priv->disc_size);

if (priv->session_blocks < priv->disc_size) {  // line 873
priv->is_valid = BRASERO_SESSION_VALID;
return BRASERO_SESSION_VALID;
}

The log output says:
BraseroBurn: (at brasero-session-cfg.c :871) Session size 2295104/Disc size 
2295104


So there is enough space, but the code expects _more_ than enough space.  The 
correct check would be:


if (priv->session_blocks <= priv->disc_size) {  // fixed line 873

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/658004

Title:
  brasero claims dvd image is too large for disc

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/658004/+subscriptions

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


[Bug 658004] Re: brasero claims dvd image is too large for disc

2011-11-02 Thread David Balažic
Same in ubuntu 11.10
brasero is at version 3.2.0-0ubuntu1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/658004

Title:
  brasero claims dvd image is too large for disc

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/658004/+subscriptions

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


[Bug 658004] Re: brasero claims dvd image is too large for disc

2011-10-03 Thread Federico Tello Gentile
Same happened with a DVD-R. The ISO image is 4706660352 bytes. Brasero
refuses to burn it in a Verbatim DVD-R.

K3B burns it correctly and reports
Track 01: Total bytes read/written: 4706660352/4706660352 (2298174 sectors).

DVD-R format has 2298496 2048-byte sectors totalling 4707319808 bytes of
capacity. The ISO image is smaller.

I'm running 64 bit Natty and Brasero 2.32.1.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/658004

Title:
  brasero claims dvd image is too large for disc

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/658004/+subscriptions

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


[Bug 658004] Re: brasero claims dvd image is too large for disc

2011-10-03 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: brasero (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/658004

Title:
  brasero claims dvd image is too large for disc

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/658004/+subscriptions

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


[Bug 658004] Re: brasero claims dvd image is too large for disc

2011-06-25 Thread David Balažic
It is the same with 11.04.

** Changed in: brasero (Ubuntu)
   Status: Incomplete => Opinion

** Changed in: brasero (Ubuntu)
   Status: Opinion => New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/658004

Title:
  brasero claims dvd image is too large for disc

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/658004/+subscriptions

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


[Bug 658004] Re: brasero claims dvd image is too large for disc

2010-10-11 Thread David Balažic
The same image burns without problems using Nero Express v6.6 under
Windows XP.

-- 
brasero claims dvd image is too large for disc
https://bugs.launchpad.net/bugs/658004
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 658004] Re: brasero claims dvd image is too large for disc

2010-10-10 Thread David Balažic

** Attachment added: "Screenshot of the issue in dialog"
   
https://bugs.launchpad.net/bugs/658004/+attachment/1683179/+files/Screenshot-Write%20to%20Disc.png

-- 
brasero claims dvd image is too large for disc
https://bugs.launchpad.net/bugs/658004
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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