mirror of
https://invent.kde.org/multimedia/kdenlive
synced 2025-12-05 15:59:59 +01:00
25 lines
673 B
C++
25 lines
673 B
C++
/*
|
|
SPDX-FileCopyrightText: 2009 Jean-Baptiste Mardelle <jb@kdenlive.org>
|
|
|
|
SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QObject>
|
|
#include <QStringList>
|
|
|
|
|
|
#include "interfaces.h"
|
|
|
|
class SamplePlugin : public QObject, public ClipGenerator
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(ClipGenerator)
|
|
|
|
public:
|
|
QStringList generators(const QStringList &producers = QStringList()) const;
|
|
QUrl generatedClip(const QString &renderer, const QString &generator, const QUrl &projectFolder, const QStringList &lumaNames, const QStringList &lumaFiles,
|
|
const double fps, const int width, const int height);
|
|
};
|