Import mlt7-7.0.1
Comment: multimedia transformations framework Description: MLT is an open source multimedia framework, designed and developed for television broadcasting. It provides a toolkit for broadcasters, video editors, media players, transcoders, web streamers and many more types of applications. The functionality of the system is provided via an assortment of ready to use tools, XML authoring components, and an extensible plug-in based API. This package contains core functionality and LGPL licensed plugins. Maintainer: The OpenBSD ports mailing-list <ports@openbsd.org> WWW: https://www.mltframework.org/ "Go ahead" espie@
This commit is contained in:
parent
5739c35f80
commit
cab0939091
77
multimedia/mlt7/Makefile
Normal file
77
multimedia/mlt7/Makefile
Normal file
@ -0,0 +1,77 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/10/16 18:08:17 rsadowski Exp $
|
||||
|
||||
COMMENT-main = multimedia transformations framework
|
||||
COMMENT-gpl2 = GPLv2-licensed modules for mlt
|
||||
VERSION = 7.0.1
|
||||
DISTNAME = mlt-${VERSION}
|
||||
PKGNAME-main = mlt7-${VERSION}
|
||||
PKGNAME-gpl2 = mlt7-gpl2-${VERSION}
|
||||
|
||||
CATEGORIES = multimedia devel
|
||||
|
||||
HOMEPAGE = https://www.mltframework.org/
|
||||
|
||||
MASTER_SITES = \
|
||||
https://github.com/mltframework/mlt/releases/download/v${VERSION}/
|
||||
|
||||
DEBUG_PACKAGES = ${BUILD_PACKAGES}
|
||||
|
||||
# XXX versions should be kept in sync together
|
||||
SHARED_LIBS = mlt-7 0.0
|
||||
SHARED_LIBS += mlt++-7 0.0
|
||||
|
||||
# GPLv2+, LGPLv2.1+
|
||||
# Actually, qimage module could be under GPLv3+ if one more object
|
||||
# file gets included, see --enable-gpl3 configure option.
|
||||
PERMIT_PACKAGE = Yes
|
||||
|
||||
WANTLIB-main += ${COMPILER_LIBCXX} SDL SDL2 avcodec avdevice avfilter
|
||||
WANTLIB-main += avformat avutil c ebur128 exif fftw3 fontconfig freetype
|
||||
WANTLIB-main += gdk_pixbuf-2.0 glib-2.0 gobject-2.0 harfbuzz intl jack
|
||||
WANTLIB-main += m pango-1.0 pangoft2-1.0 sox swresample swscale vorbis
|
||||
WANTLIB-main += vorbisfile xml2 z
|
||||
|
||||
WANTLIB-gpl2 += ${COMPILER_LIBCXX} Qt5Core Qt5Gui Qt5Svg Qt5Widgets
|
||||
WANTLIB-gpl2 += Qt5Xml exif fftw3 m mlt++-7 mlt-7 pulse pulse-simple
|
||||
WANTLIB-gpl2 += samplerate vidstab
|
||||
|
||||
MULTI_PACKAGES = -main -gpl2
|
||||
|
||||
MODULES = devel/cmake \
|
||||
x11/qt5
|
||||
|
||||
BUILD_DEPENDS = audio/ladspa \
|
||||
multimedia/frei0r-plugins \
|
||||
textproc/libxml
|
||||
|
||||
RUN_DEPENDS-main = audio/ladspa \
|
||||
multimedia/frei0r-plugins \
|
||||
x11/gtk+3,-guic
|
||||
|
||||
LIB_DEPENDS-main = audio/jack \
|
||||
audio/libebur128 \
|
||||
audio/sox \
|
||||
devel/pango \
|
||||
devel/sdl \
|
||||
devel/sdl2 \
|
||||
graphics/ffmpeg \
|
||||
graphics/gdk-pixbuf2 \
|
||||
graphics/libexif \
|
||||
math/fftw3
|
||||
|
||||
LIB_DEPENDS-gpl2 = ${BUILD_PKGPATH},-main \
|
||||
${MODQT5_LIB_DEPENDS} \
|
||||
audio/libsamplerate \
|
||||
audio/pulseaudio \
|
||||
graphics/libexif \
|
||||
x11/qt5/qtsvg
|
||||
|
||||
|
||||
CONFIGURE_ARGS = -DMOD_RUBBERBAND=OFF
|
||||
|
||||
# melt-7 is enough
|
||||
post-install:
|
||||
rm ${WRKINST}/usr/local/bin/melt
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
2
multimedia/mlt7/distinfo
Normal file
2
multimedia/mlt7/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
SHA256 (mlt-7.0.1.tar.gz) = toyI2a2RiJg4GGGIzOk4/u6LY+N1WjtvtF3Jwq4MXs0=
|
||||
SIZE (mlt-7.0.1.tar.gz) = 1181298
|
163
multimedia/mlt7/patches/patch-src_framework_mlt_property_c
Normal file
163
multimedia/mlt7/patches/patch-src_framework_mlt_property_c
Normal file
@ -0,0 +1,163 @@
|
||||
$OpenBSD: patch-src_framework_mlt_property_c,v 1.1.1.1 2021/10/16 18:08:17 rsadowski Exp $
|
||||
note: if/when OpenBSD gets LC_NUMERIC locale support, the code should be
|
||||
revisited to use threads locale functions (see uselocale(3)), because a
|
||||
mutex is not enough to prevent unsupported usage of non thread-safe
|
||||
locale functions from dumping core!
|
||||
|
||||
Index: src/framework/mlt_property.c
|
||||
--- src/framework/mlt_property.c.orig
|
||||
+++ src/framework/mlt_property.c
|
||||
@@ -315,7 +315,7 @@ static int time_clock_to_frames( mlt_property self, co
|
||||
s = copy;
|
||||
pos = strrchr( s, ':' );
|
||||
|
||||
-#if !defined(__GLIBC__) && !defined(__APPLE__) && !defined(_WIN32) && !defined(HAVE_STRTOD_L)
|
||||
+#if !defined(__GLIBC__) && !defined(__APPLE__) && !defined(_WIN32) && !defined(HAVE_STRTOD_L) && !defined(__OpenBSD__)
|
||||
char *orig_localename = NULL;
|
||||
if ( locale )
|
||||
{
|
||||
@@ -331,7 +331,7 @@ static int time_clock_to_frames( mlt_property self, co
|
||||
#endif
|
||||
|
||||
if ( pos ) {
|
||||
-#if defined(__GLIBC__) || defined(__APPLE__) || defined(HAVE_STRTOD_L)
|
||||
+#if defined(__GLIBC__) || defined(__APPLE__) || defined(HAVE_STRTOD_L) && !defined(__OpenBSD__)
|
||||
if ( locale )
|
||||
seconds = strtod_l( pos + 1, NULL, locale );
|
||||
else
|
||||
@@ -349,7 +349,7 @@ static int time_clock_to_frames( mlt_property self, co
|
||||
}
|
||||
}
|
||||
else {
|
||||
-#if defined(__GLIBC__) || defined(__APPLE__) || defined(HAVE_STRTOD_L)
|
||||
+#if defined(__GLIBC__) || defined(__APPLE__) || defined(HAVE_STRTOD_L) && !defined(__OpenBSD__)
|
||||
if ( locale )
|
||||
seconds = strtod_l( s, NULL, locale );
|
||||
else
|
||||
@@ -357,7 +357,7 @@ static int time_clock_to_frames( mlt_property self, co
|
||||
seconds = strtod( s, NULL );
|
||||
}
|
||||
|
||||
-#if !defined(__GLIBC__) && !defined(__APPLE__) && !defined(_WIN32) && !defined(HAVE_STRTOD_L)
|
||||
+#if !defined(__GLIBC__) && !defined(__APPLE__) && !defined(_WIN32) && !defined(HAVE_STRTOD_L) && !defined(__OpenBSD__)
|
||||
if ( locale ) {
|
||||
// Restore the current locale
|
||||
setlocale( LC_NUMERIC, orig_localename );
|
||||
@@ -534,11 +534,11 @@ static double mlt_property_atof( mlt_property self, do
|
||||
char *end = NULL;
|
||||
double result;
|
||||
|
||||
-#if defined(__GLIBC__) || defined(__APPLE__) || defined(HAVE_STRTOD_L)
|
||||
+#if defined(__GLIBC__) || defined(__APPLE__) || defined(HAVE_STRTOD_L) && !defined(__OpenBSD__)
|
||||
if ( locale )
|
||||
result = strtod_l( value, &end, locale );
|
||||
else
|
||||
-#elif !defined(_WIN32)
|
||||
+#elif !defined(_WIN32) && !defined(__OpenBSD__)
|
||||
char *orig_localename = NULL;
|
||||
if ( locale ) {
|
||||
// Protect damaging the global locale from a temporary locale on another thread.
|
||||
@@ -556,7 +556,7 @@ static double mlt_property_atof( mlt_property self, do
|
||||
if ( end && end[0] == '%' )
|
||||
result /= 100.0;
|
||||
|
||||
-#if !defined(__GLIBC__) && !defined(__APPLE__) && !defined(_WIN32) && !defined(HAVE_STRTOD_L)
|
||||
+#if !defined(__GLIBC__) && !defined(__APPLE__) && !defined(_WIN32) && !defined(HAVE_STRTOD_L) && !defined(__OpenBSD__)
|
||||
if ( locale ) {
|
||||
// Restore the current locale
|
||||
setlocale( LC_NUMERIC, orig_localename );
|
||||
@@ -799,7 +799,7 @@ char *mlt_property_get_string_l_tf( mlt_property self,
|
||||
}
|
||||
else if ( ! ( self->types & mlt_prop_string ) )
|
||||
{
|
||||
-#if !defined(_WIN32)
|
||||
+#if !defined(_WIN32) && !defined(__OpenBSD__)
|
||||
// TODO: when glibc gets sprintf_l, start using it! For now, hack on setlocale.
|
||||
// Save the current locale
|
||||
#if defined(__APPLE__)
|
||||
@@ -845,7 +845,7 @@ char *mlt_property_get_string_l_tf( mlt_property self,
|
||||
self->types |= mlt_prop_string;
|
||||
self->prop_string = self->serialiser( self->data, self->length );
|
||||
}
|
||||
-#if !defined(_WIN32)
|
||||
+#if !defined(_WIN32) && !defined(__OpenBSD__)
|
||||
// Restore the current locale
|
||||
setlocale( LC_NUMERIC, orig_localename );
|
||||
free( orig_localename );
|
||||
@@ -1057,7 +1057,7 @@ static void time_clock_from_frames( int frames, double
|
||||
|
||||
char *mlt_property_get_time( mlt_property self, mlt_time_format format, double fps, locale_t locale )
|
||||
{
|
||||
-#if !defined(_WIN32)
|
||||
+#if !defined(_WIN32) && !defined(__OpenBSD__)
|
||||
char *orig_localename = NULL;
|
||||
#endif
|
||||
int frames = 0;
|
||||
@@ -1070,7 +1070,7 @@ char *mlt_property_get_time( mlt_property self, mlt_ti
|
||||
if ( format == mlt_time_frames )
|
||||
return mlt_property_get_string_l( self, locale );
|
||||
|
||||
-#if !defined(_WIN32)
|
||||
+#if !defined(_WIN32) && !defined(__OpenBSD__)
|
||||
// Use the specified locale
|
||||
if ( locale )
|
||||
{
|
||||
@@ -1129,7 +1129,7 @@ char *mlt_property_get_time( mlt_property self, mlt_ti
|
||||
else // Use smpte drop frame by default
|
||||
time_smpte_from_frames( frames, fps, self->prop_string, 1 );
|
||||
|
||||
-#if !defined(_WIN32)
|
||||
+#if !defined(_WIN32) && !defined(__OpenBSD__)
|
||||
// Restore the current locale
|
||||
if ( locale )
|
||||
{
|
||||
@@ -1169,11 +1169,11 @@ static int is_property_numeric( mlt_property self, loc
|
||||
{
|
||||
char *p = NULL;
|
||||
|
||||
-#if defined(__GLIBC__) || defined(__APPLE__) || defined(HAVE_STRTOD_L)
|
||||
+#if defined(__GLIBC__) || defined(__APPLE__) || defined(HAVE_STRTOD_L) && !defined(__OpenBSD__)
|
||||
if ( locale )
|
||||
strtod_l( self->prop_string, &p, locale );
|
||||
else
|
||||
-#elif !defined(_WIN32)
|
||||
+#elif !defined(_WIN32) && !defined(__OpenBSD__)
|
||||
char *orig_localename = NULL;
|
||||
if ( locale ) {
|
||||
// Protect damaging the global locale from a temporary locale on another thread.
|
||||
@@ -1189,7 +1189,7 @@ static int is_property_numeric( mlt_property self, loc
|
||||
|
||||
strtod( self->prop_string, &p );
|
||||
|
||||
-#if !defined(__GLIBC__) && !defined(__APPLE__) && !defined(_WIN32) && !defined(HAVE_STRTOD_L)
|
||||
+#if !defined(__GLIBC__) && !defined(__APPLE__) && !defined(_WIN32) && !defined(HAVE_STRTOD_L) && !defined(__OpenBSD__)
|
||||
if ( locale ) {
|
||||
// Restore the current locale
|
||||
setlocale( LC_NUMERIC, orig_localename );
|
||||
@@ -1683,7 +1683,7 @@ mlt_rect mlt_property_get_rect( mlt_property self, loc
|
||||
char *p = NULL;
|
||||
int count = 0;
|
||||
|
||||
-#if !defined(__GLIBC__) && !defined(__APPLE__) && !defined(_WIN32) && !defined(HAVE_STRTOD_L)
|
||||
+#if !defined(__GLIBC__) && !defined(__APPLE__) && !defined(_WIN32) && !defined(HAVE_STRTOD_L) && !defined(__OpenBSD__)
|
||||
char *orig_localename = NULL;
|
||||
if ( locale ) {
|
||||
// Protect damaging the global locale from a temporary locale on another thread.
|
||||
@@ -1700,7 +1700,7 @@ mlt_rect mlt_property_get_rect( mlt_property self, loc
|
||||
while ( *value )
|
||||
{
|
||||
double temp;
|
||||
-#if defined(__GLIBC__) || defined(__APPLE__) || defined(HAVE_STRTOD_L)
|
||||
+#if defined(__GLIBC__) || defined(__APPLE__) || defined(HAVE_STRTOD_L) && !defined(__OpenBSD__)
|
||||
if ( locale )
|
||||
temp = strtod_l( value, &p, locale );
|
||||
else
|
||||
@@ -1735,7 +1735,7 @@ mlt_rect mlt_property_get_rect( mlt_property self, loc
|
||||
count ++;
|
||||
}
|
||||
|
||||
-#if !defined(__GLIBC__) && !defined(__APPLE__) && !defined(_WIN32) && !defined(HAVE_STRTOD_L)
|
||||
+#if !defined(__GLIBC__) && !defined(__APPLE__) && !defined(_WIN32) && !defined(HAVE_STRTOD_L) && !defined(__OpenBSD__)
|
||||
if ( locale ) {
|
||||
// Restore the current locale
|
||||
setlocale( LC_NUMERIC, orig_localename );
|
@ -0,0 +1,14 @@
|
||||
$OpenBSD: patch-src_modules_plusgpl_CMakeLists_txt,v 1.1.1.1 2021/10/16 18:08:17 rsadowski Exp $
|
||||
|
||||
Index: src/modules/plusgpl/CMakeLists.txt
|
||||
--- src/modules/plusgpl/CMakeLists.txt.orig
|
||||
+++ src/modules/plusgpl/CMakeLists.txt
|
||||
@@ -16,7 +16,7 @@ target_link_libraries(mltplusgpl PRIVATE mlt m Threads
|
||||
|
||||
if(WIN32)
|
||||
target_link_libraries(mltplusgpl PRIVATE ws2_32)
|
||||
-elseif(UNIX AND NOT APPLE)
|
||||
+elseif(UNIX AND NOT APPLE AND NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD")
|
||||
target_link_libraries(mltplusgpl PRIVATE rt)
|
||||
endif()
|
||||
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_tests_test_properties_test_properties_cpp,v 1.1.1.1 2021/10/16 18:08:17 rsadowski Exp $
|
||||
Index: src/tests/test_properties/test_properties.cpp
|
||||
--- src/tests/test_properties/test_properties.cpp.orig
|
||||
+++ src/tests/test_properties/test_properties.cpp
|
||||
@@ -24,7 +24,6 @@
|
||||
using namespace Mlt;
|
||||
|
||||
extern "C" {
|
||||
-#define __APPLE__
|
||||
#include <framework/mlt_property.h>
|
||||
#include <framework/mlt_animation.h>
|
||||
}
|
8
multimedia/mlt7/pkg/DESCR-gpl2
Normal file
8
multimedia/mlt7/pkg/DESCR-gpl2
Normal file
@ -0,0 +1,8 @@
|
||||
MLT is an open source multimedia framework, designed and developed
|
||||
for television broadcasting. It provides a toolkit for broadcasters,
|
||||
video editors, media players, transcoders, web streamers and many
|
||||
more types of applications. The functionality of the system is
|
||||
provided via an assortment of ready to use tools, XML authoring
|
||||
components, and an extensible plug-in based API.
|
||||
|
||||
This package contains GPLv2 licensed plugins.
|
8
multimedia/mlt7/pkg/DESCR-main
Normal file
8
multimedia/mlt7/pkg/DESCR-main
Normal file
@ -0,0 +1,8 @@
|
||||
MLT is an open source multimedia framework, designed and developed
|
||||
for television broadcasting. It provides a toolkit for broadcasters,
|
||||
video editors, media players, transcoders, web streamers and many
|
||||
more types of applications. The functionality of the system is
|
||||
provided via an assortment of ready to use tools, XML authoring
|
||||
components, and an extensible plug-in based API.
|
||||
|
||||
This package contains core functionality and LGPL licensed plugins.
|
36
multimedia/mlt7/pkg/PLIST-gpl2
Normal file
36
multimedia/mlt7/pkg/PLIST-gpl2
Normal file
@ -0,0 +1,36 @@
|
||||
@comment $OpenBSD: PLIST-gpl2,v 1.1.1.1 2021/10/16 18:08:17 rsadowski Exp $
|
||||
@so lib/mlt-7/libmltnormalize.so
|
||||
@so lib/mlt-7/libmltplusgpl.so
|
||||
@so lib/mlt-7/libmltqt.so
|
||||
@so lib/mlt-7/libmltresample.so
|
||||
@so lib/mlt-7/libmltrtaudio.so
|
||||
@so lib/mlt-7/libmltvidstab.so
|
||||
@so lib/mlt-7/libmltxine.so
|
||||
share/mlt-7/normalize/
|
||||
share/mlt-7/normalize/filter_audiolevel.yml
|
||||
share/mlt-7/normalize/filter_volume.yml
|
||||
share/mlt-7/plusgpl/
|
||||
share/mlt-7/plusgpl/consumer_cbrts.yml
|
||||
share/mlt-7/plusgpl/filter_burningtv.yml
|
||||
share/mlt-7/plusgpl/filter_lumaliftgaingamma.yml
|
||||
share/mlt-7/plusgpl/filter_rotoscoping.yml
|
||||
share/mlt-7/qt/
|
||||
share/mlt-7/qt/filter_audiospectrum.yml
|
||||
share/mlt-7/qt/filter_audiowaveform.yml
|
||||
share/mlt-7/qt/filter_lightshow.yml
|
||||
share/mlt-7/qt/filter_qtblend.yml
|
||||
share/mlt-7/qt/filter_qtcrop.yml
|
||||
share/mlt-7/qt/filter_qtext.yml
|
||||
share/mlt-7/qt/filter_typewriter.yml
|
||||
share/mlt-7/qt/producer_kdenlivetitle.yml
|
||||
share/mlt-7/qt/producer_qimage.yml
|
||||
share/mlt-7/qt/producer_qtext.yml
|
||||
share/mlt-7/qt/transition_qtblend.yml
|
||||
share/mlt-7/qt/transition_vqm.yml
|
||||
share/mlt-7/resample/
|
||||
share/mlt-7/resample/filter_resample.yml
|
||||
share/mlt-7/rtaudio/
|
||||
share/mlt-7/rtaudio/consumer_rtaudio.yml
|
||||
share/mlt-7/vid.stab/
|
||||
share/mlt-7/vid.stab/filter_deshake.yml
|
||||
share/mlt-7/vid.stab/filter_vidstab.yml
|
435
multimedia/mlt7/pkg/PLIST-main
Normal file
435
multimedia/mlt7/pkg/PLIST-main
Normal file
@ -0,0 +1,435 @@
|
||||
@comment $OpenBSD: PLIST-main,v 1.1.1.1 2021/10/16 18:08:17 rsadowski Exp $
|
||||
@bin bin/melt-7
|
||||
include/mlt-7/
|
||||
include/mlt-7/framework/
|
||||
include/mlt-7/framework/mlt.h
|
||||
include/mlt-7/framework/mlt_animation.h
|
||||
include/mlt-7/framework/mlt_audio.h
|
||||
include/mlt-7/framework/mlt_cache.h
|
||||
include/mlt-7/framework/mlt_chain.h
|
||||
include/mlt-7/framework/mlt_consumer.h
|
||||
include/mlt-7/framework/mlt_deque.h
|
||||
include/mlt-7/framework/mlt_events.h
|
||||
include/mlt-7/framework/mlt_factory.h
|
||||
include/mlt-7/framework/mlt_field.h
|
||||
include/mlt-7/framework/mlt_filter.h
|
||||
include/mlt-7/framework/mlt_frame.h
|
||||
include/mlt-7/framework/mlt_image.h
|
||||
include/mlt-7/framework/mlt_link.h
|
||||
include/mlt-7/framework/mlt_log.h
|
||||
include/mlt-7/framework/mlt_luma_map.h
|
||||
include/mlt-7/framework/mlt_multitrack.h
|
||||
include/mlt-7/framework/mlt_parser.h
|
||||
include/mlt-7/framework/mlt_playlist.h
|
||||
include/mlt-7/framework/mlt_pool.h
|
||||
include/mlt-7/framework/mlt_producer.h
|
||||
include/mlt-7/framework/mlt_profile.h
|
||||
include/mlt-7/framework/mlt_properties.h
|
||||
include/mlt-7/framework/mlt_property.h
|
||||
include/mlt-7/framework/mlt_repository.h
|
||||
include/mlt-7/framework/mlt_service.h
|
||||
include/mlt-7/framework/mlt_slices.h
|
||||
include/mlt-7/framework/mlt_tokeniser.h
|
||||
include/mlt-7/framework/mlt_tractor.h
|
||||
include/mlt-7/framework/mlt_transition.h
|
||||
include/mlt-7/framework/mlt_types.h
|
||||
include/mlt-7/framework/mlt_version.h
|
||||
include/mlt-7/mlt++/
|
||||
include/mlt-7/mlt++/Mlt.h
|
||||
include/mlt-7/mlt++/MltAnimation.h
|
||||
include/mlt-7/mlt++/MltAudio.h
|
||||
include/mlt-7/mlt++/MltChain.h
|
||||
include/mlt-7/mlt++/MltConfig.h
|
||||
include/mlt-7/mlt++/MltConsumer.h
|
||||
include/mlt-7/mlt++/MltDeque.h
|
||||
include/mlt-7/mlt++/MltEvent.h
|
||||
include/mlt-7/mlt++/MltFactory.h
|
||||
include/mlt-7/mlt++/MltField.h
|
||||
include/mlt-7/mlt++/MltFilter.h
|
||||
include/mlt-7/mlt++/MltFilteredConsumer.h
|
||||
include/mlt-7/mlt++/MltFilteredProducer.h
|
||||
include/mlt-7/mlt++/MltFrame.h
|
||||
include/mlt-7/mlt++/MltImage.h
|
||||
include/mlt-7/mlt++/MltLink.h
|
||||
include/mlt-7/mlt++/MltMultitrack.h
|
||||
include/mlt-7/mlt++/MltParser.h
|
||||
include/mlt-7/mlt++/MltPlaylist.h
|
||||
include/mlt-7/mlt++/MltProducer.h
|
||||
include/mlt-7/mlt++/MltProfile.h
|
||||
include/mlt-7/mlt++/MltProperties.h
|
||||
include/mlt-7/mlt++/MltPushConsumer.h
|
||||
include/mlt-7/mlt++/MltRepository.h
|
||||
include/mlt-7/mlt++/MltService.h
|
||||
include/mlt-7/mlt++/MltTokeniser.h
|
||||
include/mlt-7/mlt++/MltTractor.h
|
||||
include/mlt-7/mlt++/MltTransition.h
|
||||
lib/cmake/Mlt7/
|
||||
lib/cmake/Mlt7/Mlt7Config.cmake
|
||||
lib/cmake/Mlt7/Mlt7ConfigVersion.cmake
|
||||
lib/cmake/Mlt7/Mlt7Targets${MODCMAKE_BUILD_SUFFIX}
|
||||
lib/cmake/Mlt7/Mlt7Targets.cmake
|
||||
@lib lib/libmlt++-7.so.${LIBmlt++-7_VERSION}
|
||||
@lib lib/libmlt-7.so.${LIBmlt-7_VERSION}
|
||||
lib/mlt-7/
|
||||
@so lib/mlt-7/libmltavformat.so
|
||||
@so lib/mlt-7/libmltcore.so
|
||||
@so lib/mlt-7/libmltdecklink.so
|
||||
@so lib/mlt-7/libmltfrei0r.so
|
||||
@so lib/mlt-7/libmltgdk.so
|
||||
@so lib/mlt-7/libmltjackrack.so
|
||||
@so lib/mlt-7/libmltkdenlive.so
|
||||
@so lib/mlt-7/libmltoldfilm.so
|
||||
@so lib/mlt-7/libmltplus.so
|
||||
@so lib/mlt-7/libmltsdl.so
|
||||
@so lib/mlt-7/libmltsdl2.so
|
||||
@so lib/mlt-7/libmltsox.so
|
||||
@so lib/mlt-7/libmltvorbis.so
|
||||
@so lib/mlt-7/libmltxml.so
|
||||
lib/pkgconfig/mlt++-7.pc
|
||||
lib/pkgconfig/mlt-framework-7.pc
|
||||
@man man/man1/melt-7.1
|
||||
share/mlt-7/
|
||||
share/mlt-7/avformat/
|
||||
share/mlt-7/avformat/blacklist.txt
|
||||
share/mlt-7/avformat/consumer_avformat.yml
|
||||
share/mlt-7/avformat/producer_avformat.yml
|
||||
share/mlt-7/avformat/resolution_scale.yml
|
||||
share/mlt-7/avformat/yuv_only.txt
|
||||
share/mlt-7/core/
|
||||
share/mlt-7/core/consumer_multi.yml
|
||||
share/mlt-7/core/filter_audiomap.yml
|
||||
share/mlt-7/core/filter_audiowave.yml
|
||||
share/mlt-7/core/filter_brightness.yml
|
||||
share/mlt-7/core/filter_channelcopy.yml
|
||||
share/mlt-7/core/filter_choppy.yml
|
||||
share/mlt-7/core/filter_crop.yml
|
||||
share/mlt-7/core/filter_fieldorder.yml
|
||||
share/mlt-7/core/filter_gamma.yml
|
||||
share/mlt-7/core/filter_greyscale.yml
|
||||
share/mlt-7/core/filter_luma.yml
|
||||
share/mlt-7/core/filter_mask_apply.yml
|
||||
share/mlt-7/core/filter_mask_start.yml
|
||||
share/mlt-7/core/filter_mirror.yml
|
||||
share/mlt-7/core/filter_mono.yml
|
||||
share/mlt-7/core/filter_obscure.yml
|
||||
share/mlt-7/core/filter_panner.yml
|
||||
share/mlt-7/core/filter_rescale.yml
|
||||
share/mlt-7/core/filter_resize.yml
|
||||
share/mlt-7/core/filter_transition.yml
|
||||
share/mlt-7/core/filter_watermark.yml
|
||||
share/mlt-7/core/link_timeremap.yml
|
||||
share/mlt-7/core/loader.dict
|
||||
share/mlt-7/core/loader.ini
|
||||
share/mlt-7/core/producer_colour.yml
|
||||
share/mlt-7/core/producer_consumer.yml
|
||||
share/mlt-7/core/producer_hold.yml
|
||||
share/mlt-7/core/producer_loader.yml
|
||||
share/mlt-7/core/producer_melt.yml
|
||||
share/mlt-7/core/producer_melt_file.yml
|
||||
share/mlt-7/core/producer_noise.yml
|
||||
share/mlt-7/core/producer_timewarp.yml
|
||||
share/mlt-7/core/producer_tone.yml
|
||||
share/mlt-7/core/transition_composite.yml
|
||||
share/mlt-7/core/transition_luma.yml
|
||||
share/mlt-7/core/transition_matte.yml
|
||||
share/mlt-7/core/transition_mix.yml
|
||||
share/mlt-7/decklink/
|
||||
share/mlt-7/decklink/consumer_decklink.yml
|
||||
share/mlt-7/decklink/producer_decklink.yml
|
||||
share/mlt-7/frei0r/
|
||||
share/mlt-7/frei0r/blacklist.txt
|
||||
share/mlt-7/frei0r/filter_cairoblend_mode.yml
|
||||
share/mlt-7/frei0r/not_thread_safe.txt
|
||||
share/mlt-7/frei0r/param_name_map.yaml
|
||||
share/mlt-7/frei0r/resolution_scale.yml
|
||||
share/mlt-7/gdk/
|
||||
share/mlt-7/gdk/filter_rescale.yml
|
||||
share/mlt-7/gdk/producer_pango.yml
|
||||
share/mlt-7/gdk/producer_pixbuf.yml
|
||||
share/mlt-7/jackrack/
|
||||
share/mlt-7/jackrack/consumer_jack.yml
|
||||
share/mlt-7/kdenlive/
|
||||
share/mlt-7/kdenlive/filter_boxblur.yml
|
||||
share/mlt-7/kdenlive/filter_freeze.yml
|
||||
share/mlt-7/kdenlive/filter_wave.yml
|
||||
share/mlt-7/kdenlive/producer_framebuffer.yml
|
||||
share/mlt-7/metaschema.yaml
|
||||
share/mlt-7/oldfilm/
|
||||
share/mlt-7/oldfilm/dust1.svg
|
||||
share/mlt-7/oldfilm/dust2.svg
|
||||
share/mlt-7/oldfilm/dust3.svg
|
||||
share/mlt-7/oldfilm/dust4.svg
|
||||
share/mlt-7/oldfilm/dust5.svg
|
||||
share/mlt-7/oldfilm/fdust.svg
|
||||
share/mlt-7/oldfilm/filter_dust.yml
|
||||
share/mlt-7/oldfilm/filter_grain.yml
|
||||
share/mlt-7/oldfilm/filter_lines.yml
|
||||
share/mlt-7/oldfilm/filter_oldfilm.yml
|
||||
share/mlt-7/oldfilm/filter_tcolor.yml
|
||||
share/mlt-7/oldfilm/filter_vignette.yml
|
||||
share/mlt-7/oldfilm/grain.svg
|
||||
share/mlt-7/oldfilm/lines.svg
|
||||
share/mlt-7/oldfilm/oldfilm.svg
|
||||
share/mlt-7/oldfilm/tcolor.svg
|
||||
share/mlt-7/oldfilm/vignette.svg
|
||||
share/mlt-7/plus/
|
||||
share/mlt-7/plus/consumer_blipflash.yml
|
||||
share/mlt-7/plus/filter_affine.yml
|
||||
share/mlt-7/plus/filter_charcoal.yml
|
||||
share/mlt-7/plus/filter_chroma.yml
|
||||
share/mlt-7/plus/filter_chroma_hold.yml
|
||||
share/mlt-7/plus/filter_dance.yml
|
||||
share/mlt-7/plus/filter_dynamic_loudness.yml
|
||||
share/mlt-7/plus/filter_dynamictext.yml
|
||||
share/mlt-7/plus/filter_fft.yml
|
||||
share/mlt-7/plus/filter_invert.yml
|
||||
share/mlt-7/plus/filter_lift_gamma_gain.yml
|
||||
share/mlt-7/plus/filter_loudness.yml
|
||||
share/mlt-7/plus/filter_loudness_meter.yml
|
||||
share/mlt-7/plus/filter_lumakey.yml
|
||||
share/mlt-7/plus/filter_pillar_echo.yml
|
||||
share/mlt-7/plus/filter_rgblut.yml
|
||||
share/mlt-7/plus/filter_sepia.yml
|
||||
share/mlt-7/plus/filter_shape.yml
|
||||
share/mlt-7/plus/filter_spot_remover.yml
|
||||
share/mlt-7/plus/filter_strobe.yml
|
||||
share/mlt-7/plus/filter_text.yml
|
||||
share/mlt-7/plus/filter_threshold.yml
|
||||
share/mlt-7/plus/filter_timer.yml
|
||||
share/mlt-7/plus/producer_blipflash.yml
|
||||
share/mlt-7/plus/producer_count.yml
|
||||
share/mlt-7/plus/producer_pgm.yml
|
||||
share/mlt-7/plus/transition_affine.yml
|
||||
share/mlt-7/presets/
|
||||
share/mlt-7/presets/consumer/
|
||||
share/mlt-7/presets/consumer/avformat/
|
||||
share/mlt-7/presets/consumer/avformat/AAC
|
||||
share/mlt-7/presets/consumer/avformat/ALAC
|
||||
share/mlt-7/presets/consumer/avformat/AV1
|
||||
share/mlt-7/presets/consumer/avformat/FLAC
|
||||
share/mlt-7/presets/consumer/avformat/Flash
|
||||
share/mlt-7/presets/consumer/avformat/GIF
|
||||
share/mlt-7/presets/consumer/avformat/MJPEG
|
||||
share/mlt-7/presets/consumer/avformat/MP3
|
||||
share/mlt-7/presets/consumer/avformat/MPEG-2
|
||||
share/mlt-7/presets/consumer/avformat/MPEG-4
|
||||
share/mlt-7/presets/consumer/avformat/MPEG-4-ASP
|
||||
share/mlt-7/presets/consumer/avformat/Slide-Deck-H264
|
||||
share/mlt-7/presets/consumer/avformat/Slide-Deck-HEVC
|
||||
share/mlt-7/presets/consumer/avformat/Sony-PSP
|
||||
share/mlt-7/presets/consumer/avformat/Vorbis
|
||||
share/mlt-7/presets/consumer/avformat/WAV
|
||||
share/mlt-7/presets/consumer/avformat/WMA
|
||||
share/mlt-7/presets/consumer/avformat/WMV
|
||||
share/mlt-7/presets/consumer/avformat/XDCAM-HD422
|
||||
share/mlt-7/presets/consumer/avformat/YouTube
|
||||
share/mlt-7/presets/consumer/avformat/alpha/
|
||||
share/mlt-7/presets/consumer/avformat/alpha/Quicktime Animation
|
||||
share/mlt-7/presets/consumer/avformat/alpha/Ut Video
|
||||
share/mlt-7/presets/consumer/avformat/alpha/vp8
|
||||
share/mlt-7/presets/consumer/avformat/alpha/vp9
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080i_50/
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080i_50/DNxHD
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080i_5994/
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080i_5994/DNxHD
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080p_2398/
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080p_2398/DNxHD
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080p_24/
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080p_24/DNxHD
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080p_25/
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080p_25/DNxHD
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080p_2997/
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080p_2997/DNxHD
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080p_30/
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080p_30/DNxHD
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080p_50/
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080p_50/DNxHD
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080p_5994/
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080p_5994/DNxHD
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080p_60/
|
||||
share/mlt-7/presets/consumer/avformat/atsc_1080p_60/DNxHD
|
||||
share/mlt-7/presets/consumer/avformat/atsc_720p_2398/
|
||||
share/mlt-7/presets/consumer/avformat/atsc_720p_2398/DNxHD
|
||||
share/mlt-7/presets/consumer/avformat/atsc_720p_50/
|
||||
share/mlt-7/presets/consumer/avformat/atsc_720p_50/DNxHD
|
||||
share/mlt-7/presets/consumer/avformat/atsc_720p_5994/
|
||||
share/mlt-7/presets/consumer/avformat/atsc_720p_5994/DNxHD
|
||||
share/mlt-7/presets/consumer/avformat/atsc_720p_60/
|
||||
share/mlt-7/presets/consumer/avformat/atsc_720p_60/DNxHD
|
||||
share/mlt-7/presets/consumer/avformat/dv_ntsc/
|
||||
share/mlt-7/presets/consumer/avformat/dv_ntsc/D10
|
||||
share/mlt-7/presets/consumer/avformat/dv_ntsc/DV
|
||||
share/mlt-7/presets/consumer/avformat/dv_ntsc/DVCPRO50
|
||||
share/mlt-7/presets/consumer/avformat/dv_ntsc/DVD
|
||||
share/mlt-7/presets/consumer/avformat/dv_ntsc_wide/
|
||||
share/mlt-7/presets/consumer/avformat/dv_ntsc_wide/D10
|
||||
share/mlt-7/presets/consumer/avformat/dv_ntsc_wide/DV
|
||||
share/mlt-7/presets/consumer/avformat/dv_ntsc_wide/DVCPRO50
|
||||
share/mlt-7/presets/consumer/avformat/dv_ntsc_wide/DVD
|
||||
share/mlt-7/presets/consumer/avformat/dv_pal/
|
||||
share/mlt-7/presets/consumer/avformat/dv_pal/D10
|
||||
share/mlt-7/presets/consumer/avformat/dv_pal/DV
|
||||
share/mlt-7/presets/consumer/avformat/dv_pal/DVCPRO50
|
||||
share/mlt-7/presets/consumer/avformat/dv_pal/DVD
|
||||
share/mlt-7/presets/consumer/avformat/dv_pal_wide/
|
||||
share/mlt-7/presets/consumer/avformat/dv_pal_wide/D10
|
||||
share/mlt-7/presets/consumer/avformat/dv_pal_wide/DV
|
||||
share/mlt-7/presets/consumer/avformat/dv_pal_wide/DVCPRO50
|
||||
share/mlt-7/presets/consumer/avformat/dv_pal_wide/DVD
|
||||
share/mlt-7/presets/consumer/avformat/hdv_1080_25p/
|
||||
share/mlt-7/presets/consumer/avformat/hdv_1080_25p/HDV
|
||||
share/mlt-7/presets/consumer/avformat/hdv_1080_30p/
|
||||
share/mlt-7/presets/consumer/avformat/hdv_1080_30p/HDV
|
||||
share/mlt-7/presets/consumer/avformat/hdv_1080_50i/
|
||||
share/mlt-7/presets/consumer/avformat/hdv_1080_50i/HDV
|
||||
share/mlt-7/presets/consumer/avformat/hdv_1080_60i/
|
||||
share/mlt-7/presets/consumer/avformat/hdv_1080_60i/HDV
|
||||
share/mlt-7/presets/consumer/avformat/hdv_720_25p/
|
||||
share/mlt-7/presets/consumer/avformat/hdv_720_25p/HDV
|
||||
share/mlt-7/presets/consumer/avformat/hdv_720_30p/
|
||||
share/mlt-7/presets/consumer/avformat/hdv_720_30p/HDV
|
||||
share/mlt-7/presets/consumer/avformat/hdv_720_50p/
|
||||
share/mlt-7/presets/consumer/avformat/hdv_720_50p/HDV
|
||||
share/mlt-7/presets/consumer/avformat/hdv_720_60p/
|
||||
share/mlt-7/presets/consumer/avformat/hdv_720_60p/HDV
|
||||
share/mlt-7/presets/consumer/avformat/intermediate/
|
||||
share/mlt-7/presets/consumer/avformat/intermediate/DNxHR-HQ
|
||||
share/mlt-7/presets/consumer/avformat/intermediate/MJPEG
|
||||
share/mlt-7/presets/consumer/avformat/intermediate/MPEG-2
|
||||
share/mlt-7/presets/consumer/avformat/intermediate/MPEG-4
|
||||
share/mlt-7/presets/consumer/avformat/intermediate/ProRes
|
||||
share/mlt-7/presets/consumer/avformat/intermediate/ProRes HQ
|
||||
share/mlt-7/presets/consumer/avformat/intermediate/ProRes-Kostya
|
||||
share/mlt-7/presets/consumer/avformat/lossless/
|
||||
share/mlt-7/presets/consumer/avformat/lossless/FFV1
|
||||
share/mlt-7/presets/consumer/avformat/lossless/H.264
|
||||
share/mlt-7/presets/consumer/avformat/lossless/HuffYUV
|
||||
share/mlt-7/presets/consumer/avformat/lossless/Ut Video
|
||||
share/mlt-7/presets/consumer/avformat/stills/
|
||||
share/mlt-7/presets/consumer/avformat/stills/BMP
|
||||
share/mlt-7/presets/consumer/avformat/stills/DPX
|
||||
share/mlt-7/presets/consumer/avformat/stills/JPEG
|
||||
share/mlt-7/presets/consumer/avformat/stills/PNG
|
||||
share/mlt-7/presets/consumer/avformat/stills/PPM
|
||||
share/mlt-7/presets/consumer/avformat/stills/TGA
|
||||
share/mlt-7/presets/consumer/avformat/stills/TIFF
|
||||
share/mlt-7/presets/consumer/avformat/vp9
|
||||
share/mlt-7/presets/consumer/avformat/webm
|
||||
share/mlt-7/presets/consumer/avformat/webm-pass1
|
||||
share/mlt-7/presets/consumer/avformat/x264-medium
|
||||
share/mlt-7/presets/consumer/avformat/x264-medium-baseline
|
||||
share/mlt-7/presets/consumer/avformat/x264-medium-main
|
||||
share/mlt-7/presets/consumer/avformat/x264-medium-pass1
|
||||
share/mlt-7/presets/consumer/avformat/x265-medium
|
||||
share/mlt-7/presets/consumer/avformat/x265-medium-pass1
|
||||
share/mlt-7/presets/filter/
|
||||
share/mlt-7/presets/filter/brightness/
|
||||
share/mlt-7/presets/filter/brightness/from_black
|
||||
share/mlt-7/presets/filter/brightness/to_black
|
||||
share/mlt-7/presets/filter/movit.blur/
|
||||
share/mlt-7/presets/filter/movit.blur/blur_in
|
||||
share/mlt-7/presets/filter/movit.blur/blur_in_out
|
||||
share/mlt-7/presets/filter/movit.blur/blur_out
|
||||
share/mlt-7/presets/filter/movit.opacity/
|
||||
share/mlt-7/presets/filter/movit.opacity/fade_in
|
||||
share/mlt-7/presets/filter/movit.opacity/fade_in_out
|
||||
share/mlt-7/presets/filter/movit.opacity/fade_out
|
||||
share/mlt-7/presets/filter/volume/
|
||||
share/mlt-7/presets/filter/volume/fade_in
|
||||
share/mlt-7/presets/filter/volume/fade_out
|
||||
share/mlt-7/profiles/
|
||||
share/mlt-7/profiles/atsc_1080i_50
|
||||
share/mlt-7/profiles/atsc_1080i_5994
|
||||
share/mlt-7/profiles/atsc_1080i_60
|
||||
share/mlt-7/profiles/atsc_1080p_2398
|
||||
share/mlt-7/profiles/atsc_1080p_24
|
||||
share/mlt-7/profiles/atsc_1080p_25
|
||||
share/mlt-7/profiles/atsc_1080p_2997
|
||||
share/mlt-7/profiles/atsc_1080p_30
|
||||
share/mlt-7/profiles/atsc_1080p_50
|
||||
share/mlt-7/profiles/atsc_1080p_5994
|
||||
share/mlt-7/profiles/atsc_1080p_60
|
||||
share/mlt-7/profiles/atsc_720p_2398
|
||||
share/mlt-7/profiles/atsc_720p_24
|
||||
share/mlt-7/profiles/atsc_720p_25
|
||||
share/mlt-7/profiles/atsc_720p_2997
|
||||
share/mlt-7/profiles/atsc_720p_30
|
||||
share/mlt-7/profiles/atsc_720p_50
|
||||
share/mlt-7/profiles/atsc_720p_5994
|
||||
share/mlt-7/profiles/atsc_720p_60
|
||||
share/mlt-7/profiles/cif_15
|
||||
share/mlt-7/profiles/cif_ntsc
|
||||
share/mlt-7/profiles/cif_pal
|
||||
share/mlt-7/profiles/cvd_ntsc
|
||||
share/mlt-7/profiles/cvd_pal
|
||||
share/mlt-7/profiles/dv_ntsc
|
||||
share/mlt-7/profiles/dv_ntsc_wide
|
||||
share/mlt-7/profiles/dv_pal
|
||||
share/mlt-7/profiles/dv_pal_wide
|
||||
share/mlt-7/profiles/hdv_1080_25p
|
||||
share/mlt-7/profiles/hdv_1080_30p
|
||||
share/mlt-7/profiles/hdv_1080_50i
|
||||
share/mlt-7/profiles/hdv_1080_60i
|
||||
share/mlt-7/profiles/hdv_720_25p
|
||||
share/mlt-7/profiles/hdv_720_30p
|
||||
share/mlt-7/profiles/hdv_720_50p
|
||||
share/mlt-7/profiles/hdv_720_60p
|
||||
share/mlt-7/profiles/qcif_15
|
||||
share/mlt-7/profiles/qcif_ntsc
|
||||
share/mlt-7/profiles/qcif_pal
|
||||
share/mlt-7/profiles/qhd_1440p_2398
|
||||
share/mlt-7/profiles/qhd_1440p_24
|
||||
share/mlt-7/profiles/qhd_1440p_25
|
||||
share/mlt-7/profiles/qhd_1440p_2997
|
||||
share/mlt-7/profiles/qhd_1440p_30
|
||||
share/mlt-7/profiles/qhd_1440p_50
|
||||
share/mlt-7/profiles/qhd_1440p_5994
|
||||
share/mlt-7/profiles/qhd_1440p_60
|
||||
share/mlt-7/profiles/quarter_15
|
||||
share/mlt-7/profiles/quarter_ntsc
|
||||
share/mlt-7/profiles/quarter_ntsc_wide
|
||||
share/mlt-7/profiles/quarter_pal
|
||||
share/mlt-7/profiles/quarter_pal_wide
|
||||
share/mlt-7/profiles/sdi_486i_5994
|
||||
share/mlt-7/profiles/sdi_486p_2398
|
||||
share/mlt-7/profiles/square_1080p_30
|
||||
share/mlt-7/profiles/square_1080p_60
|
||||
share/mlt-7/profiles/square_ntsc
|
||||
share/mlt-7/profiles/square_ntsc_wide
|
||||
share/mlt-7/profiles/square_pal
|
||||
share/mlt-7/profiles/square_pal_wide
|
||||
share/mlt-7/profiles/svcd_ntsc
|
||||
share/mlt-7/profiles/svcd_ntsc_wide
|
||||
share/mlt-7/profiles/svcd_pal
|
||||
share/mlt-7/profiles/svcd_pal_wide
|
||||
share/mlt-7/profiles/uhd_2160p_2398
|
||||
share/mlt-7/profiles/uhd_2160p_24
|
||||
share/mlt-7/profiles/uhd_2160p_25
|
||||
share/mlt-7/profiles/uhd_2160p_2997
|
||||
share/mlt-7/profiles/uhd_2160p_30
|
||||
share/mlt-7/profiles/uhd_2160p_50
|
||||
share/mlt-7/profiles/uhd_2160p_5994
|
||||
share/mlt-7/profiles/uhd_2160p_60
|
||||
share/mlt-7/profiles/vcd_ntsc
|
||||
share/mlt-7/profiles/vcd_pal
|
||||
share/mlt-7/profiles/vertical_hd_30
|
||||
share/mlt-7/profiles/vertical_hd_60
|
||||
share/mlt-7/sdl/
|
||||
share/mlt-7/sdl/consumer_sdl.yml
|
||||
share/mlt-7/sdl/consumer_sdl_audio.yml
|
||||
share/mlt-7/sdl/consumer_sdl_preview.yml
|
||||
share/mlt-7/sdl/consumer_sdl_still.yml
|
||||
share/mlt-7/sdl2/
|
||||
share/mlt-7/sdl2/consumer_sdl2.yml
|
||||
share/mlt-7/sdl2/consumer_sdl2_audio.yml
|
||||
share/mlt-7/sox/
|
||||
share/mlt-7/sox/filter_sox.yml
|
||||
share/mlt-7/sox/filter_sox_effect.yml
|
||||
share/mlt-7/vorbis/
|
||||
share/mlt-7/vorbis/producer_vorbis.yml
|
||||
share/mlt-7/xml/
|
||||
share/mlt-7/xml/consumer_xml.yml
|
||||
share/mlt-7/xml/mlt-xml.dtd
|
||||
share/mlt-7/xml/producer_xml-nogl.yml
|
||||
share/mlt-7/xml/producer_xml-string.yml
|
||||
share/mlt-7/xml/producer_xml.yml
|
Loading…
x
Reference in New Issue
Block a user