diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2025-06-10 11:32:39 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-06-09 21:24:09 -0700 |
| commit | 4a20c58f1212f99a2bbb95364f369c93f12557e6 (patch) | |
| tree | 82dfd8ec573cf5e3fd0bdfc4215a3ea98d6a2cde /meta-oe/recipes-multimedia/libass/libass_0.17.4.bb | |
| parent | e9f35175cd976b9d3b2f941e0db49d5bfbb85bb2 (diff) | |
| download | meta-openembedded-4a20c58f1212f99a2bbb95364f369c93f12557e6.tar.gz | |
libass: upgrade 0.17.3 -> 0.17.4
Changelog:
==========
- add new API to prune old events from memory
- ass_prune_events for manual pruning
- ass_configure_prune to set up automatic pruning
- add ASS_OVERRIDE_BIT_BLUR flag
- fontconfig: fix minor memory leaks in pathological font setups
- coretext: fix build on older compilers or Mac OS X 10.5
- checkasm: fix build for older compilers
- aarch64: fix assembly build on strict compilers due to oversized align
- meson: improve ASM configuration on x86 Android
- meson: align MSVC warnings and optimisations closer to gcc-like compilers
- meson can now build all dev utility executables
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-multimedia/libass/libass_0.17.4.bb')
| -rw-r--r-- | meta-oe/recipes-multimedia/libass/libass_0.17.4.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-oe/recipes-multimedia/libass/libass_0.17.4.bb b/meta-oe/recipes-multimedia/libass/libass_0.17.4.bb new file mode 100644 index 0000000000..297b7c01e8 --- /dev/null +++ b/meta-oe/recipes-multimedia/libass/libass_0.17.4.bb | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | DESCRIPTION = "libass is a portable subtitle renderer for the ASS/SSA (Advanced Substation Alpha/Substation Alpha) subtitle format. It is mostly compatible with VSFilter." | ||
| 2 | HOMEPAGE = "https://github.com/libass/libass" | ||
| 3 | SECTION = "libs/multimedia" | ||
| 4 | |||
| 5 | LICENSE = "ISC" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=a42532a0684420bdb15556c3cdd49a75" | ||
| 7 | |||
| 8 | DEPENDS = "fontconfig freetype fribidi harfbuzz" | ||
| 9 | |||
| 10 | SRC_URI = "git://github.com/libass/libass.git;protocol=https;branch=master" | ||
| 11 | SRCREV = "bbb3c7f1570a4a021e52683f3fbdf74fe492ae84" | ||
| 12 | S = "${WORKDIR}/git" | ||
| 13 | |||
| 14 | inherit autotools pkgconfig | ||
| 15 | |||
| 16 | PACKAGECONFIG[asm] = "--enable-asm,--disable-asm,nasm-native" | ||
| 17 | # use larger tiles in the rasterizer (better performance, slightly worse quality) | ||
| 18 | PACKAGECONFIG[largetiles] = "--enable-large-tiles,--disable-large-tiles" | ||
| 19 | |||
| 20 | PACKAGECONFIG ??= "" | ||
| 21 | PACKAGECONFIG:append:x86-64 = " asm" | ||
| 22 | |||
| 23 | PACKAGES =+ "${PN}-tests" | ||
| 24 | |||
| 25 | FILES:${PN}-tests = " \ | ||
| 26 | ${libdir}/test/test \ | ||
| 27 | " | ||
