File indexing completed on 2025-01-19 03:57:00

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2017-07-04
0007  * Description : Autodetect FFmpeg binary program
0008  *
0009  * SPDX-FileCopyrightText: 2017-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0010  *
0011  * SPDX-License-Identifier: GPL-2.0-or-later
0012  *
0013  * ============================================================ */
0014 
0015 #ifndef DIGIKAM_FFMPEG_BINARY_H
0016 #define DIGIKAM_FFMPEG_BINARY_H
0017 
0018 // Local includes
0019 
0020 #include "dbinaryiface.h"
0021 #include "digikam_export.h"
0022 
0023 namespace Digikam
0024 {
0025 
0026 class DIGIKAM_EXPORT FFmpegBinary : public DBinaryIface
0027 {
0028     Q_OBJECT
0029 
0030 public:
0031 
0032     explicit FFmpegBinary(QObject* const parent = nullptr);
0033     ~FFmpegBinary() override;
0034 
0035     static QString ffmpegToolBin();
0036 };
0037 
0038 } // namespace Digikam
0039 
0040 #endif // DIGIKAM_FFMPEG_BINARY_H