aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-multimedia
AgeCommit message (Collapse)Author
7 dayslibopus: upgrade 1.5.1 -> 1.5.2Wang Mingyu
Changelog: fixes a misalignment issue in the AVX2 code that could cause crashes under Windows. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
9 dayslibjxl: drop -mfp16-format=ieeeMartin Jansa
* causes qemuarm failure as shown in: http://errors.yoctoproject.org/Errors/Details/761504/ and reported in: https://lists.openembedded.org/g/openembedded-devel/message/109812 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-09libmad: switch links/SRC_URI to https sitesRandy MacLeod
Switch to the sourceforge SRC_URI since the mars.org site only supports ftp. Also switch the HOMEPAGE and BUGTRACKER links over to https. and drop the obsolete SRC_URI[md5sum]. Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-03highway,libjxl: Remove -mfp16-format=ieee when using clang compilerKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-02libjxl: add recipeMarkus Volk
Import this recipe from meta-wayland, because it is a prerequisite for the Gnome desktop. The recently updated gnome-backgrounds package has converted most of the backgrounds to jxl and to keep them usable the gdk-pixbuf-loader for jpegxl must be provided. This is included in the libjxl package itself. Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-03-20libopus: upgrade 1.4 -> 1.5.1Wang Mingyu
License-Update: Copyright updated to 2023. Changelog: =========== -Significant improvement to packet loss robustness using Deep Redundancy (DRED) -Improved packet loss concealment through Deep PLC -Low-bitrate speech quality enhancement down to 6 kb/s wideband -Improved x86 (AVX2) and Arm (Neon) optimizations -Support for 4th and 5th order ambisonics Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-03-17recipes: Drop remaining PR values from recipesMartin Jansa
* as oe-core did in: https://git.openembedded.org/openembedded-core/commit/?id=d4c346e8ab * when people are have to maintain own PRs for recipes in oe-core, they might add them for meta-oe recipes at the same time when upgrading to next LTS Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-09recipes: drop ${SRCPV} usageMartin Jansa
* Drop SRCPV similarly like oe-core did in: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=843f82a246a535c353e08072f252d1dc78217872 * SRCPV is deferred now from PV to PKGV since: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=a8e7b0f932b9ea69b3a218fca18041676c65aba0 Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
2024-01-30libvpx: restore Upstream-StatusMartin Jansa
* accidentally dropped in: https://git.openembedded.org/meta-openembedded/commit/?id=acfdff6e41f860b31faefb4e449239a6d04d7502 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-01-27jack: fix build with python3 on hostMartin Jansa
* first backport from waflib fixes: | DEBUG: Executing shell function do_configure | Traceback (most recent call last): | File "/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/./waf", line 166, in <module> | from waflib import Scripting | File "/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/waflib/Scripting.py", line 10, in <module> | from waflib import Utils, Configure, Logs, Options, ConfigSet, Context, Errors, Build, Node | File "/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/waflib/Configure.py", line 16, in <module> | from waflib import ConfigSet, Utils, Options, Logs, Context, Build, Errors | File "/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/waflib/Options.py", line 14, in <module> | from waflib import Logs, Utils, Context, Errors | File "/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/waflib/Context.py", line 9, in <module> | import os, re, imp, sys | ModuleNotFoundError: No module named 'imp' the 2nd one avoids SyntaxWarning from waf --version which causes waf_preconfigure to fail, because SyntaxWarning ends in waf_preconfigure to fail, because SyntaxWarning ends in bb.utils.vercmp_string_op: jack/1.9.22/git $ python3 waf --version /OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/waflib/Context.py:617: SyntaxWarning: invalid escape sequence '\_' """ /OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/waflib/Build.py:107: SyntaxWarning: invalid escape sequence '\*' """List of targets to build (default: \*)""" /OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/waflib/Task.py:1047: SyntaxWarning: invalid escape sequence '\w' re_cond = re.compile('(?P<var>\w+)|(?P<or>\|)|(?P<and>&)') /OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/waflib/TaskGen.py:730: SyntaxWarning: invalid escape sequence '\w' re_m4 = re.compile('@(\w+)@', re.M) waf 2.0.12 (54841218840ffa34fddf834680a5a17db69caa12) As reported in https://lists.openembedded.org/g/openembedded-core/message/194348 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-01-22libvpx: upgrade 1.13.1 -> 1.14.0Wang Mingyu
Changelog: =========== Fix to missing prototypes from the rtcd header. Fix to segfault when total size is enlarged but width is smaller. Fix to the build for arm64ec using MSVC. Fix to copy BLOCK_8X8's mi to PICK_MODE_CONTEXT::mic. Fix to -Wshadow warnings. Fix to heap overflow in vpx_get4x4sse_cs_neon. Fix to buffer overrun in highbd Neon subpel variance filters. Added bitexact encode test script. Fix to -Wl,-z,defs with Clang's sanitizers. Fix to decoder stability after error & continued decoding. Fix to mismatch of VP9 encode with NEON intrinsics with C only version. Fix to Arm64 MSVC compile vpx_highbd_fdct4x4_neon. Fix to fragments count before use. Fix to a case where target bandwidth is 0 for SVC. Fix mask in vp9_quantize_avx2,highbd_get_max_lane_eob. Fix to int overflow in vp9_calc_pframe_target_size_one_pass_cbr. Fix to integer overflow in vp8,ratectrl.c. Fix to integer overflow in vp9 svc. Fix to avg_frame_bandwidth overflow. Fix to per frame qp for temporal layers. Fix to unsigned integer overflow in sse computation. Fix to uninitialized mesh feature for BEST mode. Fix to overflow in highbd temporal_filter. Fix to unaligned loads w/w==4 in vpx_convolve_copy_neon. Skip arm64_neon.h workaround w/VS >= 2019. Fix to c vs avx mismatch of diamond_search_sad(). Fix to c vs intrinsic mismatch of vpx_hadamard_32x32() function. Fix to a bug in vpx_hadamard_32x32_neon(). Fix to Clang -Wunreachable-code-aggressive warnings. Fix to a bug in vpx_highbd_hadamard_32x32_neon(). Fix to -Wunreachable-code in mfqe_partition. Force mode search on 64x64 if no mode is selected. Fix to ubsan failure caused by left shift of negative. Fix to integer overflow in calc_pframe_target_size. Fix to float-cast-overflow in vp8_change_config(). Fix to a null ptr before use. Conditionally skip using inter frames in speed features. Remove invalid reference frames. Disable intra mode search speed features conditionally. Set nonrd keyframe under dynamic change of deadline for rtc. Fix to scaled reference offsets. Set skip_recode=0 in nonrd_pick_sb_modes. Fix to an edge case when downsizing to one. Fix to a bug in frame scaling. Fix to pred buffer stride. Fix to a bug in simple motion search. Update frame size in actual encoding. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-01-19v4l-utils: Remove unneeded musl patchFabio Estevam
The musl issue that 0004-Do-not-use-getsubopt.patch fixes has already been addressed by the following v4l-utils upstream commit: commit 6e19bb895a16a9a247524ac526ab47f576cc36f6 Author: Hans Verkuil <hverkuil-cisco@xs4all.nl> Date: Thu Nov 25 10:59:22 2021 +0100 v4l-utils: use v4l_getsubopt instead of getsubopt Android doesn't have getsubopt at all, and some libc implementations use a getsubopt variant that behaves slightly different. So add a new v4l-getsubopt.h header that either just uses the glibc function (if glibc is detected) or uses a static inline v4l_getsubopt that is copied from glibc. This should avoid such problems. Reported-by: Marian Buschsieweke <marian.buschsieweke@ovgu.de> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Remove the unneeded patch. Signed-off-by: Fabio Estevam <festevam@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-01-12v4l-utils: Update to 1.26.1Fabio Estevam
Update to 1.26.1. Remove the Makefile.am patches as they no longer apply due to the switch to Meson. Backport a fix that prevents installing 50-rc_keymap.conf in systems without systemd. Signed-off-by: Fabio Estevam <festevam@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-01-09wavpack: upgrade 5.1.0 -> 5.6.0alperak
* Added patches to fix -> unversioned.so was causing incorrect packaging and errors. * Added openssl as a depends because trying to link with native libcrypto in some builds -> lib32-wavpack/5.6.0/recipe-sysroot-native/usr/lib/libcrypto.so: file not recognized: file format not recognized License-Update: Copyright year changes Changelog: * added: AIFF file import/export support * added: WATCOM compiler and OS/2 support * added: cmake support for mingw, builds Cooledit + Winamp plugins * added: --force-even-byte-depth option for rounding up bit depths * fixed: detect and report PCM files having non-zero padding bits * fixed: possible crash when displaying long channel assignments * fixed: big-endian-sourced "raw" files gave big-endian "wav"s * fixed: numerous minor issues * fixed: CVE-2021-44269 (encoding crafted DSD file triggers OOB read crash) * fixed: very long filenames cause stack-overflow crash in all CLI programs * fixed: the length stored in WAV headers not always corrected when using -i * fixed: attempting to encode raw DSD audio from stdin sometimes causes crash * fixed: DSD to PCM decimation: small clicks between tracks and tiny DC offset * fixed: length update in library-generated WAV headers on big-endian machines * fixed: sanitize custom extensions read from WavPack files to be alphanumeric * added: accepting brace-delimited options in the wavpack executable filename * added: "--drop" option to Windows executables for multi-file "drag-and-drop" * added" "--raw-pcm" option to wvunpack executable (does DSD --> 24-bit PCM) * added: "--no-overwrite" option to wavpack executable (to resume sessions) * improved: build system clean-up including switch to non-recursive "make" * fixed: potential security issue CVE-2020-35738 * fixed: disable A32 asm code when building for Apple silicon * fixed: issues with Adobe-style floating-point WAV files * added: -vv option to wvunpack to quickly verify using just block checksums (ideal for detecting corrupted files) * added: --normalize-floats option to wvunpack for correctly exporting un-normalized floating-point files * updated: Visual Studio 2019 for Windows builds * dropped: WinXP support in official binaries * fixed: OSS-Fuzz issues 19925, 19928, 20060, 20448 (no CVEs or vulnerabilities) * fixed: trailing garbage characters on imported ID3v2 TXXX tags * fixed: various minor undefined behavior and memory access issues * fixed: sanitize tag extraction names for length and path inclusion * improved: reformat wvunpack "help" and split into long + short versions * added: regression testing to Travis CI for OSS-Fuzz crashers * fixed: potential security issues including the following CVEs: CVE-2018-19840 CVE-2018-19841 CVE-2018-10536 CVE-2018-10537 CVE-2018-10538 CVE-2018-10539 CVE-2018-10540 CVE-2018-7254 CVE-2018-7253 CVE-2018-6767 * added: support for CMake, Travis CI, and Google's OSS-fuzz * fixed: use correction file for encode verify (pipe input, Windows) * fixed: correct WAV header with actual length (pipe input, -i option) * fixed: thumb interworking and not needing v6 architecture (ARM asm) * added: handle more ID3v2.3 tag items and from all file types * fixed: coredump on Sparc64 (changed MD5 implementation) * fixed: handle invalid ID3v2.3 tags from sacd-ripper * fixed: several corner-case memory leaks Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-01-02v4l-utils: Add PACKAGECONFIG for v4l2-tracer to fix determinstic buildRobert Yang
Fixed do_package error when json-c is in the build dependencies chain: ERROR: QA Issue: -dev package libv4l-dev contains non-symlink .so '/usr/lib/libv4l2tracer.so' [dev-elf] This recipe builds out files such as av4l1compat.so v4l2convert.so and libv4l2tracer.so which are not symlinks. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-12-20faad2: Upgrade 2.10.0 -> 2.11.1Marek Vasut
Update faad2 to latest 2.11.1 release. Use SRCREV matching tag 2.11.1 . Switch to cmake . Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-11-19libvpx: don't specify armv5 and armv6 toolchains explicitlyskandigraun
The libvpx project has removed the support for these values, and the recipe can't be built anymore for these arch's when these values are used. The correct value for these arch's is `generic-gnu`, which is used as a default fallthrough value for all platforms in the recipe for arch's that are not specified explicitly. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-11-07jack: Revert to 1.9.22Peter Kjellerstedt
There is no version "2". The tag "jack2-control-api-relicense-nedko" incorrectly triggered AUH to identify it as version "2". Additionally, the previous recipe version "1.19.22" was also incorrect. It should actually have been "1.9.22". License-Update: Update the licenses based on analysis of the code Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-11-05jack: upgrade 1.19.22 -> 2Khem Raj
License-Update: Update license field to reflect missing AFL-2.1 and MIT licenses Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-10-24meta-oe: Drop broken BBCLASSEXTEND variantsRichard Purdie
The command "bitbake universe -c fetch" currently throws a ton of warnings as there are many 'impossible' dependencies. In some cases these variants may never have worked and were just added by copy and paste of recipes. In some cases they once clearly did work but became broken somewhere along the way. Users may also be carrying local bbappend files which add further BBCLASSEXTEND. Having universe fetch work without warnings is desireable so clean up the broken variants. Anyone actually needing something dropped here can propose adding it and the correct functional dependencies back quite easily. This also then ensures we're not carrying or fixing things nobody uses. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-10-04libvpx: upgrade 1.13.0 -> 1.13.1Benjamin Bara
Changelog: ========= This release contains two security related fixes. One each for VP8 and VP9. - Upgrading: This release is ABI compatible with the previous release. - Bug fixes: https://crbug.com/1486441 (CVE-2023-5217) Fix to a crash related to VP9 encoding (#1642) Signed-off-by: Benjamin Bara <benjamin.bara@skidata.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-08-29ne10: set incompatible for armv7 without neonBenjamin Bara
ne10 requires NEON[1], therefore set incompatible for incompatible machines. In this case, don't depend on it in libopus, as it is optional anyways. [1] https://github.com/projectNe10/Ne10/blob/v1.2.1/CMakeLists.txt#L139 Signed-off-by: Benjamin Bara <benjamin.bara@skidata.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-08-26libopus: add CVE_PRODUCTEmil Kronborg Andersen
Signed-off-by: Emil Kronborg Andersen <emkan@prevas.dk> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-08-22libvpx: fix VPXTARGET for non-neon armv7aBenjamin Bara
The compiler might use non-supported instructions, as the build config requires armv7-linux-gcc targets to have NEON[1] and drops the mtune value[2], which also might use d32 registers on d16 cpus. Falling back to the generic-gnu target respects the toolchain-set values and should therefore be used instead. [1] https://chromium.googlesource.com/webm/libvpx/+/626ff35955c2c35b806b3e0ecf551a1a8611cdbf/build/make/configure.sh#955 [2] https://chromium.googlesource.com/webm/libvpx/+/626ff35955c2c35b806b3e0ecf551a1a8611cdbf/build/make/configure.sh#973 Signed-off-by: Benjamin Bara <benjamin.bara@skidata.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-08-17jack: Drop dependency on readlineKirk Hays
Since Jack version 1.19.22, "readline" is no longer used [1] [1] https://jackaudio.org/news/ Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-06-21*.patch: add Upstream-Status to all patchesMartin Jansa
There is new patch-status QA check in oe-core: https://git.openembedded.org/openembedded-core/commit/?id=76a685bfcf927593eac67157762a53259089ea8a This is temporary work around just to hide _many_ warnings from optional patch-status (if you add it to WARN_QA). This just added Upstream-Status: Pending everywhere without actually investigating what's the proper status. This is just to hide current QA warnings and to catch new .patch files being added without Upstream-Status, but the number of Pending patches is now terrible: 5 (26%) meta-xfce 6 (50%) meta-perl 15 (42%) meta-webserver 21 (36%) meta-gnome 25 (57%) meta-filesystems 26 (43%) meta-initramfs 45 (45%) meta-python 47 (55%) meta-multimedia 312 (63%) meta-networking 756 (61%) meta-oe Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-05-28v4l-utils: Update 1.23.0+9431e4b2 -> 1.24.1Marek Vasut
Update V4L2 utils to actual release version 1.24.1 . Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-05-23mpv: Remove references to builddir from mpv binaryKhem Raj
Fixes WARNING: mpv-0.35.1-r0 do_package_qa: QA Issue: File /usr/bin/mpv in package mpv contains reference to TMPDIR [buildpaths] Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-05-16libmad: Add a patch to pass cflags to buildKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-05-16wavpack: upgrade 4.60.1 -> 5.1.0Wang Mingyu
Changelog: Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-05-15paprefs: add x11 to REQUIRED_DISTRO_FEATURESMartin Jansa
* This doesn't build with any gtk3 DISTRO_FEATURES, without x11 in DISTRO_FEATURES gtk3+ doesn't provide gdkx.h and paprefs build fails with: http://errors.yoctoproject.org/Errors/Details/704195/ ../paprefs-1.2/src/paprefs.cc:30:10: fatal error: gdk/gdkx.h: No such file or directory 30 | #include <gdk/gdkx.h> | ^~~~~~~~~~~~ Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-05-09libburn: move to meta-filesystemsRoss Burton
This recipe is very much in the remit of meta-filesystems, so move the recipe and update it. It ships a cdrecord wrapper so inherit lib_package, and the license is GPLv2 or later not GPLv2 only, for example: https://dev.lovelyhq.com/libburnia/libburn/src/branch/master/libburn/source.c Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-05-09paprefs: add recipeMarkus Volk
Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-05-07libcdio: Drop need for LIBCDIO_SOURCE_PATHKhem Raj
LIBCDIO_SOURCE_PATH is defined with `pwd` which encodes absolute paths into generated artifacts e.g. cdio_config.h which is flagged in build QA WARNING: libcdio-2.1.0-r0 do_package_qa: QA Issue: File /usr/include/cdio/cdio_config.h in package libcdio-dev contains reference to TMPDIR [buildpaths] Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-05-04v4l-utils: do out-of-tree buildsRoss Burton
Don't override B to do in-tree builds, and run bootstrap from ${S} so that it works correctly. Also, remove redundant SRC_URI checksums, as this recipe now uses git. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-04-23libopus: upgrade 1.3.1 -> 1.4Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-04-01mpv: Upgrade to 0.35.1Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-25libass: upgrade 0.17.0 -> 0.17.1Wang Mingyu
Changelog: ========== Fix buffer overread if soft-wrapping occurred and ASS_FEATURE_WHOLE_TEXT_LAYOUT was enabled via API or due to Encoding -1 (bug introduced in 0.16.0) x86: detect GNU Hurd and configure NASM appropriately Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-09libvpx: upgrade 1.12.0 -> 1.13.0Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-02-24libvpx: Enable native supportJoshua Watt
Enable support for building libvpx as a native recipe Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-02-24libvpx: Explicitly link with pthread supportJoshua Watt
When building for the native build host, explicitly add the -pthread option to link against the pthread libraries. This errors like: vp9_encoder.c:(.text+0x2073): undefined reference to `pthread_once' when building the native variant Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-02-24.patch: fix Upstream-Status formatting issues reported by patchreview tool ↵Martin Jansa
from oe-core Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-02-19v4l-utils: Update 1.23.0+fd544473 -> 1.23.0+9431e4b2Marek Vasut
Update V4L2 utils to latest git HEAD and drop patches now upstream: 575e0a9f ("media-info: Include missing <cstdint> for uintptr_t") 96022d88 ("configure.ac, Makefile.am: Support building without NLS") Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-02-18jack: upgrade 1.19.21 -> 1.19.22Wang Mingyu
0001-Remove-usage-of-U-mode-bit-for-opening-files-in-pyth.patch removed since it's included in 1.19.22. Changelog: ========== The waf autooption --example-tools has been removed. The example clients and tools are no longer part of the jack2 project. Drop dependencies that were only used for example clients and tools (readline, sndfile and zita libs) Fix build with python3.11+ Fix compatibility with macOS 12+ Fix ringbuffer thread safety on ARM Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-01-26v4l-utils: Fix build with gcc13Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-01-21audiofile: Stick to c++14 stdKhem Raj
It uses std::unary_function which is removed from c++17 onwards, until this is removed/replaced we can not move beyond c++14 Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-01-21libmodplug: Fix build with c++17Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-01-01v4l-utils: Diable 64bit time_t on glibc targetsKhem Raj
it overrides some of LFS64 functions in peculiar ways that it has to undefine _FILE_OFFSET_BITS to silence the funtion definitions from glibc Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-05libass: upgrade 0.16.0 -> 0.17.0Wang Mingyu
Detailed Changes: ================== - Fix various parts relating to automatic linebreaking - Fix rendering when hinting was enabled and fontsizes or scales are zero - Switch build to a non-recursive setup for improved parallelism - Improve quality of SSA Effects movement - Further documentation improvements - Completely invalid Events are now discarded during parsing - Introduction of LayoutRes{X,Y} script headers - New AlphaLevel style override to set all alpha values while keeping the color - Add ASS_FEATURE_WRAP_UNICODE to allow automatic linebreaks in accordance with the Unicode line breaking algorithm instead of ASS' much stricter breaking rules. For the feature to be available at runtime, libass must be linked against the new optional dependency libunibreak. - Improve VSFilter compatibility: Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-03alsa-oss: Remove recipeKhem Raj
This is not used anywhere in meta-openembedded and will have to be fixed when enanbling LFS and time64_t. Signed-off-by: Khem Raj <raj.khem@gmail.com>