summarylogtreecommitdiffstats
AgeCommit message (Collapse)Author
45 hoursAdd patch to fix build with gcc 14Daniel Bermond
This fixes the following error when compiling with gcc 14: libavfilter/asrc_flite.c: In function ‘init’: libavfilter/asrc_flite.c:230:21: error: assignment to ‘cst_audio_stream_callback’ {aka ‘int (*)(const struct cst_wave_struct *, int, int, int, void *)’} from incompatible pointer type ‘int (*)(const cst_wave *, int, int, int, cst_audio_streaming_info *)’ {aka ‘int (*)(const struct cst_wave_struct *, int, int, int, struct cst_audio_streaming_info_struct *)’} [-Wincompatible-pointer-types] 230 | flite->asi->asc = audio_stream_chunk_by_word; | ^
8 daysDisable tensorflow due to upstream problemDaniel Bermond
We have just added tensorflow again, as the repository package was fixed, allowing to properly use it here again. Unfortunately, there is a tensorflow upstream issue[1] that prevents applications to startup when they are linked to both ffmpeg and protobuf. We better remove tensorflow again to not break client applications, until this is fixed by upstream. References ---------- [1] https://github.com/tensorflow/tensorflow/issues/59081#issuecomment-2093988476
8 daysUse environment variables to set the needed compiler flagsDaniel Bermond
This will prevent the compiler flags '-I' and '-L' to be shown in the ffmpeg version string. This is likely an unneeded information to be present there.
11 daysUpdate libvpl dependenciesDaniel Bermond
12 daysFix nvidia vulkan decoding segmentation faultDaniel Bermond
Original patch for fixing nvidia vulkan decoding: https://github.com/streetpea/chiaki4deck/issues/239#issuecomment-1929365254 References ---------- [1] https://trac.ffmpeg.org/ticket/10847 [2] https://trac.ffmpeg.org/ticket/10970
2024-04-04Update svt hevc/vp9 patches. New upstream option: libquirc.Daniel Bermond
References ---------- https://git.ffmpeg.org/gitweb/ffmpeg.git/commit/030e1401451200566a5303f35cbe1456e31dd81e
2024-03-31Update packageDaniel Bermond
2024-03-31Add fix for svt hevc/vp9. Remove old patch. Refresh other patches.Daniel Bermond
2024-03-19Bring back libtensorflow. Add new option libtorch in disabled mode.Daniel Bermond
Tensorflow is now fixed[1] and can be added again[2]. The new upstream option --enable-libtorch[3] can be added only when the repository ffmpeg sonames (library versions) catch up with ffmpeg git master, as python-pytorch depends on ffmpeg and the current ffmpeg git master bumped[4] the soname of all libraries. Otherwise, the ffmpeg libraries will conflict. References ---------- [1] https://gitlab.archlinux.org/archlinux/packaging/packages/tensorflow/-/issues/2 [2] https://aur.archlinux.org/cgit/aur.git/commit/?h=ffmpeg-full-git&id=5b34804510e96f108909ef41963a34fdb25df903 [3] https://git.ffmpeg.org/gitweb/ffmpeg.git/commit/f4e0664fd1bc94ee1a1afbd20c5a32ac33d93a2d [4] https://git.ffmpeg.org/gitweb/ffmpeg.git/commit/783d00b203b2a6c67ec289856ff080c7a36ddb6e
2024-03-17Update svt patches, refresh other patches and update licenseDaniel Bermond
Also: - explicitly disable libshaderc, since it is mutually exclusive with libglslang - prioritize openvino pkgconfig search path
2024-01-06New upstream option: libqrencodeDaniel Bermond
[1] https://git.ffmpeg.org/gitweb/ffmpeg.git/commit/899302bb5f6ac0484fedc2865ee3beca021eba85
2023-11-25Bring back support for opencvDaniel Bermond
opencv support was disabled[1] a long time ago because ffmpeg failed to build with it. opencv 3.x does not support C compilation mode[2] anymore, and ffmpeg uses only C. There is no ffmpeg interest[3] in compiling opencv in C++ mode, so opencv2 must be used here. References ---------- [1] https://aur.archlinux.org/cgit/aur.git/commit/?h=ffmpeg-full-git&id=f9d589fa30dddc8318fff742a87b7927566b2a9e [2] https://github.com/opencv/opencv/issues/10963 [3] https://trac.ffmpeg.org/ticket/7059
2023-11-25Add new upstream options: libaribcaption, libxevd and libxeveDaniel Bermond
References ---------- [1] https://git.videolan.org/?p=ffmpeg.git;a=commit;h=b6138633cdf2ecae22c4c02029e91245c430c4fe [2] https://git.videolan.org/?p=ffmpeg.git;a=commit;h=c59a96fd08620bd8239c218f2e0dfb8429c81c3c [3] https://git.videolan.org/?p=ffmpeg.git;a=commit;h=cfe29478873e5000416a2da58a92102b7ed7255c
2023-11-24Fix svt-hevc patch to match latest upstream changesDaniel Bermond
2023-11-17Update libklvanc dependencyDaniel Bermond
2023-11-14Add missing libharfbuzz. Add libopenvino. Refresh patches.Daniel Bermond
2023-10-28Temporarily disable docs to fix build. Update nvenc dependency.Daniel Bermond
HTML pages fails to build with texinfo 7.1. Temporarily disabling it until there is an upstream fix. nvenc now builds fine the the stable ffnvcodec-headers package. Let's give another chance for staying with the stable version.
2023-10-01Update ffnvcodec-headers dependency and svt patchesDaniel Bermond
ffmpeg git master currently requires ffnvcodec-headers git master. This is not the first time it happens, so maybe it's better to keep it for the long run to avoid breakages in building.
2023-06-20Add missing dependency for Intel QuickSync Video (QSV)Daniel Bermond
This was missing when switched libfmx to onevpl.
2023-03-16Fix svt-vp9 patch and update ffnvcodec-headers dependencyDaniel Bermond
The stable version of ffnvcodec-headers in the official repositories was updated and now gives support for av1_nvenc.
2023-03-07Update svt-hevc and svt-vp9 patchesDaniel Bermond
2023-02-25Bring back flite1. Temporarily disable pocketsphinx. Refresh patch.Daniel Bermond
A workaround was added to the flite1 package to fix its build. The newly released pocketsphinx 5.0.0 currently fails to build. Temporarily disable it until there is support by upstream ffmpeg.
2023-02-11Fix svt-vp9Daniel Bermond
libavcodec/libsvt_vp9.c: At top level: libavcodec/libsvt_vp9.c:692:46: error: ‘AV_CODEC_CAP_AUTO_THREADS’ undeclared here (not in a function); did you mean ‘FF_CODEC_CAP_AUTO_THREADS’? 692 | .p.capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS, | ^~~~~~~~~~~~~~~~~~~~~~~~~ | FF_CODEC_CAP_AUTO_THREADS References ---------- https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/10c9a0874cb361336237557391d306d26d43f137
2023-01-24Temporarily disable libflite due to flite1 build errorDaniel Bermond
flite1 currently [1]fails to build due to an issue with make 4.4. Temporarily disable it until a fix from flite 2.x can be backported to flite1. [1] https://github.com/festvox/flite/issues/86
2022-11-13Fix svt-hevc. Enable av1_nvenc with ffnvcodec-headers-git.Daniel Bermond
References ---------- https://git.videolan.org/?p=ffmpeg.git;a=commit;h=5c288a44ad16087c3d3a7563490cb634790e751f
2022-11-02Match latest upstream changesDaniel Bermond
2022-09-23Switch libjxl-git dependency to libjxlDaniel Bermond
Stable libjxl version can now be used, as libjxl 0.7.0 was released and it's on the official repositories.
2022-09-03Switch libmfx to libvpl. Cosmetic changes.Daniel Bermond
Intel Media SDK is now considered a legacy API by Intel. oneVPL is the new API that Intel recommendeds for use. It is backward compatible with the so called "legacy CPUs" (prior to TigerLake). Users of "legacy CPUs" will need intel-media-sdk as the oneVPL runtime, while users of newer CPUs will need onevpl-intel-gpu. References ---------- [1] https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/7158f1e64d9b76afea78537a35c465447df0cff8
2022-08-04Update and reorganize dependenciesDaniel Bermond
libopenmpt and openh264 are now on the official repositories. No need to depend on libopenmpt-svn anymore, since the repository one is obviously in good shape.
2022-06-12New upstream option: libplacebo. Bring back svt-hevc and svt-vp9.Daniel Bermond
Was added on ffmpeg 5.0[1]. svt-hevc and svt-vp9 were disabled[2][3] due to build error. Now upstream has matched support[4][5] with ffmpeg git master and we can enable them again. [1] https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/51e03409d74f3eb265cd4e562819daffb3645cb0 [2] https://aur.archlinux.org/cgit/aur.git/commit/?h=ffmpeg-full-git&id=4a7adcfdfe7d96d6256447b8acb8b8e35ea004df [3] https://aur.archlinux.org/cgit/aur.git/commit/?h=ffmpeg-full-git&id=8bbae1660744214130008129e7fb4911fed52f3e [4] https://github.com/OpenVisualCloud/SVT-HEVC/commit/b62f72e752243cee4104cfb41dc7ee409d3ac3e9 [5] https://github.com/OpenVisualCloud/SVT-VP9/commit/d9ef3cc13159143b9afc776c04f67cdfa6284046
2022-05-10Refresh chromium patchDaniel Bermond
Update the chromium patch[1] to match the latest ffmpeg git master changes[2]. AVStream does not have the 'AVStreamInternal* internal' field anymore, and AVStreamInternal struct does not exist anymore either. The equivalent is now FFStream, and it should now be accessed by 'FFStream* ffstream(AVStream*)'. References ---------- [1] https://chromium.googlesource.com/chromium/third_party/ffmpeg/+/95aab0fd83619408995720ce53d7a74790580220%5E%21/ [2] https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/40bdd8cc05d9c98a18cf2b1c2a00c8a5a7b38113
2022-04-25New upstream options: --enable-lcms2 and --enable-libjxlDaniel Bermond
libjxl support currently requires libjxl-git. References ---------- [1] https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/b9a25963f7232433c9370ac369fb668ac0d5cb53 [2] https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/458cc7e314e1a00017dd090db388db6659d1bb5f
2022-04-15Update flite dependencyDaniel Bermond
2022-03-22Temporarily disable svt-hevcDaniel Bermond
It currently fails to build with svt-hevc. Upstream patch needs to be updated to match ffmpeg git master.
2022-03-20Add fix for avisynthplus and temporarily disable svt-vp9Daniel Bermond
It currently fails to build with svt-vp9. Upstream patch needs to be updated to match ffmpeg git master.
2022-02-17Update vmaf dependencyDaniel Bermond
vmaf 2.x is now on the official repositories. References ---------- https://aur.archlinux.org/cgit/aur.git/commit/?h=ffmpeg-full-git&id=a7c134ebf0db48dbd4701299c98239a389905fe4
2022-01-29Add fix for building chromiumDaniel Bermond
2022-01-25Update vmaf dependencyDaniel Bermond
Upstream ffmpeg finally has added support for libvmaf 2.0. It now requires vmaf >= 2.0.0 to build. Repository vmaf package is still at version 1.5.3 because repository ffmpeg does not support vmaf 2.0 at the time of this writing. References ---------- https://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=3d29724c008d8f27fecf85757152789b074e8ef9
2022-01-19Update svt patchesDaniel Bermond
2021-06-19Update patchesDaniel Bermond
The cuda11 patch is not needed anymore, since it's fixed[1] by upstream. Update svt patches. Note: the svt-hevc docs patch currently fails to apply. References ---------- [1] https://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=c67f354be8610eefb9a2b195f6dc4d6da637b687
2021-04-29Remove libavresample. Disable libtensorflow. Update svt patches.Daniel Bermond
libavresample was removed by upstream[1]. Temporarily disable libtensorflow due to a build error caused by a recent upstream commit[2]. Also on this commit: - refresh cuda patch References ---------- [1] https://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=420cedd49745b284c35d97b936b71ff79b43bdf7 [2] https://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=f183d6555e714e00b41aec728feb8a731826cbdc
2021-04-17Fix svt-vp9 patchDaniel Bermond
2021-03-26New upstream option: --enable-librist. Re-enable glslang. Add lto.Daniel Bermond
Upstream now supports librist[1]. glslang support was temporarily disabled previously[2] and now it can be re-enabled since glslang on the official repositories was updated. Repository ffmpeg added LTO, so we add it here too. RFC about LTO on Arch Linux is being discussed and is on the way to be approved. Also on this commit: - update svt-vp9 patch - refresh cuda11 patch [1] https://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=4098f809d605fc540870883a9f91880e13ce1d6b [2] https://aur.archlinux.org/cgit/aur.git/commit/?h=ffmpeg-full-git&id=bd252d99089862a9c74d43a88837d243c52de38e [3] https://github.com/archlinux/svntogit-packages/commit/ceff68a52e22bfedf1f8e75228a608b7ddab3d15
2021-02-07depends: switch lensfun to lensfun-git to fix buildDaniel Bermond
It currently fails to build with the stable version of lensfun from the official repositories (stable release is from 2018). Requires lensfun-git. Also on this commit: update svt-hevc and svt-vp9 patches.
2021-01-09depends: really switch pulseaudio to libpuseDaniel Bermond
Missing on previous commit[1]. References ---------- [1] https://aur.archlinux.org/cgit/aur.git/commit/?h=ffmpeg-full-git&id=8095a6af514cae40f5f539a61aace56d7b20e2c8
2021-01-09depends: switch pulseaudio to libpulse. Refresh cuda11 patch.Daniel Bermond
2020-11-28Bring back rockchip-mpp support (upstream repo is now public again)Daniel Bermond
rockchip-mpp was disabled[1] a while ago because the upstream repository was temporarily set to private[2] (hidden from the public). Now the rockchip-mpp repositry is public[3] again and we can re-enable this feature. References ---------- [1] https://aur.archlinux.org/cgit/aur.git/commit/?h=ffmpeg-full-git&id=40ba9358a0bfbe5d9944072621eb9264e30dcce8 [2] https://github.com/HermanChen/mpp/issues/15#issuecomment-690804709 [3] https://github.com/rockchip-linux/mpp/
2020-10-08New upstream option: --enable-libuavs3dDaniel Bermond
At the time of writing, it does not work with the uavs3d stable version and requires the git master version (uavs3d-git). References ---------- [1] https://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=c952db9d68d31d1eca5ac770cc53bf35b885b087
2020-10-07Update svt-vp9 patchDaniel Bermond
Upstream svt-vp9 has now fixed their patch to support ffmpeg git master[1]. Also on this commit: refresh cuda11 patch. References ---------- [1] https://github.com/OpenVisualCloud/SVT-VP9/commit/7951c3cf6773c5e0ede00e4ce3e3ad2f7e090cfb
2020-10-04Bring back smbclient support (fixed by upstream)Daniel Bermond
smbclient support was previously removed[1] due to a build failure with samba 4.9. It looks like that the recently released samba 4.13 fixed[2][3] the issue and now ffmpeg is building fine with it. References ---------- [1] https://aur.archlinux.org/cgit/aur.git/commit/?h=ffmpeg-full-git&id=861ed49ab870c6fdfb4cad8a2443b49af78f32a5 [2] https://github.com/samba-team/samba/pull/212/ [3] https://github.com/samba-team/samba/commit/1114b02a72ce0c86a5301816560d270ec47f8be3