summaryrefslogtreecommitdiffstats
path: root/plugins
Commit message (Collapse)AuthorAgeFilesLines
* Use tdeinstance.hr14.1.xMichele Calgaro2025-08-184-4/+4
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 2c22ca30dba171c9b35fdde8f3b0d6adfdf3ba9e)
* Fix discovery of sox binaryAlexander Golubev2025-08-081-28/+15
| | | | | | Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/k3b/issues/58 Signed-off-by: Alexander Golubev <fatzer2@gmail.com> (cherry picked from commit 3067884e745c79639ec82ae7520caf19c6963b66)
* Fixup spaces in some filesAlexander Golubev2025-08-081-75/+75
| | | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com> (cherry picked from commit d7d278f1e8b06ffffbb1ec3dbcd4af994269b4cc)
* Replace TRUE/FALSE with boolean values true/falseMichele Calgaro2025-03-281-1/+1
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 5e9ef6688e58dccde4be0f0db310987db99d66d7)
* Fix compatibility with ffmpeg 7.x.r14.1.3Slávek Banko2024-08-111-0/+9
| | | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 4f37ec7d7b0a266c3412a919799ff7f2a0c7b48d)
* Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT definesMichele Calgaro2024-01-067-31/+31
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 61b79fc39298cb8646cee439dc032d5bf0169063)
* Remove various '#define' strings - part 6Michele Calgaro2023-12-101-1/+1
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 766478630b5e0f435d8aef9ee7ba44651e4e431d)
* Replaced various '#define' with actual strings - part 5Michele Calgaro2023-12-041-1/+1
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit b67830aae3b0bd8e8bfd2be1a7714dcb978ff59b)
* Replaced various '#define' with actual strings - part 3Michele Calgaro2023-11-241-1/+1
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit a505e95cbfde0aa2edbbd08af0ca4a00fd276d4a)
* Replace Qt with TQtMichele Calgaro2023-11-051-2/+2
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 5efc277625507809813e82005f7e47f004c666b6)
* Fix detection and linking of taglibMichele Calgaro2023-09-272-2/+6
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 85f5856c5536c97abc0b524bc5ce3cb0b40bab2d)
* Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, ↵Michele Calgaro2023-09-262-6/+8
| | | | | | | QIODevice with TQ* version Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 147aca7d8e7fe21364884200823577d0b9ade0a4)
* Replace Q_OBJECT with TQ_OBJECTMichele Calgaro2023-07-2417-31/+31
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit e1e7558d74bce9c95948ff07d0595ac3c5728aba)
* Add sndfile include directoriesaneejit12022-11-021-0/+1
| | | | | | | | | When sndfile is not installed in /usr, a compilation failure in plugins/decoder/libsndfile may occur due to a missing specification of the include directory. The required directory variable is now added to the "include_directories" statement. Signed-off-by: aneejit1 <aneejit1@gmail.com>
* Added translation of .desktop files.Slávek Banko2022-08-2732-67/+82
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Drop automake build support.Slávek Banko2022-08-2736-699/+0
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Fix problems for older ffmpeg versionsaneejit12022-05-201-2/+2
| | | | | | | | | | | | | | Fix the following issues when building against older ffmpeg versions - the call to avcodec_free_context exceptions as avformat_close_input already performs cleanup of the AVCodecContext, so link the calling of avcodec_free_context in k3bffmpegwrapper.cpp to the version of libavformat in which codecpar appeared rather than when avcodec_free_context appeared. - avcodec_decode_audio4 was deprecated in libavcodec 57.106.100, not 57.12.100, so the version has been corrected. Signed-off-by: aneejit1 <aneejit1@gmail.com>
* Correct API version checkaneejit12022-05-081-1/+1
| | | | | | | The version check for "av_register_all" is being performed against the AVCodec API. Correct it to the AVFormat API. Signed-off-by: aneejit1 <aneejit1@gmail.com>
* Enable ffmpeg 5.0 compatibilityaneejit12022-05-051-18/+83
| | | | | | | | The release of version 5.0 of ffmpeg removes a lot of deprecated API functions, some of which are being used by k3b. The ffmpeg support has been modified to support 5.0 as well as older versions. Signed-off-by: aneejit1 <aneejit1@gmail.com>
* Fix FTBFS on RHEL6François Andriot2021-11-021-1/+2
| | | | Signed-off-by: François Andriot <francois.andriot@free.fr>
* Fixed building with older version of libav* libraries.Michele Calgaro2021-09-271-8/+29
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Replace nullptr with NULL.Michele Calgaro2021-09-251-18/+18
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Fix metainfo processing, AAC decoding, some domestic code clearanceMashiro2021-09-131-283/+229
| | | | | | | | | Initially code entirely taken and adopted from k3b upstream https://github.com/KDE/k3b/commit/1e09c7d77f6f8af7d108519528e41a9093fdbd94 with subsequent fix of the read() function and reducing of the compiler warnings. Signed-off-by: Mashiro <m.t.0x73@gmail.com>
* Add includes to UI files to resolve FTBFS.Michele Calgaro2018-09-255-17/+16
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* LIB_QT -> LIB_TQT conversion to align to updated admin moduleMichele Calgaro2018-09-1712-12/+12
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* cmake: Fix FTBFS due to artsc includesSlávek Banko2016-10-163-3/+3
| | | | | | This relates to bug 2714 Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* cmake: Fix FTBFS due to ffmpeg includesFrançois Andriot2016-10-161-0/+1
| | | | | | This relates to bug 2714 Signed-off-by: François Andriot <francois.andriot@free.fr>
* Fix FTBFS with GCC6Slávek Banko2016-09-031-11/+11
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Initial cmake conversionAlexander Golubev2016-03-1220-0/+713
|
* Fixed typo in comment.Michele Calgaro2014-06-051-1/+1
|
* Fixed FTBFS caused by migration to libav10 (Debian/Jessie). This resolves ↵Michele Calgaro2014-06-051-7/+22
| | | | bug 2064.
* Fix FTBFS due to deprecated AVCODEC_MAX_AUDIO_FRAME_SIZE in ffmpegFrancois Andriot2013-09-081-1/+1
|
* Additional k => tde renaming and fixesSlávek Banko2013-09-033-3/+3
|
* Rename additional header files to avoid conflicts with KDE4Timothy Pearson2013-02-1516-19/+19
|
* Rename many classes and header files to avoid conflicts with KDE4Timothy Pearson2013-02-011-1/+1
|
* Rename a number of classes to enhance compatibility with KDE4Timothy Pearson2013-02-011-2/+2
|
* Rename KStandard for enhanced compatibility with KDE4Timothy Pearson2013-01-312-3/+3
|
* Fix up remaining references to -lkioTimothy Pearson2013-01-282-2/+2
|
* Rename a number of libraries and executables to avoid conflicts with KDE4Timothy Pearson2013-01-2711-13/+13
|
* Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4Timothy Pearson2013-01-2510-25/+25
|
* Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4Timothy Pearson2013-01-244-14/+14
|
* Update autotools for new DSO linkage styleSlávek Banko2012-08-0710-9/+11
| | | | Thanks to Francois Andriot for the patch
* Enhance ffmpeg compatibility with older versionsSlávek Banko2012-07-291-1/+29
|
* Fix build failures against ffmpeg >=0.11.Darrell Anderson2012-07-251-8/+8
| | | | Thanks to David C. Rankin.
* Remove spurious TQ_OBJECT instancesTimothy Pearson2012-02-1717-31/+31
|
* Rename obsolete tq methods to standard namesTimothy Pearson2011-12-216-13/+13
|
* Remove additional unneeded tq method conversionsTimothy Pearson2011-12-1912-42/+42
|
* Rename old tq methods that no longer need a unique nameTimothy Pearson2011-12-185-11/+11
|
* Revert "Rename a number of old tq methods that are no longer tq specific"Timothy Pearson2011-12-1617-73/+73
| | | | This reverts commit ef5831dd5c8811c94c9b1bc1377a90174d17c82c.
* Rename a number of old tq methods that are no longer tq specificTimothy Pearson2011-12-1517-73/+73
|