-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into sandbox/support-usbboot
- Loading branch information
Showing
45 changed files
with
155 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
myst_parser | ||
sphinx_rtd_theme |
File renamed without changes.
40 changes: 40 additions & 0 deletions
40
dynamic-layers/multimedia-layer/recipes-multimedia/libcamera-apps/libcamera-apps_git.bb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
SUMMARY = "A suite of libcamera-based apps" | ||
DESCRIPTION = "This is a small suite of libcamera-based apps that aim to \ | ||
copy the functionality of the existing \"raspicam\" apps." | ||
HOMEPAGE = "https://github.com/raspberrypi/libcamera-apps" | ||
SECTION = "console/utils" | ||
|
||
LICENSE = "BSD-2-Clause" | ||
LIC_FILES_CHKSUM = "file://license.txt;md5=a0013d1b383d72ba4bdc5b750e7d1d77" | ||
|
||
SRC_URI = "\ | ||
git://github.com/raspberrypi/libcamera-apps.git;protocol=https;branch=main \ | ||
file://0001-utils-version.py-use-usr-bin-env-in-shebang.patch \ | ||
" | ||
PV = "1.2.1+git${SRCPV}" | ||
SRCREV = "1c1d1c1a2a86d70cf873edc8bb72d174f037973a" | ||
|
||
S = "${WORKDIR}/git" | ||
|
||
DEPENDS = "libcamera libexif jpeg tiff libpng boost" | ||
|
||
PACKAGECONFIG ??= "drm" | ||
PACKAGECONFIG[libav] = "-Denable_libav=true, -Denable_libav=false, libav" | ||
PACKAGECONFIG[drm] = "-Denable_drm=true, -Denable_drm=false, libdrm" | ||
PACKAGECONFIG[egl] = "-Denable_egl=true, -Denable_egl=false, virtual/egl" | ||
PACKAGECONFIG[qt] = "-Denable_qt=true, -Denable_qt=false, qtbase" | ||
PACKAGECONFIG[opencv] = "-Denable_opencv=true, -Denable_opencv=false, opencv" | ||
PACKAGECONFIG[tflite] = "-Denable_tflite=true, -Denable_tflite=false, tensorflow-lite" | ||
|
||
inherit meson pkgconfig | ||
|
||
NEON_FLAGS = "" | ||
NEON_FLAGS:aarch64 = "-Dneon_flags=arm64" | ||
NEON_FLAGS:arm:raspberrypi3 = "-Dneon_flags=armv8-neon" | ||
NEON_FLAGS:arm:raspberrypi4 = "-Dneon_flags=armv8-neon" | ||
EXTRA_OEMESON += "${NEON_FLAGS}" | ||
|
||
# QA Issue: /usr/bin/camera-bug-report contained in package libcamera-apps requires /usr/bin/python3 | ||
do_install:append() { | ||
rm -v ${D}/${bindir}/camera-bug-report | ||
} |
2 changes: 1 addition & 1 deletion
2
dynamic-layers/multimedia-layer/recipes-multimedia/libcamera/libcamera_%.bbappend
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
PACKAGECONFIG[raspberrypi] = "-Dpipelines=raspberrypi -Dipas=raspberrypi -Dcpp_args=-Wno-unaligned-access" | ||
PACKAGECONFIG[raspberrypi] = "-Dpipelines=rpi/vc4 -Dipas=rpi/vc4 -Dcpp_args=-Wno-unaligned-access" | ||
PACKAGECONFIG:append:rpi = " raspberrypi" |
30 changes: 30 additions & 0 deletions
30
...-multimedia/rpidistro-vlc/files/0009-demux-dash-include-cstdint-needed-for-uint64_t.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
From 6fca76ebd76bf8fce9b111e31bda64015cdc770f Mon Sep 17 00:00:00 2001 | ||
From: Johannes Kauffmann <[email protected]> | ||
Date: Mon, 11 Jul 2022 19:35:57 +0000 | ||
Subject: [PATCH] demux: dash: include cstdint, needed for uint64_t | ||
|
||
Fixes #27077. | ||
|
||
Upstream-Status: Backport | ||
|
||
https://github.com/videolan/vlc/commit/6fca76ebd76bf8fce9b111e31bda64015cdc770f | ||
|
||
--- | ||
modules/demux/dash/mpd/TemplatedUri.hpp | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
diff --git a/modules/demux/dash/mpd/TemplatedUri.hpp b/modules/demux/dash/mpd/TemplatedUri.hpp | ||
index 1eeb70cbb6..7f7264a9c8 100644 | ||
--- a/modules/demux/dash/mpd/TemplatedUri.hpp | ||
+++ b/modules/demux/dash/mpd/TemplatedUri.hpp | ||
@@ -21,6 +21,7 @@ | ||
#ifndef TEMPLATEDURI_HPP | ||
#define TEMPLATEDURI_HPP | ||
|
||
+#include <cstdint> | ||
#include <string> | ||
|
||
namespace dash | ||
-- | ||
2.34.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,8 @@ Signed-off-by: Mauro Salvini <[email protected]> | |
Cc: C?dric Schieli <[email protected]> | ||
Cc: Matthias Brugger <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
board/raspberrypi/rpi/rpi.c | 3 --- | ||
1 file changed, 3 deletions(-) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,8 @@ Subject: [PATCH] Move the hciattach firmware into /lib/firmware | |
|
||
Signed-off-by: Martin Jansa <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
tools/hciattach.h | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,8 @@ vc_vchi_dispmanx.h | |
|
||
Signed-off-by: Khem Raj <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
.gitignore | 1 + | ||
CMakeLists.txt | 11 + | ||
README.md | 4 + | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,8 @@ lets add the dependency on bcm_host module which should do it | |
|
||
Signed-off-by: Khem Raj <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
interface/khronos/wayland-egl/wayland-egl.pc.in | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,8 @@ This was removed after a discussion on IRC with the weston guys | |
|
||
Signed-off-by: "Yann E. MORIN" <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
interface/vmcs_host/vc_vchi_dispmanx.c | 1 - | ||
1 file changed, 1 deletion(-) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ origins from buildroot | |
|
||
Signed-off-by: Khem Raj <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
interface/khronos/egl/egl_client_surface.c | 2 ++ | ||
1 file changed, 2 insertions(+) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ origins from metrological wayland support | |
|
||
Signed-off-by: Khem Raj <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
interface/khronos/egl/egl_client_surface.c | 3 +++ | ||
1 file changed, 3 insertions(+) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ Origins from buildroot | |
|
||
Signed-off-by: Khem Raj <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
interface/khronos/ext/gl_oes_egl_image_client.c | 1 - | ||
1 file changed, 1 deletion(-) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,8 @@ make[2]: *** | |
|
||
Signed-off-by: Khem Raj <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
interface/vcos/pthreads/CMakeLists.txt | 8 ++++++++ | ||
interface/vmcs_host/CMakeLists.txt | 8 -------- | ||
interface/vmcs_host/vc_vchi_dispmanx.h | 2 +- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ frame rate appears irregular and lower than expected when using nested compositi | |
|
||
Signed-off-by: Khem Raj <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
interface/khronos/egl/egl_client.c | 8 ++++++++ | ||
1 file changed, 8 insertions(+) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ Fixes #149 | |
|
||
Signed-off-by: Khem Raj <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
interface/vmcs_host/CMakeLists.txt | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ Courtesy: Zan Dobersek | |
|
||
Signed-off-by: Khem Raj <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
interface/khronos/ext/egl_wayland.c | 42 +++++++++++++++++++++++++++++ | ||
interface/wayland/dispmanx.xml | 10 +++++++ | ||
2 files changed, 52 insertions(+) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,8 @@ to two vertical intervals | |
Signed-off-by: Jeff Wannamaker <[email protected]> | ||
Signed-off-by: Khem Raj <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
interface/khronos/egl/egl_client.c | 3 ++- | ||
interface/khronos/egl/egl_client_surface.c | 8 ++++++++ | ||
interface/khronos/egl/egl_client_surface.h | 11 +++++++++++ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,8 @@ via embedded composition e.g. westeros | |
Signed-off-by: Jeff Wannamaker <[email protected]> | ||
Signed-off-by: Khem Raj <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
interface/khronos/common/khrn_client.c | 2 +- | ||
interface/khronos/common/khrn_client.h | 11 +++++- | ||
interface/khronos/ext/egl_wayland.c | 50 ++++++++++++++++++++++---- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ taken from Khronos headers | |
|
||
Signed-off-by: Khem Raj <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
interface/khronos/include/EGL/eglext.h | 8 ++++++++ | ||
1 file changed, 8 insertions(+) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ for multiple versions of glibc even ones which does not have this define | |
|
||
Signed-off-by: Khem Raj <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
opensrc/helpers/libfdt/libfdt_env.h | 4 ++++ | ||
1 file changed, 4 insertions(+) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ therefore import needed defines and typedefs from latest mesa | |
|
||
Signed-off-by: Khem Raj <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
interface/khronos/include/EGL/eglext.h | 14 ++++++++++++++ | ||
1 file changed, 14 insertions(+) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,8 @@ Link: https://lore.kernel.org/all/[email protected]/ | |
Cc: [email protected] | ||
Signed-off-by: Kees Cook <[email protected]> | ||
--- | ||
Upstream-Status: Pending | ||
|
||
scripts/gcc-plugins/gcc-common.h | 4 ++-- | ||
1 file changed, 2 insertions(+), 2 deletions(-) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ From: Khem Raj <[email protected]> | |
Date: Sat, 13 Feb 2016 11:42:29 -0800 | ||
|
||
--- | ||
Upstream-Status: Pending | ||
|
||
omx/gstomxvideodec.c | 4 ++-- | ||
1 file changed, 2 insertions(+), 2 deletions(-) | ||
|
||
|
Oops, something went wrong.