| Summary: | fails to copy a Mixed Mode CD | ||
|---|---|---|---|
| Product: | [Applications] k3b | Reporter: | Francois Marier <francois> |
| Component: | general | Assignee: | Sebastian Trueg <trueg> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Francois Marier
2006-06-04 06:25:53 UTC
Why do you strip the debugging output? This way I cannot help you. ok, well, maybe we don't need the full debugging output after all.... SVN commit 547993 by trueg:
Clear CD-Text for writing data sessions.
BUG: 128597
M +1 -0 ChangeLog
M +3 -0 libk3b/jobs/k3bcdcopyjob.cpp
--- branches/stable/extragear/multimedia/k3b/ChangeLog #547992:547993
@@ -4,6 +4,7 @@
* Always force 44.1khz in the Lame MP3 encoder plugin.
* Fixed VideoDVD creation on rewritable media.
* NetBSD support (thanks to Mark Davies).
+ * Fixed Copy of Enhanced Audio CDs with CD-Text
0.12.15
=======
--- branches/stable/extragear/multimedia/k3b/libk3b/jobs/k3bcdcopyjob.cpp #547992:547993
@@ -923,6 +923,9 @@
d->cdrecordWriter->addArgument( d->imageNames[d->toc.count()-1] );
else
d->cdrecordWriter->addArgument( d->imageNames[d->currentWrittenSession-1] );
+
+ // clear cd text from previous sessions
+ d->cdrecordWriter->setRawCdText( QByteArray() );
}
|