MLT 7.40.0
Multimedia Framework
MltFilteredConsumer.h
Go to the documentation of this file.
1
20#ifndef MLTPP_FILTERED_CONSUMER_H
21#define MLTPP_FILTERED_CONSUMER_H
22
23#include "MltConfig.h"
24
25#include "MltConsumer.h"
26#include "MltFilter.h"
27#include "MltService.h"
28
29namespace Mlt {
30class Consumer;
31class Service;
32class Filter;
33class Profile;
34
44{
45private:
47
48public:
49 FilteredConsumer(Profile &profile, const char *id, const char *arg = NULL);
50 FilteredConsumer(Consumer &consumer);
51 virtual ~FilteredConsumer();
52 int connect(Service &service) override;
53 int attach(Filter &filter);
54 int last(Filter &filter);
55 int detach(Filter &filter);
56};
57} // namespace Mlt
58
59#endif
#define MLTPP_DECLSPEC
MltConfig.h - Convenience header file for all mlt++ objects Copyright (C) 2004-2026 Meltytech,...
Definition MltConfig.h:33
C++ wrapper for mlt_consumer — pulls and outputs audio/video.
Definition MltConsumer.h:43
C++ wrapper for mlt_filter — modifies a single producer's output.
Definition MltFilter.h:44
A Consumer with an internal filter chain between the source and output.
Definition MltFilteredConsumer.h:44
Service * first
Definition MltFilteredConsumer.h:46
C++ wrapper for mlt_profile — video format parameters.
Definition MltProfile.h:45
C++ wrapper for mlt_service — abstract base for all MLT services.
Definition MltService.h:47
MLT C++ wrapper Copyright (C) 2015-2026 Meltytech, LLC.
Definition MltAnimation.h:27