Skip to content

Commit

Permalink
version 7.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Sep 12, 2024
1 parent 7344e12 commit 6dfe01e
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ config.log
.depend
*~
*.cxx
demo/*.dv
demo/*.mpeg
demo/*.ogg
demo/photos
docs/html/*
releases/*
patches/*
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.14)

project(MLT
VERSION 7.27.0
VERSION 7.28.0
DESCRIPTION "Multimedia Framework"
HOMEPAGE_URL "https://www.mltframework.org"
LANGUAGES C CXX
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ PROJECT_NAME = MLT
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = 7.26.0
PROJECT_NUMBER = 7.28.0

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
Expand Down
18 changes: 18 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
MLT Release Notes
-----------------

Version 7.28.0

This fixes a couple of major regressions in the previous version 7.26.0:
* Fixed seeking and frozen video due by reverting "Improved performance with
intra-only video and reducing the frame rate."
* Fixed using `melt` to render MLT XML with OpenGL effects from `movit`.

Other fixes and changes:
* Deprecated the `composite` transition and the `sdl` and `ndi` modules.
* Fixed Android camera video has the wrong frame rate (broken in v7.26.0).
* Fixed audio not playing for audio-only DTS WMA.
* Fixed using "https:" URLs in the `xml` producer.
* Fixed crash on exit when running `melt -query` or `melt -query links`.
* Added a `transition` property to the `watermark` filter. Now, it defaults
to using `affine`.
* Changed `affine` transition argument to set `rect` property if supplied.


Version 7.26.0

Framework
Expand Down
2 changes: 1 addition & 1 deletion docs/melt.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.38.4.
.TH MELT "1" "August 2024" "melt 7.26.0" "User Commands"
.TH MELT "1" "September 2024" "melt 7.28.0" "User Commands"
.SH NAME
melt \- author, play, and encode multitrack audio/video compositions
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion src/framework/mlt_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#define MLT_STRINGIZE(s) MLT_STRINGIZE2(s)

#define LIBMLT_VERSION_MAJOR 7
#define LIBMLT_VERSION_MINOR 27
#define LIBMLT_VERSION_MINOR 28
#define LIBMLT_VERSION_REVISION 0
#define LIBMLT_VERSION_INT \
((LIBMLT_VERSION_MAJOR << 16) + (LIBMLT_VERSION_MINOR << 8) + LIBMLT_VERSION_REVISION)
Expand Down
2 changes: 1 addition & 1 deletion src/modules/qt/transition_qtblend.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
schema_version: 7
schema_version: 7.0
type: transition
identifier: qtblend
title: Composite and transform
Expand Down

0 comments on commit 6dfe01e

Please sign in to comment.