summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2013-01-08 11:47:55 +0000
committerMichael Palimaka <kensington@gentoo.org>2013-01-08 11:47:55 +0000
commit21642056b35c06ac9ba3d613620ae7b0835fce01 (patch)
treeed534622afe1c71f9bc88cd83677b8074c6b0dd4 /kde-base/ffmpegthumbs/files
parentRemove unused patches. (diff)
downloadgentoo-2-21642056b35c06ac9ba3d613620ae7b0835fce01.tar.gz
gentoo-2-21642056b35c06ac9ba3d613620ae7b0835fce01.tar.bz2
gentoo-2-21642056b35c06ac9ba3d613620ae7b0835fce01.zip
Remove unused patches.
(Portage version: 2.1.11.38/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
Diffstat (limited to 'kde-base/ffmpegthumbs/files')
-rw-r--r--kde-base/ffmpegthumbs/files/ffmpegthumbs-4.8.1-ffmpeg.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/kde-base/ffmpegthumbs/files/ffmpegthumbs-4.8.1-ffmpeg.patch b/kde-base/ffmpegthumbs/files/ffmpegthumbs-4.8.1-ffmpeg.patch
deleted file mode 100644
index bee819ddda4e..000000000000
--- a/kde-base/ffmpegthumbs/files/ffmpegthumbs-4.8.1-ffmpeg.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-Index: ffmpegthumbs-4.8.1/ffmpegthumbs/ffmpegthumbnailer/moviedecoder.cpp
-===================================================================
---- ffmpegthumbs-4.8.1.orig/ffmpegthumbs/ffmpegthumbnailer/moviedecoder.cpp
-+++ ffmpegthumbs-4.8.1/ffmpegthumbs/ffmpegthumbnailer/moviedecoder.cpp
-@@ -52,12 +52,14 @@ MovieDecoder::~MovieDecoder()
- void MovieDecoder::initialize(const QString& filename)
- {
- av_register_all();
-+#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(54,0,0)
- avcodec_init();
-+#endif
- avcodec_register_all();
-
- QFileInfo fileInfo(filename);
-
-- if ((!m_FormatContextWasGiven) && av_open_input_file(&m_pFormatContext, fileInfo.absoluteFilePath().toUtf8().data(), NULL, 0, NULL) != 0) {
-+ if ((!m_FormatContextWasGiven) && avformat_open_input(&m_pFormatContext, fileInfo.absoluteFilePath().toUtf8().data(), NULL, NULL) != 0) {
- kDebug() << "Could not open input file: " << fileInfo.absoluteFilePath();
- return;
- }
-@@ -89,7 +91,11 @@ void MovieDecoder::destroy()
- }
-
- if ((!m_FormatContextWasGiven) && m_pFormatContext) {
-+#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(54,0,0)
- av_close_input_file(m_pFormatContext);
-+#else
-+ avformat_close_input(&m_pFormatContext);
-+#endif
- m_pFormatContext = NULL;
- }
-