From: averne <averne381@gmail.com> To: ffmpeg-devel@ffmpeg.org Subject: Re: [FFmpeg-devel] [PATCH 02/16] configure, avutil: add support for HorizonOS Date: Fri, 31 May 2024 23:06:39 +0200 Message-ID: <ff1dcf93-6a4f-4dfd-b1fd-b71746cbb620@gmail.com> (raw) In-Reply-To: <3817170.1jWajBme35@basile.remlab.net> Le 30/05/2024 à 22:37, Rémi Denis-Courmont a écrit : > Le torstaina 30. toukokuuta 2024, 22.43.04 EEST averne a écrit : >> HorizonOS (HOS) is the operating system of the Nintendo Switch. >> This patch enables integration with the homebrew toolchain developped by the >> devkitPro team. Its two main components are devkitA64 (common toolchain for >> aarch64 targets) and libnx (library implementing interaction with the HOS >> kernel and system daemons, termed sysmodules). >> >> Signed-off-by: averne <averne381@gmail.com> >> --- >> configure | 8 ++++++++ >> libavutil/cpu.c | 7 +++++++ >> 2 files changed, 15 insertions(+) >> >> diff --git a/configure b/configure >> index 96b181fd21..09fb2aed1b 100755 >> --- a/configure >> +++ b/configure >> @@ -5967,6 +5967,10 @@ case $target_os in >> ;; >> minix) >> ;; >> + horizon) >> + enable section_data_rel_ro >> + add_extralibs -lnx >> + ;; >> none) >> ;; >> *) >> @@ -7710,6 +7714,10 @@ haiku) >> disable memalign >> fi >> ;; >> +horizon) >> + disable sysctl >> + disable sysctlbyname >> + ;; > > Are those really broken, or is this just a trick to force a fallback? In the > later case, you don't need to disable them; just to put the HOS code ahead of > the generic BSD code. > Hi, those functions are only available for socket-related operations (see https://github.com/switchbrew/libnx/blob/master/nx/include/switch/services/bsd.h#L57). I think it makes sense to disable them to avoid potential confusion. >> esac >> >> flatten_extralibs(){ >> diff --git a/libavutil/cpu.c b/libavutil/cpu.c >> index 9ac2f01c20..6a77df5e34 100644 >> --- a/libavutil/cpu.c >> +++ b/libavutil/cpu.c >> @@ -48,6 +48,9 @@ >> #if HAVE_UNISTD_H >> #include <unistd.h> >> #endif >> +#ifdef __SWITCH__ >> +#include <switch.h> >> +#endif >> >> static atomic_int cpu_flags = -1; >> static atomic_int cpu_count = -1; >> @@ -247,6 +250,10 @@ int av_cpu_count(void) >> #elif HAVE_WINRT >> GetNativeSystemInfo(&sysinfo); >> nb_cpus = sysinfo.dwNumberOfProcessors; >> +#elif defined(__SWITCH__) >> + u64 core_mask = 0; >> + Result rc = svcGetInfo(&core_mask, InfoType_CoreMask, >> CUR_PROCESS_HANDLE, 0); + nb_cpus = R_SUCCEEDED(rc) ? >> av_popcount64(core_mask) : 3; >> #endif >> >> if (!atomic_exchange_explicit(&printed, 1, memory_order_relaxed)) > > _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
next prev parent reply other threads:[~2024-05-31 21:06 UTC|newest] Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-05-30 19:43 [FFmpeg-devel] [PATCH 00/16] NVidia Tegra hardware decoding backend averne 2024-05-30 19:43 ` [FFmpeg-devel] [PATCH 01/16] avutil/buffer: add helper to allocate aligned memory averne 2024-05-30 20:38 ` Rémi Denis-Courmont 2024-05-31 21:06 ` averne 2024-05-31 21:44 ` Michael Niedermayer 2024-06-02 18:37 ` averne 2024-06-01 6:59 ` Rémi Denis-Courmont 2024-05-30 19:43 ` [FFmpeg-devel] [PATCH 02/16] configure, avutil: add support for HorizonOS averne 2024-05-30 20:37 ` Rémi Denis-Courmont 2024-05-31 21:06 ` averne [this message] 2024-05-30 19:43 ` [FFmpeg-devel] [PATCH 03/16] avutil: add ioctl definitions for tegra devices averne 2024-05-30 20:42 ` Rémi Denis-Courmont 2024-05-31 21:06 ` averne 2024-05-31 21:16 ` Timo Rothenpieler 2024-06-02 18:37 ` averne 2024-05-30 19:43 ` [FFmpeg-devel] [PATCH 04/16] avutil: add hardware definitions for NVDEC, NVJPG and VIC averne 2024-05-30 19:43 ` [FFmpeg-devel] [PATCH 05/16] avutil: add common code for nvtegra averne 2024-05-31 8:32 ` Rémi Denis-Courmont 2024-05-31 21:06 ` averne 2024-06-01 7:29 ` Rémi Denis-Courmont 2024-06-05 20:29 ` Mark Thompson 2024-06-29 19:35 ` averne 2024-05-30 19:43 ` [FFmpeg-devel] [PATCH 06/16] avutil: add nvtegra hwcontext averne 2024-06-05 20:47 ` Mark Thompson 2024-06-29 19:35 ` averne 2024-05-30 19:43 ` [FFmpeg-devel] [PATCH 07/16] hwcontext_nvtegra: add dynamic frequency scaling routines averne 2024-06-05 20:50 ` Mark Thompson 2024-06-29 19:35 ` averne 2024-05-30 19:43 ` [FFmpeg-devel] [PATCH 08/16] nvtegra: add common hardware decoding code averne 2024-05-30 19:43 ` [FFmpeg-devel] [PATCH 09/16] nvtegra: add mpeg1/2 hardware decoding averne 2024-05-30 19:43 ` [FFmpeg-devel] [PATCH 10/16] nvtegra: add mpeg4 " averne 2024-05-30 19:43 ` [FFmpeg-devel] [PATCH 11/16] nvtegra: add vc1 " averne 2024-05-30 19:43 ` [FFmpeg-devel] [PATCH 12/16] nvtegra: add h264 " averne 2024-05-30 19:43 ` [FFmpeg-devel] [PATCH 13/16] nvtegra: add hevc " averne 2024-05-30 19:43 ` [FFmpeg-devel] [PATCH 14/16] nvtegra: add vp8 " averne 2024-05-30 19:43 ` [FFmpeg-devel] [PATCH 15/16] nvtegra: add vp9 " averne 2024-05-30 19:43 ` [FFmpeg-devel] [PATCH 16/16] nvtegra: add mjpeg " averne
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=ff1dcf93-6a4f-4dfd-b1fd-b71746cbb620@gmail.com \ --to=averne381@gmail.com \ --cc=ffmpeg-devel@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git