Skip to content

Commit

Permalink
version 7.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Jun 22, 2022
1 parent fdd55e8 commit 3c9cda6
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 4 deletions.
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.7.0
VERSION 7.8.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.6.0
PROJECT_NUMBER = 7.8.0

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

Version 7.8.0

This highlight of this version is a new glaxnimate producer to render 2D
vector art and animation.

Framework
* Added `mlt_frame_get_alpha_size()` and refactored code to use it.
* Fixed a possible null pointer crash in `mlt_service_apply_filters()`.

Modules
* Added a `glaxnimate` producer to the glaxnimate module.
* Added new file extensions for `glaxnimate` producer: json, lottie, rawr, tgs.
* Removed Qt4 compatibility from the qt module.
* Added Qt6 compatibility to the qt module.
* Added new file extensions for `qimage` producer: avif, heic, heif, jxl.
* Fixed `color_range` when using the `multi` consumer.
* Fixed reloading updated `results` in the `loudness` filter.
* Fixed `image_mode=blend` in the `timeremap` link.
* Fixed crash regression in `swscale` filter with odd size YUV image.
* Fixed the `choppy` filter may result in black frames with transitions.
* Prevent a crash in `avfilter` producer for a bug in glibc with `_FORTIFY_SOURCE=3`.


Version 7.6.0

This version adds image slice-threading to many filters and full support for
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" "March 2022" "melt 7.6.0" "User Commands"
.TH MELT "1" "June 2022" "melt 7.8.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 7
#define LIBMLT_VERSION_MINOR 8
#define LIBMLT_VERSION_REVISION 0
#define LIBMLT_VERSION_INT ((LIBMLT_VERSION_MAJOR<<16)+(LIBMLT_VERSION_MINOR<<8)+LIBMLT_VERSION_REVISION)
#define LIBMLT_VERSION MLT_STRINGIZE(LIBMLT_VERSION_MAJOR.LIBMLT_VERSION_MINOR.LIBMLT_VERSION_REVISION)
Expand Down

0 comments on commit 3c9cda6

Please sign in to comment.