summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-cdr/k3b/files/k3b-dvdrip-transcode.patch')
-rw-r--r--app-cdr/k3b/files/k3b-dvdrip-transcode.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/app-cdr/k3b/files/k3b-dvdrip-transcode.patch b/app-cdr/k3b/files/k3b-dvdrip-transcode.patch
deleted file mode 100644
index 652b3cc4fb62..000000000000
--- a/app-cdr/k3b/files/k3b-dvdrip-transcode.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-diff -Narup k3b-0.11.23.orig/src/rip/k3bdvdrippingprocess.cpp k3b-0.11.23/src/rip/k3bdvdrippingprocess.cpp
---- k3b-0.11.23.orig/src/rip/k3bdvdrippingprocess.cpp 2004-06-02 11:31:41.000000000 +0200
-+++ k3b-0.11.23/src/rip/k3bdvdrippingprocess.cpp 2005-04-16 13:22:21.000000000 +0200
-@@ -83,7 +83,15 @@ void K3bDvdRippingProcess::checkRippingM
- m_title = QString::number( (*m_dvd).getTitleNumber() );
- if( (*m_dvd).getMaxAngle() == 1 ) {
- kdDebug() << "K3bDvdRippingProcess) Rip Title" << endl;
-- m_ripMode = "-P " + m_title;
-+ K3bVersion tccatVersion = k3bcore->externalBinManager()->binObject("tccat")->version;
-+ kdDebug() << "(K3bDvdRippingProcess) Tccat Version: " << tccatVersion.majorVersion() << "." << tccatVersion.minorVersion() << "." << tccatVersion.patchLevel() << endl;
-+ if( tccatVersion.majorVersion() == 0 && tccatVersion.minorVersion() == 6 && tccatVersion.patchLevel() < 12){
-+ //transcode <= 0.6.11
-+ m_ripMode = "-P " + m_title;
-+ } else {
-+ //transcode >= 0.6.12
-+ m_ripMode = "-T " + m_title + ",-1 -L";
-+ }
- } else {
- kdDebug() << "K3bDvdRippingProcess) Rip Angle" << endl;
- // workaround due to buggy transcode, angle selection doesn't work with -1 (all chapters)
-@@ -119,13 +127,19 @@ void K3bDvdRippingProcess::startRippingP
- connect( m_audioProcess, SIGNAL( finished() ), this, SLOT( slotAudioProcessFinished() ) );
- m_delAudioProcess = true;
- */
-+
- const K3bExternalBin *m_tccatBin = k3bcore->externalBinManager()->binObject("tccat");
-+
-+ /*
-+ * This check probably not required any more
-+ *
- if( m_tccatBin->version >= K3bVersion( 0, 6, 12 ) ) {
- emit infoMessage( i18n("Sorry, K3b does not support ripping Video DVDs with transcode >= 0.1.12 yet."),
- ERROR );
- emit finished( false );
- return;
- }
-+ */
-
- m_ripProcess = new KShellProcess();
- kdDebug() << "(K3bDvdRippingProcess)" << m_tccatBin->path << " -i " << m_device <<" "<< m_ripMode << endl;