File indexing completed on 2024-04-28 15:22:15

0001 /*
0002     SPDX-FileCopyrightText: 2019 Alexander Stippich <a.stippich@gmx.net>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-or-later
0005 */
0006 
0007 #ifndef FFMPEGEXTRACTORTEST_H
0008 #define FFMPEGEXTRACTORTEST_H
0009 
0010 #include <QObject>
0011 #include <QMimeDatabase>
0012 
0013 namespace KFileMetaData {
0014 
0015 class ffmpegExtractorTest : public QObject
0016 {
0017     Q_OBJECT
0018 
0019 private Q_SLOTS:
0020     void testNoExtraction();
0021     void testVideoProperties();
0022     void testVideoProperties_data();
0023     void testMetaData();
0024     void testMetaData_data();
0025 
0026 private:
0027     QMimeDatabase mimeDb;
0028 };
0029 } // namespace KFileMetaData
0030 
0031 #endif // FFMPEGEXTRACTORTEST_H